[297] | 1 | AC_INIT([ZOO Kernel], [1.3.0], [bugs@zoo-project.org]) |
---|
[1] | 2 | |
---|
| 3 | # Checks for programs. |
---|
| 4 | AC_PROG_YACC |
---|
| 5 | AC_PROG_CC |
---|
| 6 | AC_PROG_LEX |
---|
| 7 | AC_PROG_CXX |
---|
| 8 | AC_PROG_SED |
---|
| 9 | |
---|
| 10 | # Checks for libraries. |
---|
| 11 | AC_CHECK_LIB([cgic], [cgiMain]) |
---|
| 12 | AC_CHECK_LIB([curl], [curl_easy_init curl_easy_setopt curl_easy_cleanup curl_easy_perform]) |
---|
| 13 | AC_CHECK_LIB([dl], [dlopen dlsym dlerror dlclose]) |
---|
| 14 | AC_CHECK_LIB([fl], [main]) |
---|
| 15 | AC_CHECK_LIB([pthread], [main]) |
---|
| 16 | AC_CHECK_LIB([fcgi], [main]) |
---|
| 17 | AC_CHECK_LIB([ssl], [main]) |
---|
| 18 | |
---|
| 19 | # Checks for header files. |
---|
| 20 | AC_FUNC_ALLOCA |
---|
| 21 | AC_CHECK_HEADERS([fcntl.h inttypes.h libintl.h malloc.h stddef.h stdlib.h string.h unistd.h]) |
---|
| 22 | |
---|
| 23 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 24 | AC_HEADER_STDBOOL |
---|
| 25 | AC_TYPE_INT16_T |
---|
| 26 | AC_TYPE_INT32_T |
---|
| 27 | AC_TYPE_INT8_T |
---|
| 28 | AC_TYPE_PID_T |
---|
| 29 | AC_TYPE_SIZE_T |
---|
| 30 | AC_TYPE_UINT16_T |
---|
| 31 | AC_TYPE_UINT32_T |
---|
| 32 | AC_TYPE_UINT8_T |
---|
| 33 | |
---|
| 34 | # Checks for library functions. |
---|
| 35 | AC_FUNC_FORK |
---|
| 36 | AC_FUNC_MALLOC |
---|
| 37 | AC_FUNC_REALLOC |
---|
| 38 | AC_CHECK_FUNCS([dup2 getcwd memset setenv strdup strstr]) |
---|
| 39 | |
---|
| 40 | #============================================================================ |
---|
| 41 | # Detect if gdal is installed |
---|
| 42 | #============================================================================ |
---|
| 43 | |
---|
| 44 | AC_ARG_WITH([gdal-config], |
---|
| 45 | [AS_HELP_STRING([--with-gdal-config=FILE], [specify an alternative gdal-config file])], |
---|
| 46 | [GDAL_CONFIG="$withval"], [GDAL_CONFIG=""]) |
---|
| 47 | if test -z $GDAL_CONFIG; |
---|
| 48 | then |
---|
| 49 | AC_PATH_PROG([GDAL_CONFIG], [gdal-config]) |
---|
| 50 | if test -z $GDAL_CONFIG; |
---|
| 51 | then |
---|
| 52 | AC_MSG_ERROR([could not find gdal-config from libgdal within the current path. You may need to try re-running configure with a --with-gdal-config parameter.]) |
---|
| 53 | fi |
---|
| 54 | |
---|
| 55 | else |
---|
| 56 | if test -f $GDAL_CONFIG; then |
---|
| 57 | AC_MSG_RESULT([Using user-specified gdal-config file: $GDAL_CONFIG]) |
---|
| 58 | else |
---|
| 59 | AC_MSG_ERROR([the user-specified gdal-config file $GDAL_CONFIG does not exist]) |
---|
| 60 | fi |
---|
| 61 | fi |
---|
| 62 | |
---|
| 63 | GDAL_CFLAGS="`$GDAL_CONFIG --cflags`" |
---|
| 64 | GDAL_LIBS="`$GDAL_CONFIG --libs`" |
---|
| 65 | |
---|
| 66 | AC_SUBST([GDAL_CFLAGS]) |
---|
| 67 | AC_SUBST([GDAL_LIBS]) |
---|
| 68 | |
---|
| 69 | # =========================================================================== |
---|
| 70 | # Detect if libxml2 is installed |
---|
| 71 | # =========================================================================== |
---|
| 72 | |
---|
| 73 | AC_ARG_WITH([xml2config], |
---|
| 74 | [AS_HELP_STRING([--with-xml2config=FILE], [specify an alternative xml2-config file])], |
---|
| 75 | [XML2CONFIG="$withval"], [XML2CONFIG=""]) |
---|
| 76 | |
---|
| 77 | if test "x$XML2CONFIG" = "x"; then |
---|
| 78 | # XML2CONFIG was not specified, so search within the current path |
---|
| 79 | AC_PATH_PROG([XML2CONFIG], [xml2-config]) |
---|
| 80 | |
---|
| 81 | # If we couldn't find xml2-config, display a warning |
---|
| 82 | if test "x$XML2CONFIG" = "x"; then |
---|
| 83 | AC_MSG_ERROR([could not find xml2-config from libxml2 within the current path. You may need to try re-running configure with a --with-xml2config parameter.]) |
---|
| 84 | fi |
---|
| 85 | else |
---|
| 86 | # XML2CONFIG was specified; display a message to the user |
---|
| 87 | if test "x$XML2CONFIG" = "xyes"; then |
---|
| 88 | AC_MSG_ERROR([you must specify a parameter to --with-xml2config, e.g. --with-xml2config=/path/to/xml2-config]) |
---|
| 89 | else |
---|
| 90 | if test -f $XML2CONFIG; then |
---|
| 91 | AC_MSG_RESULT([Using user-specified xml2-config file: $XML2CONFIG]) |
---|
| 92 | else |
---|
| 93 | AC_MSG_ERROR([the user-specified xml2-config file $XML2CONFIG does not exist]) |
---|
| 94 | fi |
---|
| 95 | fi |
---|
| 96 | fi |
---|
| 97 | |
---|
| 98 | # Extract the linker and include flags |
---|
| 99 | XML2_LDFLAGS=`$XML2CONFIG --libs` |
---|
| 100 | XML2_CPPFLAGS=`$XML2CONFIG --cflags` |
---|
| 101 | |
---|
| 102 | # Check headers file |
---|
| 103 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
| 104 | CPPFLAGS="$XML2_CPPFLAGS" |
---|
| 105 | AC_CHECK_HEADERS([libxml/tree.h libxml/parser.h libxml/xpath.h libxml/xpathInternals.h], |
---|
| 106 | [], [AC_MSG_ERROR([could not find headers include related to libxml2])]) |
---|
| 107 | |
---|
| 108 | # Ensure we can link against libxml2 |
---|
| 109 | LIBS_SAVE="$LIBS" |
---|
| 110 | LIBS="$XML2_LDFLAGS" |
---|
| 111 | AC_CHECK_LIB([xml2], [xmlInitParser], [], [AC_MSG_ERROR([could not find libxml2])], []) |
---|
| 112 | |
---|
| 113 | AC_SUBST([XML2_CPPFLAGS]) |
---|
| 114 | AC_SUBST([XML2_LDFLAGS]) |
---|
| 115 | |
---|
[297] | 116 | #============================================================================ |
---|
| 117 | # Detect if mapserver is installed |
---|
| 118 | #============================================================================ |
---|
| 119 | |
---|
| 120 | AC_ARG_WITH([mapserver], |
---|
| 121 | [AS_HELP_STRING([--with-mapserver=PATH], [specify the path for MapServer compiled source tree])], |
---|
| 122 | [MS_SRC_PATH="$withval"], [MS_SRC_PATH=""]) |
---|
[305] | 123 | |
---|
[297] | 124 | if test -z $MS_SRC_PATH; |
---|
| 125 | then |
---|
[305] | 126 | MS_CPPFLAGS="" |
---|
| 127 | MS_LDFLAGS="" |
---|
[297] | 128 | else |
---|
| 129 | if test "x$MS_SRC_PATH" = "xmacos"; |
---|
| 130 | then |
---|
| 131 | MS_LDFLAGS="/Library/Frameworks/MapServer.framework//Versions/6.0/MapServer -lintl" |
---|
| 132 | MS_CPPFLAGS="-DUSE_MS `/Library/Frameworks/MapServer.framework/Programs/mapserver-config --includes` -I/Library/Frameworks/MapServer.framework/Versions/Current/Headers/ -I../mapserver " |
---|
| 133 | AC_MSG_WARN([Please make sure that ../mapserver exists and contains MapServer source tree]) |
---|
| 134 | AC_MSG_RESULT([Using MacOS X Framework for MapServer]) |
---|
| 135 | else |
---|
| 136 | if test -d $MS_SRC_PATH; then |
---|
| 137 | MS_LDFLAGS="-L$MS_SRC_PATH -lmapserver `$MS_SRC_PATH/mapserver-config --libs`" |
---|
| 138 | MS_CPPFLAGS="-DUSE_MS `$MS_SRC_PATH/mapserver-config --includes` `$MS_SRC_PATH/mapserver-config --cflags` -I$MS_SRC_PATH " |
---|
| 139 | |
---|
| 140 | AC_MSG_RESULT([Using user-specified MapServer src path: $MS_SRC_PATH]) |
---|
| 141 | else |
---|
| 142 | AC_MSG_ERROR([the user-specified mapserver-config file $MS_SRC_PATH does not exist]) |
---|
| 143 | fi |
---|
| 144 | fi |
---|
| 145 | MS_FILE="service_internal_ms.o" |
---|
| 146 | fi |
---|
| 147 | |
---|
| 148 | MS_CFLAGS="$MS_CPPFLAGS" |
---|
| 149 | MS_LIBS="$MS_LDFLAGS" |
---|
| 150 | |
---|
| 151 | AC_SUBST([MS_CFLAGS]) |
---|
| 152 | AC_SUBST([MS_LIBS]) |
---|
| 153 | AC_SUBST([MS_FILE]) |
---|
| 154 | |
---|
[1] | 155 | # =========================================================================== |
---|
| 156 | # Detect if python is installed |
---|
| 157 | # =========================================================================== |
---|
| 158 | |
---|
| 159 | AC_ARG_WITH([python], |
---|
[208] | 160 | [AS_HELP_STRING([--with-python=PATH], [To enable python support or specify an alternative directory for python installation, disabled by default])], |
---|
[29] | 161 | [PYTHON_PATH="$withval"; PYTHON_ENABLED="-DUSE_PYTHON"], [PYTHON_ENABLED=""]) |
---|
[1] | 162 | |
---|
[285] | 163 | AC_ARG_WITH([pyvers], |
---|
| 164 | [AS_HELP_STRING([--with-pyvers=NUM], [To use a specific python version])], |
---|
[284] | 165 | [PYTHON_VERS="$withval"], [PYTHON_VERS=""]) |
---|
[1] | 166 | |
---|
[284] | 167 | |
---|
[29] | 168 | if test -z "$PYTHON_ENABLED" |
---|
| 169 | then |
---|
| 170 | PYTHON_FILE="" |
---|
[1] | 171 | else |
---|
[284] | 172 | PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config" |
---|
[29] | 173 | PYTHON_FILE="service_internal_python.o" |
---|
| 174 | if test "$PYTHON_PATH" = "yes" |
---|
| 175 | then |
---|
| 176 | # PHP was not specified, so search within the current path |
---|
[284] | 177 | AC_PATH_PROG([PYTHONCONFIG], [python${PYTHON_VERS}-config]) |
---|
[1] | 178 | else |
---|
[284] | 179 | PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config" |
---|
[1] | 180 | fi |
---|
| 181 | |
---|
[29] | 182 | # Extract the linker and include flags |
---|
| 183 | PYTHON_LDFLAGS=`$PYTHONCONFIG --ldflags` |
---|
| 184 | PYTHON_CPPFLAGS=`$PYTHONCONFIG --cflags` |
---|
[1] | 185 | |
---|
[29] | 186 | # Check headers file |
---|
| 187 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
| 188 | CPPFLAGS="$PYTHON_CPPFLAGS" |
---|
| 189 | AC_CHECK_HEADERS([Python.h], |
---|
[1] | 190 | [], [AC_MSG_ERROR([could not find headers include related to libpython])]) |
---|
| 191 | |
---|
[29] | 192 | # Ensure we can link against libphp |
---|
| 193 | LIBS_SAVE="$LIBS" |
---|
| 194 | LIBS="$PYTHON_LDFLAGS" |
---|
| 195 | PY_LIB=`$PYTHONCONFIG --libs | sed -e 's/^.*\(python2\..\)$/\1/'` |
---|
| 196 | AC_CHECK_LIB([$PY_LIB], [PyObject_CallObject], [], [AC_MSG_ERROR([could not find libpython])], []) |
---|
| 197 | AC_SUBST([PYTHON_CPPFLAGS]) |
---|
| 198 | AC_SUBST([PYTHON_LDFLAGS]) |
---|
| 199 | fi |
---|
[1] | 200 | |
---|
[29] | 201 | AC_SUBST([PYTHON_ENABLED]) |
---|
| 202 | AC_SUBST([PYTHON_FILE]) |
---|
[1] | 203 | |
---|
| 204 | # =========================================================================== |
---|
| 205 | # Detect if php is installed |
---|
| 206 | # =========================================================================== |
---|
| 207 | |
---|
| 208 | AC_ARG_WITH([php], |
---|
[208] | 209 | [AS_HELP_STRING([--with-php=PATH], [To enable php support or specify an alternative directory for php installation, disabled by default])], |
---|
[28] | 210 | [PHP_PATH="$withval"; PHP_ENABLED="-DUSE_PHP"], [PHP_ENABLED=""]) |
---|
| 211 | |
---|
| 212 | |
---|
| 213 | if test -z "$PHP_ENABLED" |
---|
| 214 | then |
---|
| 215 | PHP_FILE="" |
---|
| 216 | else |
---|
[1] | 217 | PHPCONFIG="$PHP_PATH/bin/php-config" |
---|
| 218 | PHP_FILE="service_internal_php.o" |
---|
[28] | 219 | if test "$PHP_PATH" = "yes" |
---|
[1] | 220 | then |
---|
[28] | 221 | # PHP was not specified, so search within the current path |
---|
| 222 | AC_PATH_PROG([PHPCONFIG], [php-config]) |
---|
[1] | 223 | else |
---|
[28] | 224 | PHPCONFIG="$PHP_PATH/bin/php-config" |
---|
[1] | 225 | fi |
---|
[28] | 226 | |
---|
[1] | 227 | # Extract the linker and include flags |
---|
| 228 | PHP_LDFLAGS="-L/`$PHPCONFIG --prefix`/lib -lphp5" |
---|
| 229 | PHP_CPPFLAGS=`$PHPCONFIG --includes` |
---|
| 230 | |
---|
| 231 | # Check headers file |
---|
| 232 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
| 233 | CPPFLAGS="$PHP_CPPFLAGS" |
---|
| 234 | AC_CHECK_HEADERS([sapi/embed/php_embed.h], |
---|
| 235 | [], [AC_MSG_ERROR([could not find headers include related to libphp])]) |
---|
| 236 | |
---|
| 237 | # Ensure we can link against libphp |
---|
| 238 | LIBS_SAVE="$LIBS" |
---|
| 239 | LIBS="$PHP_LDFLAGS" |
---|
| 240 | # Shouldn't we get php here rather than php5 :) ?? |
---|
| 241 | AC_CHECK_LIB([php5], [call_user_function], [], [AC_MSG_ERROR([could not find libphp])], []) |
---|
| 242 | AC_SUBST([PHP_CPPFLAGS]) |
---|
| 243 | AC_SUBST([PHP_LDFLAGS]) |
---|
| 244 | fi |
---|
| 245 | |
---|
| 246 | AC_SUBST([PHP_ENABLED]) |
---|
| 247 | AC_SUBST([PHP_FILE]) |
---|
| 248 | |
---|
| 249 | # =========================================================================== |
---|
[15] | 250 | # Detect if perl is installed |
---|
| 251 | # =========================================================================== |
---|
| 252 | |
---|
[28] | 253 | AC_ARG_WITH([perl], |
---|
[208] | 254 | [AS_HELP_STRING([--with-perl=PATH], [To enable perl support or specify an alternative directory for perl installation, disabled by default])], |
---|
[28] | 255 | [PERL_PATH="$withval"; PERL_ENABLED="-DUSE_PERL"], [PERL_ENABLED=""]) |
---|
[15] | 256 | |
---|
| 257 | |
---|
[28] | 258 | if test -z "$PERL_ENABLED" |
---|
| 259 | then |
---|
| 260 | PERL_FILE="" |
---|
| 261 | else |
---|
[112] | 262 | PERL_FILE="service_internal_perl.o" |
---|
[28] | 263 | if test "$PERL_PATH" = "yes" |
---|
[15] | 264 | then |
---|
[112] | 265 | # Perl was not specified, so search within the current path |
---|
[15] | 266 | AC_PATH_PROG([PERLCONFIG], [perl]) |
---|
| 267 | else |
---|
| 268 | PERLCONFIG="$PERL_PATH/bin/perl" |
---|
| 269 | fi |
---|
| 270 | |
---|
| 271 | # Extract the linker and include flags |
---|
| 272 | PERL_LDFLAGS=`$PERLCONFIG -MExtUtils::Embed -e ldopts` |
---|
| 273 | PERL_CPPFLAGS=`$PERLCONFIG -MExtUtils::Embed -e ccopts` |
---|
| 274 | |
---|
| 275 | # Check headers file |
---|
| 276 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
| 277 | CPPFLAGS="$PERL_CPPFLAGS" |
---|
| 278 | AC_CHECK_HEADERS([EXTERN.h], |
---|
| 279 | [], [AC_MSG_ERROR([could not find headers include related to libperl])]) |
---|
| 280 | |
---|
| 281 | AC_SUBST([PERL_CPPFLAGS]) |
---|
| 282 | AC_SUBST([PERL_LDFLAGS]) |
---|
| 283 | fi |
---|
| 284 | |
---|
| 285 | AC_SUBST([PERL_ENABLED]) |
---|
| 286 | AC_SUBST([PERL_FILE]) |
---|
| 287 | |
---|
| 288 | # =========================================================================== |
---|
[1] | 289 | # Detect if java is installed |
---|
| 290 | # =========================================================================== |
---|
| 291 | |
---|
| 292 | AC_ARG_WITH([java], |
---|
[208] | 293 | [AS_HELP_STRING([--with-java=PATH], [To enable java support, specify a JDK_HOME, disabled by default])], |
---|
[46] | 294 | [JDKHOME="$withval"; JAVA_ENABLED="-DUSE_JAVA"], [JAVA_ENABLED=""]) |
---|
[1] | 295 | |
---|
[46] | 296 | if test -z "$JAVA_ENABLED" |
---|
[1] | 297 | then |
---|
[46] | 298 | JAVA_FILE="" |
---|
| 299 | else |
---|
[1] | 300 | JAVA_FILE="service_internal_java.o" |
---|
| 301 | if test "x$JDKHOME" = "x"; |
---|
| 302 | then |
---|
[46] | 303 | AC_MSG_ERROR([could not find java installation path within the current path. You may need to try re-running configure with a --with-java parameter.]) |
---|
| 304 | fi # JAVA was specified; display a message to the user |
---|
| 305 | if test "x$JDKHOME" = "xyes"; |
---|
| 306 | then |
---|
| 307 | AC_MSG_ERROR([you must specify a parameter to --with-java, e.g. --with-java=/path/to/java]) |
---|
[1] | 308 | fi |
---|
[77] | 309 | |
---|
[1] | 310 | # Extract the linker and include flags |
---|
[77] | 311 | if test "x$JDKHOME" = "xmacos"; |
---|
[1] | 312 | then |
---|
[77] | 313 | JAVA_LDFLAGS="-framework JavaVM" |
---|
| 314 | JAVA_CPPFLAGS="-I/Developer//SDKs/MacOSX10.6.sdk/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/" |
---|
[1] | 315 | else |
---|
[77] | 316 | if test -d "$JDKHOME/jre/lib/i386"; |
---|
| 317 | then |
---|
| 318 | JAVA_LDFLAGS="-L$JDKHOME/jre/lib/i386/client/ -ljvm -lpthread" |
---|
| 319 | JAVA_CPPFLAGS="-I$JDKHOME/include -I$JDKHOME/include/linux" |
---|
| 320 | else |
---|
| 321 | JAVA_LDFLAGS="-L$JDKHOME/jre/lib/amd64/client/ -ljvm -lpthread" |
---|
| 322 | JAVA_CPPFLAGS="-I$JDKHOME/include -I$JDKHOME/include/linux" |
---|
| 323 | fi |
---|
[1] | 324 | fi |
---|
| 325 | |
---|
| 326 | # Check headers file (second time we check that in fact) |
---|
| 327 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
| 328 | CPPFLAGS="$JAVA_CPPFLAGS" |
---|
| 329 | AC_CHECK_HEADERS([jni.h], |
---|
| 330 | [], [AC_MSG_ERROR([could not find headers include related to libjava])]) |
---|
| 331 | |
---|
| 332 | # Ensure we can link against libjava |
---|
| 333 | LIBS_SAVE="$LIBS" |
---|
| 334 | LIBS="$JAVA_LDFLAGS" |
---|
[77] | 335 | if test "x$JDKHOME" != "xmacos"; |
---|
| 336 | then |
---|
| 337 | AC_CHECK_LIB([jvm], [JNI_CreateJavaVM], [], [AC_MSG_ERROR([could not find libjava])], []) |
---|
| 338 | fi |
---|
[1] | 339 | |
---|
| 340 | AC_SUBST([JAVA_CPPFLAGS]) |
---|
| 341 | AC_SUBST([JAVA_LDFLAGS]) |
---|
| 342 | fi |
---|
| 343 | |
---|
| 344 | AC_SUBST([JAVA_ENABLED]) |
---|
| 345 | AC_SUBST([JAVA_FILE]) |
---|
| 346 | |
---|
| 347 | # =========================================================================== |
---|
| 348 | # Detect if spidermonkey is installed |
---|
| 349 | # =========================================================================== |
---|
| 350 | |
---|
| 351 | AC_ARG_WITH([js], |
---|
[208] | 352 | [AS_HELP_STRING([--with-js=PATH], [specify --with-js=path-to-js to enable js support, specify --with-js on linux debian like, js support is disabled by default ])], |
---|
[46] | 353 | [JSHOME="$withval";JS_ENABLED="-DUSE_JS"], [JS_ENABLED=""]) |
---|
[3] | 354 | |
---|
[46] | 355 | if test -z "$JS_ENABLED" |
---|
[1] | 356 | then |
---|
[46] | 357 | JS_FILE="" |
---|
| 358 | else |
---|
[274] | 359 | JS_FILE="service_internal_js.o" |
---|
[46] | 360 | if test "$JSHOME" = "yes" |
---|
| 361 | then |
---|
[1] | 362 | |
---|
[46] | 363 | #on teste si on est sous debian like |
---|
| 364 | if test -f "/usr/bin/dpkg" |
---|
[3] | 365 | then |
---|
[274] | 366 | if test -n "`dpkg -l | grep libmozjs185-dev`" |
---|
[46] | 367 | then |
---|
[274] | 368 | JS_CPPFLAGS="-I/usr/include/js/" |
---|
| 369 | JS_LDFLAGS="-L/usr/lib -lmozjs185 -lm" |
---|
| 370 | JS_LIB="mozjs185" |
---|
[89] | 371 | else |
---|
[288] | 372 | XUL_VERSION="`dpkg -l | grep xulrunner | grep dev | head -1| awk '{print $3;}' | cut -d'+' -f1`" |
---|
[89] | 373 | if test -n "$XUL_VERSION" |
---|
| 374 | then |
---|
| 375 | JS_CPPFLAGS="-I/usr/include/xulrunner-$XUL_VERSION" |
---|
| 376 | JS_LDFLAGS="-L/usr/lib/xulrunner-$XUL_VERSION -lmozjs -lm" |
---|
| 377 | JS_LIB="mozjs" |
---|
| 378 | else |
---|
[274] | 379 | AC_MSG_ERROR([You must install libmozjs185-dev or xulrunner-dev ]) |
---|
[89] | 380 | fi |
---|
[46] | 381 | fi |
---|
[3] | 382 | else |
---|
[274] | 383 | AC_MSG_ERROR([You must specify your custom install of libmozjs185]) |
---|
[3] | 384 | fi |
---|
| 385 | else |
---|
[274] | 386 | JS_CPPFLAGS="-I$JSHOME/include/js/" |
---|
| 387 | JS_LDFLAGS="-L$JSHOME/lib -lmozjs185 -lm" |
---|
| 388 | JS_LIB="mozjs185" |
---|
[46] | 389 | |
---|
| 390 | fi |
---|
[1] | 391 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
[3] | 392 | CPPFLAGS="$JS_CPPFLAGS" |
---|
[46] | 393 | |
---|
| 394 | #AC_CHECK_HEADERS([jsapi.h], |
---|
[3] | 395 | # [], [AC_MSG_ERROR([could not find headers include related to libjs])]) |
---|
[1] | 396 | |
---|
[46] | 397 | |
---|
| 398 | LIBS_SAVE="$LIBS" |
---|
[3] | 399 | LIBS="$JS_LDFLAGS" |
---|
[1] | 400 | |
---|
[288] | 401 | AC_CHECK_LIB([$JS_LIB], [JS_CompileFile,JS_CallFunctionName], [], [AC_MSG_ERROR([could not find $JS_LIB])], []) |
---|
[46] | 402 | |
---|
[3] | 403 | AC_SUBST([JS_CPPFLAGS]) |
---|
| 404 | AC_SUBST([JS_LDFLAGS]) |
---|
[46] | 405 | fi |
---|
[3] | 406 | |
---|
[1] | 407 | AC_SUBST([JS_ENABLED]) |
---|
| 408 | AC_SUBST([JS_FILE]) |
---|
| 409 | |
---|
| 410 | AC_CONFIG_FILES([Makefile]) |
---|
[284] | 411 | AC_CONFIG_FILES([ZOOMakefile.opts]) |
---|
[1] | 412 | AC_OUTPUT |
---|