Changeset 887
- Timestamp:
- Dec 5, 2008, 5:45:56 PM (14 years ago)
- Location:
- plugins/base1/se.lu.thep.wenni/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base1/se.lu.thep.wenni/trunk/INSTALL
r858 r887 161 161 directory `www`. 162 162 [[br]] [[br]] 163 ''Some notes on configure options:'' The configure script accepts 163 ''Some notes on configure options:'' 164 [[br]] [[br]] 165 The configure script accepts 164 166 a few options that may be of interest. You can provide 165 167 `./configure` with BASE2 location information with … … 169 171 `--with-plugindir=DIR`. Files will be installed in 170 172 `<DIR>`. Default `DIR` is set to 171 `<BASEDIR>/plugins/se/lu/thep/wenni/`. You may use `with-gsl=DIR` 173 `<BASEDIR>/plugins/se/lu/thep/wenni/`. 174 [[br]] [[br]] 175 You may use `with-gsl=DIR` 172 176 to provide information on GSL location. The option `enable-debug` 173 177 turns on debug options on the compilation of binary `nni` 174 178 (e.g. enables assertions). 179 [[br]] [[br]] 180 The Java compiler sometimes fails to recognize the character 181 encoding of the source files. Use 182 `--with-javasourceencoding=coding` to set the encoding of source 183 files. You can find available encodings by doing `man javac`. 175 184 176 185 3. Now build using … … 264 273 `/path/to/wenni/BASE-plugindevkit/bogus-base` 265 274 [[br]] [[br]] 266 ''Some notes on configure options:'' The configure script accepts 275 ''Some notes on configure options:'' 276 [[br]] [[br]] 277 The configure script accepts 267 278 a few options that may be of interest. You generally must provide 268 279 `./configure` with BASE1 location information with … … 352 363 $ ./configure --enable-state=stand-alone 353 364 }}} 354 ''Some notes on configure options:'' Do `./configure --help` for 365 ''Some notes on configure options:'' 366 [[br]] [[br]] 367 Do `./configure --help` for 355 368 details in available options. You may use `with-gsl=DIR` to 356 369 provide information on GSL location. The option `enable-debug` -
plugins/base1/se.lu.thep.wenni/trunk/configure.ac
r885 r887 112 112 fi]) 113 113 AC_SUBST(PLUGINDIR) 114 115 AC_ARG_WITH(javasourceencoding, 116 [AS_HELP_STRING([--with-javasourceencoding=ARG], 117 [Use ARG as Java source file character encoding [default=UTF8]])], 118 [JAVASRCENCODING=$withval],[JAVASRCENCODING=UTF8]) 114 119 115 120 if (test x$state = xbase1); then … … 134 139 AC_PROG_JAVAC 135 140 AC_PROG_JAR 136 JAVACFLAGS="-encoding UTF8"141 JAVACFLAGS="-encoding $JAVASRCENCODING" 137 142 JAVACCLASSPATH="\$(builddir)" 138 143 if (test $DOWNLOADBASE2API = false); then
Note: See TracChangeset
for help on using the changeset viewer.