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