source: trunk/zoo-project/zoo-kernel/configure.ac @ 351

Last change on this file since 351 was 305, checked in by david, 13 years ago

bug fix : http://zoo-project.org/trac/ticket/60

File size: 13.1 KB
Line 
1AC_INIT([ZOO Kernel], [1.3.0], [bugs@zoo-project.org])
2
3# Checks for programs.
4AC_PROG_YACC
5AC_PROG_CC
6AC_PROG_LEX
7AC_PROG_CXX
8AC_PROG_SED
9
10# Checks for libraries.
11AC_CHECK_LIB([cgic], [cgiMain])
12AC_CHECK_LIB([curl], [curl_easy_init curl_easy_setopt curl_easy_cleanup curl_easy_perform])
13AC_CHECK_LIB([dl], [dlopen dlsym dlerror dlclose])
14AC_CHECK_LIB([fl], [main])
15AC_CHECK_LIB([pthread], [main])
16AC_CHECK_LIB([fcgi], [main])
17AC_CHECK_LIB([ssl], [main])
18
19# Checks for header files.
20AC_FUNC_ALLOCA
21AC_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.
24AC_HEADER_STDBOOL
25AC_TYPE_INT16_T
26AC_TYPE_INT32_T
27AC_TYPE_INT8_T
28AC_TYPE_PID_T
29AC_TYPE_SIZE_T
30AC_TYPE_UINT16_T
31AC_TYPE_UINT32_T
32AC_TYPE_UINT8_T
33
34# Checks for library functions.
35AC_FUNC_FORK
36AC_FUNC_MALLOC
37AC_FUNC_REALLOC
38AC_CHECK_FUNCS([dup2 getcwd memset setenv strdup strstr])
39
40#============================================================================
41# Detect if gdal is installed
42#============================================================================
43
44AC_ARG_WITH([gdal-config],
45        [AS_HELP_STRING([--with-gdal-config=FILE], [specify an alternative gdal-config file])],
46        [GDAL_CONFIG="$withval"], [GDAL_CONFIG=""])
47if test -z $GDAL_CONFIG;
48then
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       
55else
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
61fi
62
63GDAL_CFLAGS="`$GDAL_CONFIG --cflags`"
64GDAL_LIBS="`$GDAL_CONFIG --libs`"
65
66AC_SUBST([GDAL_CFLAGS])
67AC_SUBST([GDAL_LIBS])
68
69# ===========================================================================
70# Detect if libxml2 is installed
71# ===========================================================================
72
73AC_ARG_WITH([xml2config],
74        [AS_HELP_STRING([--with-xml2config=FILE], [specify an alternative xml2-config file])],
75        [XML2CONFIG="$withval"], [XML2CONFIG=""])
76
77if 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
85else
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
96fi
97
98# Extract the linker and include flags
99XML2_LDFLAGS=`$XML2CONFIG --libs`
100XML2_CPPFLAGS=`$XML2CONFIG --cflags`
101
102# Check headers file
103CPPFLAGS_SAVE="$CPPFLAGS"
104CPPFLAGS="$XML2_CPPFLAGS"
105AC_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
109LIBS_SAVE="$LIBS"
110LIBS="$XML2_LDFLAGS"
111AC_CHECK_LIB([xml2], [xmlInitParser], [], [AC_MSG_ERROR([could not find libxml2])], [])
112
113AC_SUBST([XML2_CPPFLAGS])
114AC_SUBST([XML2_LDFLAGS])
115
116#============================================================================
117# Detect if mapserver is installed
118#============================================================================
119
120AC_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=""])
123
124if test -z $MS_SRC_PATH;
125then
126        MS_CPPFLAGS=""
127        MS_LDFLAGS=""
128else
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"
146fi
147
148MS_CFLAGS="$MS_CPPFLAGS"
149MS_LIBS="$MS_LDFLAGS"
150
151AC_SUBST([MS_CFLAGS])
152AC_SUBST([MS_LIBS])
153AC_SUBST([MS_FILE])
154
155# ===========================================================================
156# Detect if python is installed
157# ===========================================================================
158
159AC_ARG_WITH([python],
160        [AS_HELP_STRING([--with-python=PATH], [To enable python support or specify an alternative directory for python installation,  disabled by default])],
161        [PYTHON_PATH="$withval"; PYTHON_ENABLED="-DUSE_PYTHON"], [PYTHON_ENABLED=""])
162
163AC_ARG_WITH([pyvers],
164        [AS_HELP_STRING([--with-pyvers=NUM], [To use a specific python version])],
165        [PYTHON_VERS="$withval"], [PYTHON_VERS=""])
166
167
168if test -z "$PYTHON_ENABLED"
169then
170        PYTHON_FILE=""
171else
172        PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config"
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
177                AC_PATH_PROG([PYTHONCONFIG], [python${PYTHON_VERS}-config])
178        else
179                PYTHONCONFIG="$PYTHON_PATH/bin/python${PYTHON_VERS}-config"
180        fi
181
182        # Extract the linker and include flags
183        PYTHON_LDFLAGS=`$PYTHONCONFIG --ldflags`
184        PYTHON_CPPFLAGS=`$PYTHONCONFIG --cflags`
185
186        # Check headers file
187        CPPFLAGS_SAVE="$CPPFLAGS"
188        CPPFLAGS="$PYTHON_CPPFLAGS"
189        AC_CHECK_HEADERS([Python.h],
190                 [], [AC_MSG_ERROR([could not find headers include related to libpython])])
191
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])
199fi
200
201AC_SUBST([PYTHON_ENABLED])
202AC_SUBST([PYTHON_FILE])
203
204# ===========================================================================
205# Detect if php is installed
206# ===========================================================================
207
208AC_ARG_WITH([php],
209        [AS_HELP_STRING([--with-php=PATH], [To enable php support or specify an alternative directory for php installation,  disabled by default])],
210        [PHP_PATH="$withval"; PHP_ENABLED="-DUSE_PHP"], [PHP_ENABLED=""])
211
212
213if test -z "$PHP_ENABLED"
214then
215        PHP_FILE=""
216else
217        PHPCONFIG="$PHP_PATH/bin/php-config"
218        PHP_FILE="service_internal_php.o"
219        if test  "$PHP_PATH" = "yes"
220        then
221                # PHP was not specified, so search within the current path
222                AC_PATH_PROG([PHPCONFIG], [php-config])
223        else
224                PHPCONFIG="$PHP_PATH/bin/php-config"
225        fi
226
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])
244fi
245
246AC_SUBST([PHP_ENABLED])
247AC_SUBST([PHP_FILE])
248
249# ===========================================================================
250# Detect if perl is installed
251# ===========================================================================
252
253AC_ARG_WITH([perl],
254        [AS_HELP_STRING([--with-perl=PATH], [To enable perl support or specify an alternative directory for perl installation,  disabled by default])],
255        [PERL_PATH="$withval"; PERL_ENABLED="-DUSE_PERL"], [PERL_ENABLED=""])
256
257
258if test -z "$PERL_ENABLED"
259then
260        PERL_FILE=""
261else
262        PERL_FILE="service_internal_perl.o"
263        if test  "$PERL_PATH" = "yes"
264        then
265                # Perl was not specified, so search within the current path
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])
283fi
284
285AC_SUBST([PERL_ENABLED])
286AC_SUBST([PERL_FILE])
287
288# ===========================================================================
289# Detect if java is installed
290# ===========================================================================
291
292AC_ARG_WITH([java],
293        [AS_HELP_STRING([--with-java=PATH], [To enable java support, specify a JDK_HOME,  disabled by default])],
294        [JDKHOME="$withval"; JAVA_ENABLED="-DUSE_JAVA"], [JAVA_ENABLED=""])
295
296if test -z "$JAVA_ENABLED"
297then
298        JAVA_FILE=""
299else
300        JAVA_FILE="service_internal_java.o"
301        if test "x$JDKHOME" = "x";
302        then
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])
308        fi
309
310        # Extract the linker and include flags
311        if test "x$JDKHOME" = "xmacos";
312        then
313                JAVA_LDFLAGS="-framework JavaVM"
314                JAVA_CPPFLAGS="-I/Developer//SDKs/MacOSX10.6.sdk/System/Library/Frameworks/JavaVM.framework/Versions/A/Headers/"
315        else
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
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"
335        if test "x$JDKHOME" != "xmacos";
336        then
337                AC_CHECK_LIB([jvm], [JNI_CreateJavaVM], [], [AC_MSG_ERROR([could not find libjava])], [])
338        fi
339
340        AC_SUBST([JAVA_CPPFLAGS])
341        AC_SUBST([JAVA_LDFLAGS])
342fi
343
344AC_SUBST([JAVA_ENABLED])
345AC_SUBST([JAVA_FILE])
346
347# ===========================================================================
348# Detect if spidermonkey is installed
349# ===========================================================================
350
351AC_ARG_WITH([js],
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 ])],
353        [JSHOME="$withval";JS_ENABLED="-DUSE_JS"], [JS_ENABLED=""])
354
355if test -z "$JS_ENABLED"
356then
357        JS_FILE=""
358else
359        JS_FILE="service_internal_js.o"
360        if test "$JSHOME" = "yes"
361        then
362
363                #on teste si on est sous debian like
364                if test -f "/usr/bin/dpkg"
365                then
366                        if test -n "`dpkg -l | grep libmozjs185-dev`"
367                        then
368                                JS_CPPFLAGS="-I/usr/include/js/"
369                                JS_LDFLAGS="-L/usr/lib -lmozjs185 -lm"
370                                JS_LIB="mozjs185"
371                        else
372                                XUL_VERSION="`dpkg -l | grep xulrunner | grep dev | head -1| awk '{print $3;}' | cut -d'+' -f1`"
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
379                                        AC_MSG_ERROR([You must install libmozjs185-dev or xulrunner-dev ])
380                                fi
381                        fi
382                else
383                        AC_MSG_ERROR([You must  specify your custom install of libmozjs185])
384                fi
385        else
386                JS_CPPFLAGS="-I$JSHOME/include/js/"
387                JS_LDFLAGS="-L$JSHOME/lib -lmozjs185 -lm"
388                JS_LIB="mozjs185"
389
390        fi
391        CPPFLAGS_SAVE="$CPPFLAGS"
392        CPPFLAGS="$JS_CPPFLAGS"
393
394        #AC_CHECK_HEADERS([jsapi.h],
395        #                [], [AC_MSG_ERROR([could not find headers include related to libjs])])
396
397       
398        LIBS_SAVE="$LIBS"
399        LIBS="$JS_LDFLAGS"
400
401        AC_CHECK_LIB([$JS_LIB], [JS_CompileFile,JS_CallFunctionName], [], [AC_MSG_ERROR([could not find $JS_LIB])], [])
402                       
403        AC_SUBST([JS_CPPFLAGS])
404        AC_SUBST([JS_LDFLAGS])
405fi
406
407AC_SUBST([JS_ENABLED])
408AC_SUBST([JS_FILE])
409
410AC_CONFIG_FILES([Makefile])
411AC_CONFIG_FILES([ZOOMakefile.opts])
412AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.

Search

ZOO Sponsors

http://www.zoo-project.org/trac/chrome/site/img/geolabs-logo.pnghttp://www.zoo-project.org/trac/chrome/site/img/neogeo-logo.png http://www.zoo-project.org/trac/chrome/site/img/apptech-logo.png http://www.zoo-project.org/trac/chrome/site/img/3liz-logo.png http://www.zoo-project.org/trac/chrome/site/img/gateway-logo.png

Become a sponsor !

Knowledge partners

http://www.zoo-project.org/trac/chrome/site/img/ocu-logo.png http://www.zoo-project.org/trac/chrome/site/img/gucas-logo.png http://www.zoo-project.org/trac/chrome/site/img/polimi-logo.png http://www.zoo-project.org/trac/chrome/site/img/fem-logo.png http://www.zoo-project.org/trac/chrome/site/img/supsi-logo.png http://www.zoo-project.org/trac/chrome/site/img/cumtb-logo.png

Become a knowledge partner

Related links

http://zoo-project.org/img/ogclogo.png http://zoo-project.org/img/osgeologo.png