1 | AC_INIT([ZOO Kernel], [1.2.0], [bugs@zoo-project.org]) |
---|
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 | |
---|
116 | # =========================================================================== |
---|
117 | # Detect if python is installed |
---|
118 | # =========================================================================== |
---|
119 | |
---|
120 | AC_ARG_WITH([python], |
---|
121 | [AS_HELP_STRING([--with-python=PATH], [To enable python support or specify an alternative directory for python installation, disabled by default])], |
---|
122 | [PYTHON_PATH="$withval"; PYTHON_ENABLED="-DUSE_PYTHON"], [PYTHON_ENABLED=""]) |
---|
123 | |
---|
124 | AC_ARG_WITH([pyvers], |
---|
125 | [AS_HELP_STRING([--with-pyvers=NUM], [To use a specific python version])], |
---|
126 | [PYTHON_VERS="$withval"], [PYTHON_VERS=""]) |
---|
127 | |
---|
128 | |
---|
129 | if test -z "$PYTHON_ENABLED" |
---|
130 | then |
---|
131 | PYTHON_FILE="" |
---|
132 | else |
---|
133 | PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config" |
---|
134 | PYTHON_FILE="service_internal_python.o" |
---|
135 | if test "$PYTHON_PATH" = "yes" |
---|
136 | then |
---|
137 | # PHP was not specified, so search within the current path |
---|
138 | AC_PATH_PROG([PYTHONCONFIG], [python${PYTHON_VERS}-config]) |
---|
139 | else |
---|
140 | PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config" |
---|
141 | fi |
---|
142 | |
---|
143 | # Extract the linker and include flags |
---|
144 | PYTHON_LDFLAGS=`$PYTHONCONFIG --ldflags` |
---|
145 | PYTHON_CPPFLAGS=`$PYTHONCONFIG --cflags` |
---|
146 | |
---|
147 | # Check headers file |
---|
148 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
149 | CPPFLAGS="$PYTHON_CPPFLAGS" |
---|
150 | AC_CHECK_HEADERS([Python.h], |
---|
151 | [], [AC_MSG_ERROR([could not find headers include related to libpython])]) |
---|
152 | |
---|
153 | # Ensure we can link against libphp |
---|
154 | LIBS_SAVE="$LIBS" |
---|
155 | LIBS="$PYTHON_LDFLAGS" |
---|
156 | PY_LIB=`$PYTHONCONFIG --libs | sed -e 's/^.*\(python2\..\)$/\1/'` |
---|
157 | AC_CHECK_LIB([$PY_LIB], [PyObject_CallObject], [], [AC_MSG_ERROR([could not find libpython])], []) |
---|
158 | AC_SUBST([PYTHON_CPPFLAGS]) |
---|
159 | AC_SUBST([PYTHON_LDFLAGS]) |
---|
160 | fi |
---|
161 | |
---|
162 | AC_SUBST([PYTHON_ENABLED]) |
---|
163 | AC_SUBST([PYTHON_FILE]) |
---|
164 | |
---|
165 | # =========================================================================== |
---|
166 | # Detect if php is installed |
---|
167 | # =========================================================================== |
---|
168 | |
---|
169 | AC_ARG_WITH([php], |
---|
170 | [AS_HELP_STRING([--with-php=PATH], [To enable php support or specify an alternative directory for php installation, disabled by default])], |
---|
171 | [PHP_PATH="$withval"; PHP_ENABLED="-DUSE_PHP"], [PHP_ENABLED=""]) |
---|
172 | |
---|
173 | |
---|
174 | if test -z "$PHP_ENABLED" |
---|
175 | then |
---|
176 | PHP_FILE="" |
---|
177 | else |
---|
178 | PHPCONFIG="$PHP_PATH/bin/php-config" |
---|
179 | PHP_FILE="service_internal_php.o" |
---|
180 | if test "$PHP_PATH" = "yes" |
---|
181 | then |
---|
182 | # PHP was not specified, so search within the current path |
---|
183 | AC_PATH_PROG([PHPCONFIG], [php-config]) |
---|
184 | else |
---|
185 | PHPCONFIG="$PHP_PATH/bin/php-config" |
---|
186 | fi |
---|
187 | |
---|
188 | # Extract the linker and include flags |
---|
189 | PHP_LDFLAGS="-L/`$PHPCONFIG --prefix`/lib -lphp5" |
---|
190 | PHP_CPPFLAGS=`$PHPCONFIG --includes` |
---|
191 | |
---|
192 | # Check headers file |
---|
193 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
194 | CPPFLAGS="$PHP_CPPFLAGS" |
---|
195 | AC_CHECK_HEADERS([sapi/embed/php_embed.h], |
---|
196 | [], [AC_MSG_ERROR([could not find headers include related to libphp])]) |
---|
197 | |
---|
198 | # Ensure we can link against libphp |
---|
199 | LIBS_SAVE="$LIBS" |
---|
200 | LIBS="$PHP_LDFLAGS" |
---|
201 | # Shouldn't we get php here rather than php5 :) ?? |
---|
202 | AC_CHECK_LIB([php5], [call_user_function], [], [AC_MSG_ERROR([could not find libphp])], []) |
---|
203 | AC_SUBST([PHP_CPPFLAGS]) |
---|
204 | AC_SUBST([PHP_LDFLAGS]) |
---|
205 | fi |
---|
206 | |
---|
207 | AC_SUBST([PHP_ENABLED]) |
---|
208 | AC_SUBST([PHP_FILE]) |
---|
209 | |
---|
210 | # =========================================================================== |
---|
211 | # Detect if perl is installed |
---|
212 | # =========================================================================== |
---|
213 | |
---|
214 | AC_ARG_WITH([perl], |
---|
215 | [AS_HELP_STRING([--with-perl=PATH], [To enable perl support or specify an alternative directory for perl installation, disabled by default])], |
---|
216 | [PERL_PATH="$withval"; PERL_ENABLED="-DUSE_PERL"], [PERL_ENABLED=""]) |
---|
217 | |
---|
218 | |
---|
219 | if test -z "$PERL_ENABLED" |
---|
220 | then |
---|
221 | PERL_FILE="" |
---|
222 | else |
---|
223 | PERL_FILE="service_internal_perl.o" |
---|
224 | if test "$PERL_PATH" = "yes" |
---|
225 | then |
---|
226 | # Perl was not specified, so search within the current path |
---|
227 | AC_PATH_PROG([PERLCONFIG], [perl]) |
---|
228 | else |
---|
229 | PERLCONFIG="$PERL_PATH/bin/perl" |
---|
230 | fi |
---|
231 | |
---|
232 | # Extract the linker and include flags |
---|
233 | PERL_LDFLAGS=`$PERLCONFIG -MExtUtils::Embed -e ldopts` |
---|
234 | PERL_CPPFLAGS=`$PERLCONFIG -MExtUtils::Embed -e ccopts` |
---|
235 | |
---|
236 | # Check headers file |
---|
237 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
238 | CPPFLAGS="$PERL_CPPFLAGS" |
---|
239 | AC_CHECK_HEADERS([EXTERN.h], |
---|
240 | [], [AC_MSG_ERROR([could not find headers include related to libperl])]) |
---|
241 | |
---|
242 | AC_SUBST([PERL_CPPFLAGS]) |
---|
243 | AC_SUBST([PERL_LDFLAGS]) |
---|
244 | fi |
---|
245 | |
---|
246 | AC_SUBST([PERL_ENABLED]) |
---|
247 | AC_SUBST([PERL_FILE]) |
---|
248 | |
---|
249 | # =========================================================================== |
---|
250 | # Detect if java is installed |
---|
251 | # =========================================================================== |
---|
252 | |
---|
253 | AC_ARG_WITH([java], |
---|
254 | [AS_HELP_STRING([--with-java=PATH], [To enable java support, specify a JDK_HOME, disabled by default])], |
---|
255 | [JDKHOME="$withval"; JAVA_ENABLED="-DUSE_JAVA"], [JAVA_ENABLED=""]) |
---|
256 | |
---|
257 | if test -z "$JAVA_ENABLED" |
---|
258 | then |
---|
259 | JAVA_FILE="" |
---|
260 | else |
---|
261 | JAVA_FILE="service_internal_java.o" |
---|
262 | if test "x$JDKHOME" = "x"; |
---|
263 | then |
---|
264 | 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.]) |
---|
265 | fi # JAVA was specified; display a message to the user |
---|
266 | if test "x$JDKHOME" = "xyes"; |
---|
267 | then |
---|
268 | AC_MSG_ERROR([you must specify a parameter to --with-java, e.g. --with-java=/path/to/java]) |
---|
269 | fi |
---|
270 | |
---|
271 | # Extract the linker and include flags |
---|
272 | if test "x$JDKHOME" = "xmacos"; |
---|
273 | then |
---|
274 | JAVA_LDFLAGS="-framework JavaVM" |
---|
275 | JAVA_CPPFLAGS="-I/Developer//SDKs/MacOSX10.6.sdk/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/" |
---|
276 | else |
---|
277 | if test -d "$JDKHOME/jre/lib/i386"; |
---|
278 | then |
---|
279 | JAVA_LDFLAGS="-L$JDKHOME/jre/lib/i386/client/ -ljvm -lpthread" |
---|
280 | JAVA_CPPFLAGS="-I$JDKHOME/include -I$JDKHOME/include/linux" |
---|
281 | else |
---|
282 | JAVA_LDFLAGS="-L$JDKHOME/jre/lib/amd64/client/ -ljvm -lpthread" |
---|
283 | JAVA_CPPFLAGS="-I$JDKHOME/include -I$JDKHOME/include/linux" |
---|
284 | fi |
---|
285 | fi |
---|
286 | |
---|
287 | # Check headers file (second time we check that in fact) |
---|
288 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
289 | CPPFLAGS="$JAVA_CPPFLAGS" |
---|
290 | AC_CHECK_HEADERS([jni.h], |
---|
291 | [], [AC_MSG_ERROR([could not find headers include related to libjava])]) |
---|
292 | |
---|
293 | # Ensure we can link against libjava |
---|
294 | LIBS_SAVE="$LIBS" |
---|
295 | LIBS="$JAVA_LDFLAGS" |
---|
296 | if test "x$JDKHOME" != "xmacos"; |
---|
297 | then |
---|
298 | AC_CHECK_LIB([jvm], [JNI_CreateJavaVM], [], [AC_MSG_ERROR([could not find libjava])], []) |
---|
299 | fi |
---|
300 | |
---|
301 | AC_SUBST([JAVA_CPPFLAGS]) |
---|
302 | AC_SUBST([JAVA_LDFLAGS]) |
---|
303 | fi |
---|
304 | |
---|
305 | AC_SUBST([JAVA_ENABLED]) |
---|
306 | AC_SUBST([JAVA_FILE]) |
---|
307 | |
---|
308 | # =========================================================================== |
---|
309 | # Detect if spidermonkey is installed |
---|
310 | # =========================================================================== |
---|
311 | |
---|
312 | AC_ARG_WITH([js], |
---|
313 | [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 ])], |
---|
314 | [JSHOME="$withval";JS_ENABLED="-DUSE_JS"], [JS_ENABLED=""]) |
---|
315 | |
---|
316 | if test -z "$JS_ENABLED" |
---|
317 | then |
---|
318 | JS_FILE="" |
---|
319 | else |
---|
320 | JS_FILE="service_internal_js.o" |
---|
321 | if test "$JSHOME" = "yes" |
---|
322 | then |
---|
323 | |
---|
324 | #on teste si on est sous debian like |
---|
325 | if test -f "/usr/bin/dpkg" |
---|
326 | then |
---|
327 | if test -n "`dpkg -l | grep libmozjs185-dev`" |
---|
328 | then |
---|
329 | JS_CPPFLAGS="-I/usr/include/js/" |
---|
330 | JS_LDFLAGS="-L/usr/lib -lmozjs185 -lm" |
---|
331 | JS_LIB="mozjs185" |
---|
332 | else |
---|
333 | XUL_VERSION="`dpkg -l | grep xulrunner | grep dev | head -1| awk '{print $3;}' | cut -d'+' -f1`" |
---|
334 | if test -n "$XUL_VERSION" |
---|
335 | then |
---|
336 | JS_CPPFLAGS="-I/usr/include/xulrunner-$XUL_VERSION" |
---|
337 | JS_LDFLAGS="-L/usr/lib/xulrunner-$XUL_VERSION -lmozjs -lm" |
---|
338 | JS_LIB="mozjs" |
---|
339 | else |
---|
340 | AC_MSG_ERROR([You must install libmozjs185-dev or xulrunner-dev ]) |
---|
341 | fi |
---|
342 | fi |
---|
343 | else |
---|
344 | AC_MSG_ERROR([You must specify your custom install of libmozjs185]) |
---|
345 | fi |
---|
346 | else |
---|
347 | JS_CPPFLAGS="-I$JSHOME/include/js/" |
---|
348 | JS_LDFLAGS="-L$JSHOME/lib -lmozjs185 -lm" |
---|
349 | JS_LIB="mozjs185" |
---|
350 | |
---|
351 | fi |
---|
352 | CPPFLAGS_SAVE="$CPPFLAGS" |
---|
353 | CPPFLAGS="$JS_CPPFLAGS" |
---|
354 | |
---|
355 | #AC_CHECK_HEADERS([jsapi.h], |
---|
356 | # [], [AC_MSG_ERROR([could not find headers include related to libjs])]) |
---|
357 | |
---|
358 | |
---|
359 | LIBS_SAVE="$LIBS" |
---|
360 | LIBS="$JS_LDFLAGS" |
---|
361 | |
---|
362 | AC_CHECK_LIB([$JS_LIB], [JS_CompileFile,JS_CallFunctionName], [], [AC_MSG_ERROR([could not find $JS_LIB])], []) |
---|
363 | |
---|
364 | AC_SUBST([JS_CPPFLAGS]) |
---|
365 | AC_SUBST([JS_LDFLAGS]) |
---|
366 | fi |
---|
367 | |
---|
368 | AC_SUBST([JS_ENABLED]) |
---|
369 | AC_SUBST([JS_FILE]) |
---|
370 | |
---|
371 | AC_CONFIG_FILES([Makefile]) |
---|
372 | AC_CONFIG_FILES([ZOOMakefile.opts]) |
---|
373 | AC_OUTPUT |
---|