Annotation of rpl/configure.ac, revision 1.290
1.1 bertrand 1: dnl Process this file with autoconf to produce a configure script.
1.287 bertrand 2: AC_INIT([rpl],[4.1.36])
1.1 bertrand 3: AC_CANONICAL_TARGET
1.8 bertrand 4: AM_INIT_AUTOMAKE(silent-rules)
1.9 bertrand 5: AM_SILENT_RULES([yes])
1.1 bertrand 6: AC_SUBST(target_cpu)
7: AC_CONFIG_HEADERS([rplconfig.h])
8:
9: dnl Libraries
1.275 bertrand 10: NCURSES=ncurses-6.4
1.276 bertrand 11: READLINE=readline-8.2
1.277 bertrand 12: UNITS=units-2.22
1.255 bertrand 13: GSL=gsl-2.7.1
1.1 bertrand 14: GPP=gpp-3.0
1.275 bertrand 15: GNUPLOT=gnuplot-5.4.8
1.253 bertrand 16: dnl ftp://ftp.astron.com/pub/file/
1.278 bertrand 17: FILE=file-5.45
1.279 bertrand 18: ICONV=libiconv-1.17
1.280 bertrand 19: SQLITE=sqlite-3.42.0
1.288 bertrand 20: OPENSSL=openssl-3.2.1
1.213 bertrand 21: OPENMOTIF=motif-2.3.8
1.283 bertrand 22: LIBXPM=libXpm-3.5.16
1.282 bertrand 23: SIGSEGV=libsigsegv-2.14
1.284 bertrand 24: ZLIB=zlib-1.2.13
1.1 bertrand 25:
1.284 bertrand 26: GMP=gmp-6.3.0
27: MPFR=mpfr-4.2.0
1.245 bertrand 28: MPFI=mpfi-1.5.4
1.260 bertrand 29: NTL=ntl-11.5.1
1.284 bertrand 30: PARI=pari-2.15.4
1.271 bertrand 31: GIAC=giac-1.9.0
1.1 bertrand 32:
1.33 bertrand 33: dnl 32 bits ABI
34: AC_ARG_WITH(gcc_version,
35: [ --with-gcc-version force gcc version],[
36: CC=gcc-$with_gcc_version
37: CXX=g++-$with_gcc_version
38: CF=gfortran-$with_gcc_version
39: F77=gfortran-$with_gcc_version
1.43 bertrand 40: AC_SUBST(CC)
41: AC_SUBST(CXX)
42: AC_SUBST(CF)
43: AC_SUBST(F77)
1.33 bertrand 44: ],[])
45:
1.37 bertrand 46: dnl Checks for Bash
1.100 bertrand 47: BASH_PATH=$(which bash)
1.37 bertrand 48: BASH=$(which bash | sed 's/\//\\\//g')
49:
50: if test x$BASH = x; then
51: AC_MSG_ERROR([Cannot find bash! You have to install it.])
52: fi
53:
54: AC_SUBST(BASH)
1.100 bertrand 55: AC_SUBST(BASH_PATH)
1.37 bertrand 56:
1.1 bertrand 57: dnl Checks for C compiler
58: AC_PROG_CC(gcc)
59:
60: EXT_SQL=
61:
62: AM_PROG_CC_C_O
63:
64: if test "$GCC" != yes; then
65: AC_MSG_ERROR([Cannot find gcc! You have to install it.])
66: fi
67:
68: dnl Checks for C++ compiler
69: AC_PROG_CXX(g++)
70:
1.2 bertrand 71: if test "$GXX" != yes; then
1.1 bertrand 72: AC_MSG_ERROR([Cannot find g++! You have to install it.])
73: fi
74:
75: dnl Checks for Fortran 77 compiler
76: AC_PROG_F77(gfortran)
77:
1.3 bertrand 78: dnl Check for Fortran 9* compiler
79: AC_PROG_FC(gfortran)
80:
1.92 bertrand 81: if test x"$F77" = x; then
1.1 bertrand 82: AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
83: fi
84:
1.92 bertrand 85: if test x"$FC" = x; then
1.1 bertrand 86: AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
87: fi
88:
1.33 bertrand 89: OPTIMISATION_C=-O3
90: OPTIMISATION_CXX=-O3
91: OPTIMISATION_F=-O3
1.1 bertrand 92:
93: dnl X paths
94: AC_PATH_X
95: AC_PATH_XTRA
96:
97: dnl 32 bits ABI
98: AC_ARG_WITH(32bits-abi,
99: [ --with-32bits-abi force 32bits ABI (multilib)],[
1.23 bertrand 100: if test "$with_32bits_abi" = "no"; then
1.1 bertrand 101: ABI=
102: else
103: ABI=-m32
104: fi],[
105: ABI=
106: ]
107: )
108:
109: if test x$ABI = x; then
110: AC_ARG_WITH(64bits-abi,
111: [ --with-64bits-abi force 64bits ABI (multilib)],[
1.23 bertrand 112: if test "$with_64bits_abi" = "no"; then
1.1 bertrand 113: ABI=
114: else
115: ABI=-m64
116: fi],[
117: ABI=
118: ]
119: )
120: fi
121:
122: LDFLAGS="$LDFLAGS $ABI"
123:
1.23 bertrand 124: AC_ARG_WITH(sysroot,
125: [ --with-sysroot sysroot for cross compilation],[
126: if test "$with_sysroot" = "no" -o "$with_rpltools" = "yes"; then
127: AC_MSG_ERROR([You have to specify sysroot path !])
128: else
1.24 bertrand 129: SYSROOT="-I$with_sysroot/usr/include"
1.25 bertrand 130: SYSROOT2=$with_sysroot
1.23 bertrand 131: fi],[
132: SYSROOT=
1.25 bertrand 133: SYSROOT2=
1.23 bertrand 134: ]
135: )
136:
1.6 bertrand 137: AC_ARG_ENABLE(recursive,
138: [ --enable-recursive recursive configuration (default=yes)],[
139: if test "$enableval" = "yes"; then
140: RECURSIVE=yes
141: else
142: RECURSIVE=no
143: fi],[
144: RECURSIVE=yes
145: ]
146: )
147:
1.141 bertrand 148: AC_ARG_ENABLE(native,
149: [ --enable-native enable gcc native compiler option (default=no)],[
150: if test "$enableval" = "yes"; then
151: CFLAGS="$CFLAGS -mtune=native -march=native"
152: FFLAGS="$FFLAGS -mtune=native -march=native"
153: CXXFLAGS="$CXXFLAGS -mtune=native -march=native"
154: FCFLAGS="$FCFLAGS -mtune=native -march=native"
155: else
156: NATIVE=
157: fi],[
158: NATIVE=
159: ]
160: )
161:
1.3 bertrand 162: AC_ARG_WITH(rpltools,
163: [ --with-rpltools specify rpltools path used for cross compilation],[
1.23 bertrand 164: if test "$with_rpltools" = "no" -o "$with_rpltools" = "yes"; then
1.3 bertrand 165: AC_MSG_ERROR([You have to specify rpltools path !])
166: else
167: RPLTOOLS=$with_rpltools
168: fi],[
169: RPLTOOLS=\$\(top_builddir\)
170: ]
171: )
172:
173: AC_SUBST(RPLTOOLS)
174:
1.231 bertrand 175: dnl libcurl path
176: AC_ARG_WITH(curl,
177: [ --with-curl specify libcurl path used for RPL/CAS],[
178: if test "$with_curl" = "no" -o "$with_curl" = "yes"; then
179: AC_MSG_ERROR([You have to specify libcurl path !])
180: else
181: LIBCURL=-L$with_curl
182: fi],[
183: LIBCURL=
184: ]
185: )
186:
1.1 bertrand 187: dnl RPL/CAS support
1.3 bertrand 188: AC_ARG_ENABLE(rplcas,
189: [ --enable-rplcas compile rplcas (default=no)],[
190: if test "$enableval" = "no"; then
1.1 bertrand 191: RPLCAS=-URPLCAS
192: LIBRPLCAS=
1.95 bertrand 193: INCRPLCAS=
1.1 bertrand 194: else
195: RPLCAS=-DRPLCAS
1.223 bertrand 196: LIBRPLCAS="\$(top_builddir)/rplcas/lib/librplcas.a"
1.233 bertrand 197: dnl LIBS="$LIBS $LIBCURL -lcurl"
198: LIBGIAC="$LIBCURL -lcurl"
1.95 bertrand 199: INCRPLCAS="-I\$(top_builddir)/rplcas/include/giac \
200: -I\$(top_builddir)/rplcas/include"
1.1 bertrand 201: fi],[
202: RPLCAS=-URPLCAS
203: LIBRPLCAS=
1.95 bertrand 204: INCRPLCAS=
1.1 bertrand 205: ]
206: )
207:
208: AC_SUBST(ABI)
209: AC_SUBST(RPLCAS)
210: AC_SUBST(LIBRPLCAS)
1.95 bertrand 211: AC_SUBST(INCRPLCAS)
1.233 bertrand 212: AC_SUBST(LIBGIAC)
1.1 bertrand 213:
214: dnl Options
215: AC_ARG_ENABLE(optimization,
1.187 bertrand 216: [ --enable-optimization set compiler flags [[default=environment variables -O2, enable=environment variables -O3]]], [
1.1 bertrand 217: if test "$enableval" = "no"; then
218: CFLAGS=$ABI
219: FFLAGS=$ABI
220: CXXFLAGS=$ABI
221: FCFLAGS=$ABI
222: else
1.141 bertrand 223: CFLAGS="$CFLAGS $ABI $OPTIMISATION_C"
224: FFLAGS="$FFLAGS $ABI $OPTIMISATION_F"
225: CXXFLAGS="$CXXFLAGS $ABI $OPTIMISATION_CXX"
226: FCFLAGS="$FCFLAGS $ABI $OPTIMISATION_F"
1.1 bertrand 227: fi],[
1.187 bertrand 228: CFLAGS="$CFLAGS $ABI -O2"
229: FFLAGS="$FFLAGS $ABI -O2"
230: CXXFLAGS="$CXXFLAGS $ABI -O2"
231: FCFLAGS="$FCFLAGS $ABI -O2"
1.1 bertrand 232: ]
233: )
234:
1.93 bertrand 235: CFLAGS="$CFLAGS -fno-strict-overflow"
236:
1.6 bertrand 237: AC_MSG_CHECKING([for usable shared memory])
238: AC_COMPILE_IFELSE(
239: [AC_LANG_PROGRAM([#include <sys/shm.h>
240: ],
241: [ return(0); ])],
242: [SHARED_MEMORY=-DSHARED_MEMORY; AC_MSG_RESULT(yes)],
243: [SHARED_MEMORY=-USHARED_MEMORY; AC_MSG_RESULT(no)]
244: )
245: AC_SUBST(SHARED_MEMORY)
246:
1.116 bertrand 247: AC_C_INLINE
248:
249: if test "$ac_cv_c_inline" != no ; then
250: AC_DEFINE(HAVE_INLINE,1,[inline keywork or macro available])
251: AC_SUBST(HAVE_INLINE)
252: fi
253:
1.2 bertrand 254: AC_ARG_ENABLE(sysv-ipcs,
1.1 bertrand 255: [ --enable-sysv-ipcs use SystemV IPC functions [[default=guessed]]], [
256: if test "$enableval" = "no"; then
1.3 bertrand 257: IPCS_SYSV=-UIPCS_SYSV
258: POSIX_IPCS=no
1.1 bertrand 259: else
1.3 bertrand 260: IPCS_SYSV=-DIPCS_SYSV
261: POSIX_IPCS=yes
1.1 bertrand 262: fi],
1.91 bertrand 263: REG=$LIBS
1.3 bertrand 264: POSIX_IPCS=guessed
1.91 bertrand 265: LIBS="-lrt -lpthread"
1.1 bertrand 266: [AC_MSG_CHECKING([for POSIX semaphores and shared objects])
1.23 bertrand 267: AC_LINK_IFELSE(
1.1 bertrand 268: [AC_LANG_PROGRAM([#include <sys/mman.h>
269: #include <sys/stat.h>
270: #include <fcntl.h>
271: ],
272: [ int fd; char *sem = "/test";
273: fd = shm_open(sem , O_CREAT | O_RDWR, S_IRUSR | S_IWUSR);
274: close(fd);
275: shm_unlink(sem);
276: fd = sem_open(sem, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, 0);
277: close(fd);
278: sem_unlink(sem);
279: return(0);
280: ])],
281: [IPCS_SYSV=-UIPCS_SYSV; AC_MSG_RESULT(yes)],
282: [IPCS_SYSV=-DIPCS_SYSV; AC_MSG_RESULT(no)]
283: )]
1.91 bertrand 284: LIBS=$REG
1.1 bertrand 285: )
286:
1.3 bertrand 287: if test "$IPCS_SYSV" = "-UIPCS_SYSV" -a "$POSIX_IPCS" = "guessed"; then
1.91 bertrand 288: REG=$LIBS
289: LIBS=-pthread
1.1 bertrand 290: AC_MSG_CHECKING([for POSIX anonymous semaphores])
1.23 bertrand 291: AC_LINK_IFELSE(
1.1 bertrand 292: [AC_LANG_PROGRAM([#include <semaphore.h>
293: ],
294: [ sem_t sem;
295: if (sem_init(&sem, 1, 0) != 0) return(1);
296: sem_destroy(&sem);
297: return(0);
298: ])],
299: [SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES; AC_MSG_RESULT(yes)],
300: [SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES; AC_MSG_RESULT(no)]
301: )
1.91 bertrand 302: LDFLAGS=$LIBS
1.228 bertrand 303: LIBS=$REG
1.1 bertrand 304: else
305: SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES
306: fi
307:
308: AC_ARG_ENABLE(full-static,
309: [ --enable-full-static build static RPL/2 engine [[default=shared]]], [
310: if test "$enableval" = "no"; then
311: STATIC=no
312: else
313: STATIC=yes
314: fi],
315: STATIC=no)
316:
317: AC_ARG_ENABLE(final-encoding,
318: [ --enable-final-encoding force final encoding [[default=guessed]]], [
319: if test "$enableval" = "no"; then
320: FINAL_ENCODING="\$(shell locale charmap | \
1.252 bertrand 321: \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')"
1.1 bertrand 322: FORCED_FINAL_ENCODING=0
323: else
324: FINAL_ENCODING="$enable_final_encoding"
325: FORCED_FINAL_ENCODING=1
326: fi], [
327: FORCED_FINAL_ENCODING=0
328: FINAL_ENCODING="\$(shell locale charmap | \
1.252 bertrand 329: \$(AWK) '/=/ { print \$\$3;} !/=/ { print \$\$1;}')"])
1.1 bertrand 330:
331: AC_ARG_ENABLE(tex,
332: [ --enable-tex provide the TeX support [[default=guessed]]], [
333: if test "$enableval" = "no"; then
334: TEX_SUPPORT=no
335: else
336: TEX_SUPPORT=yes
337: fi],
338: TEX_SUPPORT=guessed)
339:
340: AC_ARG_ENABLE(vim,
341: [ --enable-vim provide the vim support [[default=guessed]]], [
342: if test "$enableval" = "no"; then
343: VIM_SUPPORT=no
1.16 bertrand 344: DEBVIM=
1.1 bertrand 345: else
346: VIM_SUPPORT=yes
1.17 bertrand 347: DEBVIM=", vim"
1.1 bertrand 348: fi],
349: VIM_SUPPORT=guessed)
350:
351: AC_ARG_ENABLE(embedded-gnuplot,
352: [ --enable-embedded-gnuplot build gnuplot provided by this package [[default=yes]]], [
353: if test "$enableval" = "no"; then
354: MYGNUPLOT=no
355: else
356: MYGNUPLOT=yes
357: fi], [
358: MYGNUPLOT=yes])
359:
360: AC_ARG_ENABLE(gnuplot,
361: [ --enable-gnuplot provide the GnuPlot support [[default=guessed]]],
362: [
363: if test "$enableval" = "no"; then
364: GNUPLOT_SUPPORT=no
365: MYGNUPLOT=no
366: FORCE_GNUPLOT_PATH=-UFORCE_GNUPLOT_PATH
367: else
368: GNUPLOT_SUPPORT=yes
369: FORCE_GNUPLOT_PATH=-DFORCE_GNUPLOT_PATH
370: fi], [
371: if test "$MYGNUPLOT" = "yes"; then
372: GNUPLOT_SUPPORT=yes
373: FORCE_GNUPLOT_PATH=-DFORCE_GNUPLOT_PATH
374: else
375: GNUPLOT_SUPPORT=guessed
376: FORCE_GNUPLOT_PATH=-UFORCE_GNUPLOT_PATH
377: fi])
378:
379: libX=""
380: LIBMOTIF=""
381: INCMOTIF=""
382: BUILD_OPENMOTIF=""
1.197 bertrand 383: MODULE_MOTIF=""
1.1 bertrand 384:
1.231 bertrand 385:
386: if test "$ac_x_includes" != "no"; then
387: if test x"$ac_x_includes" != x; then
388: includeX="-I$ac_x_includes"
389: fi
390: fi
391: if test "$ac_x_libraries" != "no"; then
392: if test x"$ac_x_libraries" != x; then
393: X_LIBS="-L$ac_x_libraries"
394: fi
395: fi
396:
1.1 bertrand 397: AC_ARG_ENABLE(motif,
398: [ --enable-motif provide the Motif support [[default=guessed]]], [
399: if test "$enableval" = "no"; then
400: MOTIF_SUPPORT="-UMOTIF_SUPPORT"
401: else
402: MOTIF_SUPPORT="-DMOTIF_SUPPORT"
403: fi],
1.92 bertrand 404: if test "$have_x" = "yes"; then
1.1 bertrand 405: MOTIF_SUPPORT="-DMOTIF_SUPPORT"
406: else
407: MOTIF_SUPPORT="-UMOTIF_SUPPORT"
408: fi)
409:
1.231 bertrand 410: dnl libXinerama path
411: AC_ARG_WITH(xinerama,
412: [ --with-xinerama specify libxinerama path used for Motif],[
413: if test "$with_xinerama" = "no" -o "$with_xinerama" = "yes"; then
414: AC_MSG_ERROR([You have to specify libxinerama path !])
415: else
416: LIBXINERAMA=-L$with_xinerama
417: fi],[
418: LIBXINERAMA=
419: ]
420: )
421:
1.1 bertrand 422: if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPPORT"; then
1.231 bertrand 423: libX="$X_LIBS -lXt -lX11 -lXext $LIBXINERAMA -lXinerama"
1.198 bertrand 424: LIBMOTIF="\$(top_builddir)/tools/$OPENMOTIF/install/lib/libXm.a \
1.1 bertrand 425: \$(top_builddir)/tools/$LIBXPM/src/.libs/libXpm.a"
426: INCMOTIF="-I\$(top_srcdir)/tools/$OPENMOTIF/lib \
427: -I\$(top_builddir)/tools/$OPENMOTIF/lib \
1.8 bertrand 428: -I\$(top_srcdir)/tools/$LIBXPM/include"
1.1 bertrand 429: BUILD_OPENMOTIF="$LIBXPM $OPENMOTIF"
1.6 bertrand 430:
431: if test $RECURSIVE = yes; then
432: AC_CONFIG_SUBDIRS(tools/$LIBXPM)
433: AC_CONFIG_SUBDIRS(tools/$OPENMOTIF)
434: fi;
1.197 bertrand 435:
436: MODULE_MOTIF="modules/motif"
1.1 bertrand 437: fi
438:
439: AC_ARG_ENABLE(experimental,
440: [ --enable-experimental enable experimental code [[default=no]]], [
441: if test "$enableval" = "no"; then
442: EXPERIMENTAL_CODE="-UEXPERIMENTAL_CODE"
443: else
444: EXPERIMENTAL_CODE="-DEXPERIMENTAL_CODE"
445: fi],
446: EXPERIMENTAL_CODE="-UEXPERIMENTAL_CODE")
447:
448: AC_ARG_ENABLE(debug,
449: [ --enable-debug enable debug code [[default=no]]], [
450: if test "$enableval" = "no"; then
451: DEBUG="-UDEBUG_MEMOIRE -UDEBUG_ERREURS"
452: else
453: DEBUG="-DDEBUG_MEMOIRE -UDEBUG_ERREURS"
454: fi], [DEBUG="-UDEBUG_MEMOIRE -UDEBUG_ERREURS"])
455:
456: AC_ARG_ENABLE(profile,
457: [ --enable-profile enable profile code [[default=no]]], [
458: if test "$enableval" = "no"; then
459: PROFILAGE=""
460: else
461: PROFILAGE="-pg"
462: fi], [PROFILAGE=""])
463:
464: AC_SUBST(PROFILAGE)
465:
1.48 bertrand 466: dnl Checks for uuencode
467: AC_CHECK_PROG(UUENCODE, uuencode, yes, no)
468: if test "$UUENCODE" = no; then
469: AC_MSG_ERROR([Can not find uuencode !])
470: fi
471:
1.202 bertrand 472: dnl Checks for patch
473: AC_CHECK_PROG(PATCH, patch, yes, no)
474: if test "$PATCH" = no; then
475: AC_MSG_ERROR([Can not find patch !])
476: fi
477:
1.1 bertrand 478: if test ! -d tools; then
479: mkdir tools
480: fi
481: if test ! -d "$srcdir"/tools/$NCURSES; then
482: gunzip -c "$srcdir"/tools/$NCURSES.tar.gz | \
483: (cd "$srcdir/tools" && tar -xf -)
484: (cd "$srcdir/tools/"$NCURSES && \
1.191 bertrand 485: for i in $(ls ../$NCURSES*.sh.gz);
486: do echo Uncompressing script $i; TMP=$i; gunzip -c $i > ${TMP%.*};
1.13 bertrand 487: done;
1.191 bertrand 488: for i in $(ls ../$NCURSES*.sh);
1.24 bertrand 489: do echo Applying script $i && chmod 775 $i && ./$i;
1.13 bertrand 490: done;
1.191 bertrand 491: for i in $(ls ../$NCURSES*.patch.gz);
1.98 bertrand 492: do echo Applying patch $i && \
493: gunzip -c $i | patch -p1;
1.1 bertrand 494: done);
495: fi
496: if test ! -d "$srcdir"/tools/$READLINE; then
497: gunzip -c "$srcdir"/tools/$READLINE.tar.gz | \
498: (cd "$srcdir/tools" && tar -xf -)
499: fi
500: if test ! -d "$srcdir"/tools/$UNITS; then
501: gunzip -c "$srcdir"/tools/$UNITS.tar.gz | \
502: (cd "$srcdir/tools" && tar -xf -)
503: fi
504: if test ! -d "$srcdir"/tools/$GSL; then
505: gunzip -c "$srcdir"/tools/$GSL.tar.gz | \
506: (cd "$srcdir/tools" && tar -xf -)
1.270 bertrand 507: (cd "$srcdir"/tools/$GSL && ./autogen.sh)
1.1 bertrand 508: if test $(uname) = "OS/2"; then
509: (cd "$srcdir"/tools/$GSL; \
510: TMP=$(mktemp tmp.XXXXXXXXXX); \
511: sed -e '1,$s/\${1+"\$@"}/"\$@"/g' ltmain.sh > $TMP; \
512: \mv -f $TMP ltmain.sh)
513: fi
514: fi
515: if test ! -d "$srcdir"/tools/$GPP; then
516: gunzip -c "$srcdir"/tools/$GPP.tar.gz | \
517: (cd "$srcdir/tools" && tar -xf -)
1.270 bertrand 518: (cd "$srcdir"/tools/$GPP && autoreconf -i)
1.1 bertrand 519: fi
520: if test ! -d "$srcdir"/tools/$FILE; then
521: gunzip -c "$srcdir"/tools/$FILE.tar.gz | \
522: (cd "$srcdir/tools" && tar -xf - )
1.23 bertrand 523: (cd "$srcdir/tools"/$FILE && gunzip -c ../$FILE.diff.gz | patch -p1 && \
524: autoreconf)
1.1 bertrand 525: fi
526: if test ! -d "$srcdir"/tools/$SQLITE; then
527: gunzip -c "$srcdir"/tools/$SQLITE.tar.gz | \
528: (cd "$srcdir/tools" && tar -xf -)
529: fi
530: if test ! -d "$srcdir"/tools/$SIGSEGV; then
531: gunzip -c "$srcdir"/tools/$SIGSEGV.tar.gz | \
532: (cd "$srcdir/tools" && tar -xf -)
1.32 bertrand 533: (cd "$srcdir/tools/$SIGSEGV" && ./autogen.sh --skip-gnulib)
1.1 bertrand 534: fi
1.36 bertrand 535: if test ! -d "$srcdir"/tools/$ICONV; then
536: gunzip -c "$srcdir"/tools/$ICONV.tar.gz | \
537: (cd "$srcdir/tools" && tar -xf -)
1.38 bertrand 538: (cd "$srcdir"/tools/$ICONV && ln -sf ../$SIGSEGV/gnulib gnulib)
1.36 bertrand 539: fi
1.1 bertrand 540: if test ! -d "$srcdir"/tools/$OPENMOTIF; then
541: gunzip -c "$srcdir"/tools/$OPENMOTIF.tar.gz | \
542: (cd "$srcdir/tools" && tar -xf -)
543: fi
544: if test ! -d "$srcdir"/tools/$LIBXPM; then
545: gunzip -c "$srcdir"/tools/$LIBXPM.tar.gz | \
546: (cd "$srcdir/tools" && tar -xf -)
547: fi
548: if test ! -d tools/$OPENSSL; then
549: gunzip -c "$srcdir"/tools/$OPENSSL.tar.gz | \
550: (cd tools && tar -xf -)
551: fi
1.62 bertrand 552: if test ! -d tools/$ZLIB; then
553: gunzip -c "$srcdir"/tools/$ZLIB.tar.gz | \
554: (cd tools && tar -xf - && cd $ZLIB && ./configure --static)
555: fi
1.1 bertrand 556: if test ! -d rplcas; then
557: mkdir rplcas
558: fi
559: if test ! -d "$srcdir"/rplcas/$GMP; then
560: gunzip -c "$srcdir"/rplcas/$GMP.tar.gz | \
561: (cd "$srcdir/rplcas" && tar -xf -)
562: fi
563: if test ! -d "$srcdir"/rplcas/$MPFR; then
564: gunzip -c "$srcdir"/rplcas/$MPFR.tar.gz | \
565: (cd "$srcdir/rplcas" && tar -xf -)
566: fi
1.137 bertrand 567: if test ! -d "$srcdir"/rplcas/$MPFI; then
568: gunzip -c "$srcdir"/rplcas/$MPFI.tar.gz | \
569: (cd "$srcdir/rplcas" && tar -xf -)
1.270 bertrand 570: (cd "$srcdir"/rplcas/$MPFI && ./autogen.sh)
1.137 bertrand 571: fi
1.1 bertrand 572: if test ! -d rplcas/$NTL; then
573: gunzip -c "$srcdir"/rplcas/$NTL.tar.gz | \
574: (cd rplcas && tar -xf -)
575: fi
576: if test ! -d rplcas/$PARI; then
577: gunzip -c "$srcdir"/rplcas/$PARI.tar.gz | \
578: (cd rplcas && tar -xf -)
579: fi
580: if test ! -d "$srcdir"/rplcas/$GIAC; then
581: gunzip -c "$srcdir"/rplcas/$GIAC.tar.gz | \
582: (cd "$srcdir/rplcas" && tar -xf -)
583: fi
584:
585: touch tools/openmotif.lib
586:
587: dnl Default installation directory
588: AC_PREFIX_DEFAULT(/usr/local)
589:
590: dnl Set final install path
591: AC_ARG_ENABLE(final-run-path,
592: [ --enable-final-run-path=PATH enable another final run path than PREFIX], [
593: if test "x$enable_final_run_path" = "x"; then
594: AC_MSG_NOTICE("No path with --enable-final-run-path.")
595: AC_MSG_ERROR("You should specify final path !")
596: else
597: RUNPATH="$enable_final_run_path"
598: fi
599: ],
600: RUNPATH="\${prefix}"
601: )
602: AC_SUBST(RUNPATH)
603:
604: dnl Checks for programs
605: AC_PROG_INSTALL
606: AC_PROG_LN_S
607: AC_PROG_MAKE_SET
608: AC_PROG_RANLIB
609:
610: dnl Checks for nawk
611: AC_CHECK_PROG(AWK, nawk, yes, no)
612: if test "$AWK" = no; then
613: AC_CHECK_PROG(AWK, gawk, yes, no)
614: if test "$AWK" = no; then
615: AC_MSG_ERROR([Can not find nawk !])
616: fi
617: fi
618:
619: dnl Checks for sed
620: AC_CHECK_PROG(SED, sed, yes, no)
621: if test "$SED" = no; then
622: AC_MSG_ERROR([Can not find sed !])
623: fi
624:
1.48 bertrand 625: dnl Checks for yacc
626: AC_CHECK_PROG(YACC, yacc, yes, no)
627: if test "$YACC" = no; then
628: AC_MSG_ERROR([Can not find yacc !])
629: fi
630:
1.1 bertrand 631: dnl Checks for TeX, LaTeX, dvips, gs, gv, vim and gnuplot
632: if test "$TEX_SUPPORT" = guessed; then
633: POSTSCRIPT_SUPPORT="-DPOSTSCRIPT_SUPPORT"
634:
635: AC_CHECK_PROG(TEX, tex, yes, no)
636: if test "$TEX" = no; then
637: AC_MSG_WARN([Cannot find TeX! You may install it.
638: Download at http://tex.loria.fr/
639: ])
640: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
641: fi
642:
643: AC_CHECK_PROG(LATEX, latex, yes, no)
644: if test "$LATEX" = no; then
645: AC_MSG_WARN([Cannot find LaTeX! You may install it.
646: Download at http://tex.loria.fr/
647: ])
648: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
649: fi
650:
651: AC_CHECK_PROG(DVIPS, dvips, yes, no)
652: if test "$DVIPS" = no; then
653: AC_MSG_WARN([Cannot find dvips! You may install it.
654: Download at http://tex.loria.fr/
655: ])
656: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
657: fi
658:
659: AC_CHECK_PROG(GS, gs, yes, no)
660: if test "$GS" = no; then
661: AC_MSG_WARN([Cannot find gs! You may install it.
662: Download at http://ftp.lip6.fr/
663: ])
664: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
665: fi
666:
667: AC_CHECK_PROG(GV, gv, yes, no)
668: if test "$GV" = no; then
669: AC_MSG_WARN([Cannot find gv! You may install it.
670: Download at http://ftp.lip6.fr/
671: ])
672: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
673: fi
674: else
675: if test "$TEX_SUPPORT" = no; then
676: POSTSCRIPT_SUPPORT="-UPOSTSCRIPT_SUPPORT"
677: else
678: POSTSCRIPT_SUPPORT="-DPOSTSCRIPT_SUPPORT"
679: fi
680: fi
681:
682: if test "$GNUPLOT_SUPPORT" = guessed; then
683: AC_CHECK_PROG(GNUPLOT_P, gnuplot, yes, no)
684: if test "$GNUPLOT_P" = no; then
685: AC_MSG_WARN([Cannot find gnuplot! You may install it.
686: Download at http://www.gnuplot.vt.edu/
687: ])
688: GNUPLOT_SUPPORT="-UGNUPLOT_SUPPORT"
689: else
690: GNUPLOT_SUPPORT="-DGNUPLOT_SUPPORT"
691: fi
692: else
693: if test "$GNUPLOT_SUPPORT" = no; then
694: GNUPLOT_SUPPORT="-UGNUPLOT_SUPPORT"
695: else
696: GNUPLOT_SUPPORT="-DGNUPLOT_SUPPORT"
697: fi
698: fi
699:
700: if test "$VIM_SUPPORT" = guessed; then
701: AC_CHECK_PROG(VIM, vim, yes, no)
702: if test "$VIM" = no; then
703: AC_MSG_WARN([Cannot find vim! You may install it.
704: Download at http://www.vim.org/
705: ])
706: VIM_SUPPORT="-UVIM_SUPPORT"
1.16 bertrand 707: DEBVIM=
1.1 bertrand 708: else
709: VIM_SUPPORT="-DVIM_SUPPORT"
1.18 bertrand 710: DEBVIM=", vim"
1.1 bertrand 711: fi
712: else
713: if test "$VIM_SUPPORT" = no; then
714: VIM_SUPPORT="-UVIM_SUPPORT"
1.16 bertrand 715: DEBVIM=
1.1 bertrand 716: else
717: VIM_SUPPORT="-DVIM_SUPPORT"
1.18 bertrand 718: DEBVIM=", vim"
1.1 bertrand 719: fi
720: fi
721:
722: dnl Substitutions
723: AC_SUBST(GNUPLOT_SUPPORT)
724: AC_SUBST(FORCE_GNUPLOT_PATH)
725: AC_SUBST(POSTSCRIPT_SUPPORT)
726: AC_SUBST(VIM_SUPPORT)
727: AC_SUBST(EXPERIMENTAL_CODE)
728: AC_SUBST(DEBUG)
729: AC_SUBST(MOTIF_SUPPORT)
730: AC_SUBST(libX)
731: AC_SUBST(includeX)
732:
733: dnl Date
1.124 bertrand 734: DATE=$(env LC_ALL=C date +"%A, %e %B %Y %T %z")
735: DATE_FR=$(env LC_ALL=fr_FR date +"%A, %e %B %Y %T %z")
1.1 bertrand 736: AC_SUBST(DATE)
1.124 bertrand 737: AC_SUBST(DATE_FR)
1.1 bertrand 738:
739: dnl Checks for libraries
740: AC_CHECK_LIB(m, main,, AC_MSG_ERROR([Can not find libm !]))
1.2 bertrand 741: AC_CHECK_LIB(c, pthread_mutex_init,,
742: [AC_CHECK_LIB(pthread, main,,
743: AC_MSG_ERROR([Can not find libpthread !]))])
1.201 bertrand 744: if test "$MOTIF_SUPPORT" = "-DMOTIF_SUPPORT"; then
1.231 bertrand 745: REG=$LIBS
746: LIBS="$LIBS $libX"
1.201 bertrand 747: AC_CHECK_LIB(Xinerama, XineramaIsActive,,
748: AC_MSG_ERROR([Can not find libXinerama !]))
1.231 bertrand 749: LIBS=$REG
1.201 bertrand 750: fi
1.203 bertrand 751: AC_CHECK_LIB(gomp, omp_get_num_procs,, AC_MSG_ERROR([Can not find libgomp !]))
1.204 bertrand 752: OPENMP=-lgomp
1.203 bertrand 753: AC_SUBST(OPENMP)
1.1 bertrand 754:
755: dnl Check for union semun
756: AC_CHECK_TYPE([union semun], SEMUN=-DUNION_SEMUN, SEMUN=-UUNION_SEMUN, [[
757: #include <sys/sem.h>
758: ]])
759:
760: dnl Check for IPv6 support
761: AC_CHECK_TYPE([struct sockaddr_in6], IPV6=-DIPV6, IPV6=-UIPV6, [[
762: #include <sys/types.h>
763: #include <netinet/in.h>
764: ]])
765:
766: dnl Do we need to use -ldl?
767: if test "$CYGWIN" != yes; then
768: AC_CHECK_LIB(dl, dlopen, LIBS="$LIBS -ldl",
769: AC_MSG_WARN([libdl doesn't seem to be needed on this system.]))
770: fi
771:
772: dnl Do we need to use -lrt?
773: AC_CHECK_LIB(rt, nanosleep, LIBS="$LIBS -lrt",
774: AC_MSG_WARN([librt doesn't seem to be needed on this system.]))
775:
1.79 bertrand 776: AC_CHECK_LIB(rt, shm_open, LIBS="$LIBS -lrt",
777: AC_MSG_WARN([librt doesn't seem to be needed on this system.]))
778:
779: AC_CHECK_LIB(pthread, pthread_create, LIBS="$LIBS -lpthread",
780: AC_MSG_WARN([libpthread doesn't seem to be needed on this system.]))
781:
1.1 bertrand 782: dnl Do we need to use -lsocket?
783: AC_CHECK_LIB(socket, bind, LIBS="$LIBS -lsocket",
784: AC_MSG_WARN([libsocket doesn't seem to be needed on this system.]))
785:
786: dnl Check for SQL libraries
787: MYSQL_SUPPORT="-UMYSQL_SUPPORT"
788: AC_ARG_WITH(mysql,
789: [ --with-mysql=PATH specify directory for installed mysql],
790: [], [with_mysql=check])
791:
1.162 bertrand 792: if test "x$with_mysql" = xcheck -o "x$with_mysql" = xyes; then
1.1 bertrand 793: libMySQLinc="-I/usr/include"
794: libMySQLlib="/usr/lib"
795:
796: AC_MSG_CHECKING(for libmysql includes in /usr/include)
797: saved_CFLAGS="$CFLAGS"
798: CFLAGS="$CFLAGS -L/$libMySQLinc"
799: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 ! bertrand 800: libMySQLinc=$libMySQLinc],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 801: CFLAGS=$saved_CFLAGS
802:
803: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
804: AC_MSG_CHECKING(for libmysql includes in /usr/include/mysql)
805: saved_CFLAGS="$CFLAGS"
806: CFLAGS="$CFLAGS $libMySQLinc/mysql"
807: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 ! bertrand 808: libMySQLinc=$libMySQLinc/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 809: CFLAGS=$saved_CFLAGS
1.290 ! bertrand 810: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
! 811: libMySQLinc=$libMySQLinc/mysql
! 812: fi;
1.1 bertrand 813: fi
814:
815: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
1.289 bertrand 816: AC_MSG_CHECKING(for libmysql includes in /usr/include/mariadb)
817: saved_CFLAGS="$CFLAGS"
818: CFLAGS="$CFLAGS $libMySQLinc/mariadb"
819: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 ! bertrand 820: libMySQLinc=$libMySQLinc/mariadb],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.289 bertrand 821: CFLAGS=$saved_CFLAGS
1.290 ! bertrand 822: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
! 823: libMySQLinc=$libMySQLinc/mariadb
! 824: fi;
1.289 bertrand 825: fi
826:
827: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
1.1 bertrand 828: AC_MSG_CHECKING(for libmysql includes in /usr/local/include)
829: saved_CFLAGS="$CFLAGS"
830: CFLAGS="$CFLAGS $libMySQLinc/../local/include"
831: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 ! bertrand 832: libMySQLinc=$libMySQLinc/../local/include],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 833: CFLAGS=$saved_CFLAGS
1.290 ! bertrand 834: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
! 835: libMySQLinc=$libMySQLinc/../local/include
! 836: libMySQLlib=$libMySQLlib/../local/lib
! 837: fi;
1.1 bertrand 838: fi
839:
840: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
841: AC_MSG_CHECKING(for libmysql includes in /usr/local/include/mysql)
842: saved_CFLAGS="$CFLAGS"
843: CFLAGS="$CFLAGS $libMySQLinc/../local/include/mysql"
844: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
845: libMySQLinc=$libMySQLinc/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
846: CFLAGS=$saved_CFLAGS
1.290 ! bertrand 847: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
! 848: libMySQLinc=$libMySQLinc/../local/include/mysql
! 849: libMySQLlib=$libMySQLlib/../local/lib
! 850: fi;
1.1 bertrand 851: fi
852: else
853: if test "x$with_mysql" != xno; then
854: libMySQLinc="-I$with_mysql/include"
855: libMySQLlib="$with_mysql/lib"
856:
857: AC_MSG_CHECKING(for libmysql includes in $with_mysql)
858: saved_CFLAGS="$CFLAGS"
859: CFLAGS="$CFLAGS $libMySQLinc"
860: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
861: libMySQLinc=$libMySQLinc/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
862: CFLAGS=$saved_CFLAGS
863:
864: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
865: AC_MSG_CHECKING(for libmysql includes in $with_mysql/mysql)
866: saved_CFLAGS="$CFLAGS"
867: CFLAGS="$CFLAGS $libMySQLinc/mysql"
868: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
869: libMySQLinc=$libMySQLinc],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
870: CFLAGS=$saved_CFLAGS
871: libMySQLinc=$libMySQLinc/mysql
872: fi
873: else
874: MYSQL_SUPPORT="-UMYSQL_SUPPORT"
875: fi
876: fi
877:
878: if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPPORT"; then
879: MYSQL_LIB=no
880:
881: if test $MYSQL_LIB = no; then
882: AC_MSG_CHECKING(for libmysql libraries in $libMySQLlib)
883: saved_LIBS="$LIBS"
884: if test $STATIC = no; then
885: LIBS="$LIBS -L/$libMySQLlib -lmysqlclient_r $libMySQLinc"
886: else
1.86 bertrand 887: LIBS="$LIBS $libMySQLlib/libmysqlclient_r.a $libMySQLinc"
1.1 bertrand 888: fi
889: AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[MYSQL mysql; mysql_init(&mysql);]])],[AC_MSG_RESULT([yes]); MYSQL_LIB="yes"],[AC_MSG_RESULT([no]); MYSQL_LIB="no"])
890: LIBS=$saved_LIBS;
891: if test $STATIC = no; then
892: libMySQLlib="-L/$libMySQLlib -lmysqlclient_r"
893: else
894: libMySQLlib="$libMySQLlib/libmysqlclient_r.a"
895: EXT_SQL="$EXT_SQL $libMySQLlib"
896: fi
897: fi
898:
899: if test $MYSQL_LIB = no; then
900: MYSQL_SUPPORT="-UMYSQL_SUPPORT"
901: fi
902: fi
903:
1.16 bertrand 904: DEBMYSQL=
905:
1.1 bertrand 906: if test "$MYSQL_SUPPORT" != "-DMYSQL_SUPPORT"; then
907: libMySQLinc=
908: libMySQLlib=
1.16 bertrand 909: else
1.17 bertrand 910: DEBMYSQL=", libmysqlclient18"
1.1 bertrand 911: fi
912:
913: AC_SUBST(MYSQL_SUPPORT)
914: AC_SUBST(libMySQLinc)
915: AC_SUBST(libMySQLlib)
916:
917: POSTGRESQL_SUPPORT=-UPOSTGRESQL_SUPPORT
918: AC_ARG_WITH(postgresql,
919: [ --with-postgresql=PATH specify directory for installed postgresql],
920: [], [with_postgresql=check])
921:
922: # with_postgresql : check [pas défini], yes [uniquement --with],
923: # no [--without], valeur [--with=valeur].
924:
925: if test "x$with_postgresql" = xcheck -o "x$with_postgresql" = xyes; then
926: libPgSQLinc="-I/usr/include"
927: libPgSQLlib="/usr/lib"
928:
929: AC_MSG_CHECKING(for libpq includes in /usr/include)
930: saved_CFLAGS="$CFLAGS"
931: CFLAGS="$CFLAGS $libPgSQLinc"
932: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]); POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]); POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
933: CFLAGS=$saved_CFLAGS
934:
935: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
936: AC_MSG_CHECKING(for libpq includes in /usr/include/postgresql)
937: saved_CFLAGS="$CFLAGS"
938: CFLAGS="$CFLAGS $libPgSQLinc/postgresql"
939: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
940: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
941: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
942: CFLAGS=$saved_CFLAGS
943: libPgSQLinc=$libPgSQLinc/postgresql
944: fi
945:
946: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
947: AC_MSG_CHECKING(for libpq includes in /usr/include/pgsql)
948: saved_CFLAGS="$CFLAGS"
949: CFLAGS="$CFLAGS $libPgSQLinc/pgsql"
950: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
951: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
952: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
953: CFLAGS=$saved_CFLAGS
954: libPgSQLinc=$libPgSQLinc/pgsql
955: fi
956:
957: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
958: AC_MSG_CHECKING(for libpq includes in /usr/local/include)
959: saved_CFLAGS="$CFLAGS"
960: CFLAGS="$CFLAGS $libPgSQLinc/../local/include"
961: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
962: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
963: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
964: CFLAGS=$saved_CFLAGS
965: libPgSQLinc=$libPgSQLinc/../local/include
966: libPgSQLlib=$libPgSQLlib/../local/lib
967: fi
968:
969: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
970: AC_MSG_CHECKING(for libpq includes in /usr/local/include/postgresql)
971: saved_CFLAGS="$CFLAGS"
972: CFLAGS="$CFLAGS $libPgSQLinc/../local/include/postgresql"
973: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
974: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
975: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
976: CFLAGS=$saved_CFLAGS
977: libPgSQLinc=$libPgSQLinc/../local/include/postgresql
978: libPgSQLlib=$libPgSQLlib/../local/lib
979: fi
980:
981: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
982: AC_MSG_CHECKING(for libpq includes in /usr/local/include/pgsql)
983: saved_CFLAGS="$CFLAGS"
984: CFLAGS="$CFLAGS $libPgSQLinc/../local/include/pgsql"
985: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
986: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
987: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
988: CFLAGS=$saved_CFLAGS
989: libPgSQLinc=$libPgSQLinc/local/include/pgsql
990: libPgSQLlib=$libPgSQLlib/../local/lib
991: fi
992: else
993: if test "x$with_postgresql" != xno; then
994: libPgSQLinc="-I$with_postgresql/include"
995: libPgSQLlib="$with_postgresql/lib"
996:
997: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc)
998: saved_CFLAGS="$CFLAGS"
999: CFLAGS="$CFLAGS $libPgSQLinc"
1000: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
1001: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
1002: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
1003: CFLAGS=$saved_CFLAGS
1004:
1005: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
1006: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc/postgresql)
1007: saved_CFLAGS="$CFLAGS"
1008: CFLAGS="$CFLAGS $libPgSQLinc/postgresql"
1009: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
1010: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
1011: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
1012: CFLAGS=$saved_CFLAGS
1013: libPgSQLinc=$libPgSQLinc/postgresql
1014: fi
1015:
1016: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
1017: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc/pgsql)
1018: saved_CFLAGS="$CFLAGS"
1019: CFLAGS="$CFLAGS $libPgSQLinc/pgsql"
1020: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
1021: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
1022: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
1023: CFLAGS=$saved_CFLAGS
1024: libPgSQLinc=$libPgSQLinc/pgsql
1025: fi
1026: else
1027: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"
1028: fi
1029: fi
1030:
1031: if test "$POSTGRESQL_SUPPORT" = "-DPOSTGRESQL_SUPPORT"; then
1032: POSTGRESQL_LIB=no
1033:
1034: if test $POSTGRESQL_LIB = no; then
1035: AC_MSG_CHECKING(for libpq libraries in $libPgSQLlib)
1036: saved_LIBS="$LIBS"
1037: if test $STATIC = no; then
1038: LIBS="$LIBS -L/$libPgSQLlib $libPgSQLinc -lpq"
1039: else
1040: LIBS="$LIBS $libPgSQLlib/libpq.a $libPgSQLinc"
1041: fi
1042: AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[PGconn *conn; const char *conninfo="dbname=postgres"; conn =
1043: PQconnectdb(conninfo);]])],[AC_MSG_RESULT([yes]); POSTGRESQL_LIB="yes"],[AC_MSG_RESULT([no]); POSTGRESQL_LIB="no"])
1044: LIBS=$saved_LIBS;
1045: if test $STATIC = no; then
1046: libPgSQLlib="-L/$libPgSQLlib -lpq"
1047: else
1048: libPgSQLlib="$libPgSQLlib/libpq.a"
1049: EXT_SQL="$EXT_SQL $libPgSQLlib"
1050: fi
1051: fi
1052: fi
1053:
1.16 bertrand 1054: DEBPQ=
1055:
1.1 bertrand 1056: if test "$POSTGRESQL_SUPPORT" != "-DPOSTGRESQL_SUPPORT"; then
1057: libPgSQLinc=
1058: libPgSQLlib=
1.16 bertrand 1059: else
1.17 bertrand 1060: DEBPQ=", libpq5"
1.1 bertrand 1061: fi
1062:
1063: AC_SUBST(POSTGRESQL_SUPPORT)
1064: AC_SUBST(libPgSQLinc)
1065: AC_SUBST(libPgSQLlib)
1066:
1067: # with_postgresql : check [pas défini], yes [uniquement --with],
1068: # no [--without], valeur [--with=valeur].
1069: AC_ARG_WITH(bourne_shell,
1070: [ --with-bourne-shell=PATH specify path for OS/2 bourne shell],
1071: [], [with_bourne_shell=no])
1072:
1073: if test "x$with_bourne_shell" = xyes; then
1074: AC_MSG_ERROR([You have to specify a valide shell path !])
1075: fi
1076:
1077: if test "x$with_bourne_shell" = xno; then
1078: if test $(uname) = "OS/2"; then
1079: AC_MSG_ERROR([With OS/2 or eComstation, you have to specify a valide
1080: shell path with --with-bourne-shell=PATH !])
1081: fi
1082:
1083: BSH_PATH=
1084: else
1085: if test ! -x $with_bourne_shell; then
1086: AC_MSG_ERROR([$with_bourne_shell is not executable !])
1087: fi
1088:
1089: if test $(uname) = "OS/2"; then
1090: with_os2_bourne_shell=$(echo $with_bourne_shell | \
1091: sed -e '1,$s/\//\\\\\\\\/g')
1092: BSH_PATH=-DBOURNE_SHELL=\"\\\"$with_os2_bourne_shell\\\"\"
1093: else
1094: AC_MSG_WARN([--with-bourne-shell ignored])
1095: BSH_PATH=
1096: fi
1097: fi
1098:
1099: dnl Checks for sizes
1100: AC_CHECK_SIZEOF(void *, 4)
1101: AC_CHECK_SIZEOF(char, 1)
1102: AC_CHECK_SIZEOF(short int, 2)
1103: AC_CHECK_SIZEOF(int, 4)
1104: AC_CHECK_SIZEOF(long int, 4)
1105: AC_CHECK_SIZEOF(long long int, 8)
1106: AC_CHECK_SIZEOF(float, 4)
1107: AC_CHECK_SIZEOF(double, 8)
1108: AC_CHECK_SIZEOF(long double, 12)
1109:
1110: dnl Checks for header files.
1111: AC_HEADER_DIRENT
1112: AC_HEADER_STDC
1113: AC_HEADER_SYS_WAIT
1114: AC_CHECK_HEADERS(dlfcn.h fcntl.h math.h pwd.h signal.h string.h termios.h \
1115: time.h unistd.h sys/resource.h sys/stat.h sys/time.h sys/timeb.h \
1116: sys/types.h sys/select.h sys/wait.h stdio.h stdlib.h pthread.h)
1117:
1118: dnl Checks for typedefs, structures, and compiler characteristics.
1119: AC_C_CONST
1120: AC_TYPE_UID_T
1121: AC_TYPE_PID_T
1122: AC_TYPE_SIZE_T
1123: AC_HEADER_TIME
1124: AC_STRUCT_TM
1125:
1126: dnl Checks for library functions.
1127: AC_DIAGNOSE([obsolete],[your code may safely assume C89 semantics that RETSIGTYPE is void.
1128: Remove this warning and the `AC_CACHE_CHECK' when you adjust the code.])dnl
1129: AC_CACHE_CHECK([return type of signal handlers],[ac_cv_type_signal],[AC_COMPILE_IFELSE(
1130: [AC_LANG_PROGRAM([#include <sys/types.h>
1131: #include <signal.h>
1132: ],
1133: [return *(signal (0, 0)) (0) == 1;])],
1134: [ac_cv_type_signal=int],
1135: [ac_cv_type_signal=void])])
1136: AC_DEFINE_UNQUOTED([RETSIGTYPE],[$ac_cv_type_signal],[Define as the return type of signal handlers
1137: (`int' or `void').])
1138:
1139: AC_FUNC_STRCOLL
1140: AC_FUNC_STRFTIME
1141: AC_FUNC_VPRINTF
1142: AC_CHECK_FUNCS(ftime getcwd putenv select strcspn strdup \
1143: strerror strspn strstr strtod)
1144:
1145: dnl Check for OpenSSL os/comp
1146: AC_ARG_WITH(openssl_arch,
1147: [ --with-openssl-arch=ARCH specify os and compiler for openssl (ARCH or list)],
1148: [], [with_openssl_arch=none])
1149:
1150: if test $(uname) = "OS/2"; then
1151: bash -c "cd tools/$OPENSSL && os2/OS2-EMX.cmd"
1152: else
1.23 bertrand 1153: if test $build = $host; then
1154: OPENSSL_CROSS=
1155: else
1156: OPENSSL_CROSS="AR=$host-ar RANLIB=$host-ranlib CC=$host-gcc NM=$host-nm"
1157: fi
1158: echo $build $host
1159: echo $OPENSSL_CROSS
1.1 bertrand 1160: if test "x$with_openssl_arch" = xnone; then
1.23 bertrand 1161: (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./config no-asm")
1.1 bertrand 1162: elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then
1163: (cd tools/$OPENSSL && ./Configure)
1164: AC_MSG_ERROR([OS/COMP informations are required!])
1165: elif test "x$with_openssl_arch" = xlist; then
1166: (cd tools/$OPENSSL && ./Configure)
1167: AC_MSG_ERROR([Please specify OS and Architecture])
1168: else
1.23 bertrand 1169: (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./Configure no-asm \
1170: $with_openssl_arch")
1.1 bertrand 1171: fi
1172: fi
1173:
1174: if test "$MYGNUPLOT" = "yes"; then
1175: if test ! -d "$srcdir"/tools/$GNUPLOT; then
1176: gunzip -c "$srcdir"/tools/$GNUPLOT.tar.gz | \
1177: (cd "$srcdir/tools" && tar -xf -)
1178: fi
1.6 bertrand 1179:
1180: if test $RECURSIVE = yes; then
1181: AC_CONFIG_SUBDIRS(tools/$GNUPLOT)
1182: fi
1183:
1.1 bertrand 1184: GNUPLOT_COMPILATION=$GNUPLOT
1185: else
1186: GNUPLOT_COMPILATION=
1187: fi
1188:
1189: AC_SUBST(GNUPLOT_COMPILATION)
1190:
1.3 bertrand 1191: HOST=$target
1.1 bertrand 1192: AC_SUBST(HOST)
1.25 bertrand 1193: BUILD=$build
1194: AC_SUBST(BUILD)
1.1 bertrand 1195:
1.2 bertrand 1196: my_save_cflags="$CFLAGS"
1197: FPCFLAGS=""
1.1 bertrand 1198:
1.2 bertrand 1199: CFLAGS=-malign-double
1200: AC_MSG_CHECKING([whether CC supports -malign-double])
1201: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1202: [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -malign-double"],
1203: [AC_MSG_RESULT([no])])
1.218 bertrand 1204: #CFLAGS=-mieee-fp
1205: #AC_MSG_CHECKING([whether CC supports -mieee-fp])
1206: #AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1207: # [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee-fp"],
1208: # [AC_MSG_RESULT([no])])
1.2 bertrand 1209: CFLAGS=-mieee
1210: AC_MSG_CHECKING([whether CC supports -mieee])
1211: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1212: [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee"],
1213: [AC_MSG_RESULT([no])])
1214: CFLAGS=$my_save_cflags
1215:
1216: CFLAGS="$CFLAGS $FPCFLAGS -Wall -funsigned-char -Wno-pointer-sign"
1217: FFLAGS="$FFLAGS $FPCFLAGS -Wall -fno-f2c"
1218: FCFLAGS="$FCFLAGS $FPCFLAGS -Wall -fno-f2c"
1219: CXXFLAGS="$CXXFLAGS $FPCFLAGS -Wall -funsigned-char"
1.1 bertrand 1220:
1.2 bertrand 1221: case $target_os in
1.1 bertrand 1222:
1223: cygwin*)
1224: OS=Cygwin
1225: break ;;
1226:
1227: interix*)
1228: OS=Interix
1229: break ;;
1230:
1231: *)
1232: OS=$(uname)
1233: break ;;
1234:
1235: esac
1236:
1237: AC_SUBST(OS)
1238:
1239: MALLOC=
1.170 bertrand 1240: NO_EXPORT_DYNAMIC=-Wl,--no-export-dynamic
1.1 bertrand 1241:
1242: case $OS in
1243: Darwin)
1244: EXPORT_DYNAMIC=-Wl,-flat_namespace
1245: NESTED_FUNCTIONS=-fnested-functions
1246: CXXFLAGS="$CXXFLAGS -D_GLIBCXX_FULLY_DYNAMIC_STRING"
1247: ac_configure_args="$ac_configure_args --with-readline=builtin \
1248: --disable-shared --enable-static --enable-threads \
1249: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1250: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1251: LDFLAGS=\"$LDFLAGS\""
1252: C_STANDARD=-std=gnu99
1253: ELF=
1254: break ;;
1255:
1256: Cygwin)
1257: EXPORT_DYNAMIC=-Wl,--export-all-symbols
1258: NESTED_FUNCTIONS=
1259: ac_configure_args="$ac_configure_args --with-readline=builtin \
1260: --disable-shared --enable-static --enable-threads \
1261: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1262: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1263: LDFLAGS=\"$LDFLAGS\""
1264: C_STANDARD=-std=gnu99
1265: ELF=
1266: break ;;
1267:
1268: Interix)
1269: EXPORT_DYNAMIC=-Wl,--export-all-symbols
1270: NESTED_FUNCTIONS=
1271: ac_configure_args="$ac_configure_args --with-readline=builtin \
1272: --disable-shared --enable-static --enable-threads \
1273: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1274: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1275: LDFLAGS=\"$LDFLAGS\""
1276: C_STANDARD=-std=gnu99
1277: ELF=
1278: break;;
1279:
1280: AIX)
1281: EXPORT_DYNAMIC=-Wl,--export-dynamic
1282: NESTED_FUNCTIONS=
1283: ac_configure_args="$ac_configure_args --with-readline=builtin \
1284: --disable-shared --enable-static --enable-threads \
1285: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1286: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1287: LDFLAGS=\"$LDFLAGS\""
1288: C_STANDARD=-std=gnu99
1289: ELF=
1290: break ;;
1291:
1292: OS/2)
1293: if test $FORCED_FINAL_ENCODING -eq 0; then \
1294: FINAL_ENCODING=CP850; \
1.47 bertrand 1295: FORCED_FINAL_ENCODING=1;\
1.1 bertrand 1296: fi;
1297: OS=OS2
1298: NESTED_FUNCTIONS=
1299: EXPORT_DYNAMIC=-Zmap
1300: ac_configure_args="$ac_configure_args --without-readline \
1301: --without-cairo --disable-shared --enable-static \
1302: --enable-threads \
1303: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1304: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1305: LDFLAGS=\"$LDFLAGS\""
1306: C_STANDARD=
1307: ELF=
1308: break;;
1309:
1310: OpenBSD)
1311: if test $FORCED_FINAL_ENCODING -eq 0; then \
1312: FINAL_ENCODING=UTF-8; \
1.47 bertrand 1313: FORCED_FINAL_ENCODING=1;\
1.1 bertrand 1314: fi;
1315: EXPORT_DYNAMIC=-Wl,--export-dynamic
1316: NESTED_FUNCTIONS=
1317: ac_configure_args="$ac_configure_args --with-readline=builtin \
1318: --disable-shared --enable-static --enable-threads \
1319: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1320: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1321: LDFLAGS=\"$LDFLAGS\""
1322: C_STANDARD=-std=gnu99
1323: ELF=
1324: break;;
1325:
1326: SunOS)
1327: EXPORT_DYNAMIC=-Wl,--export-dynamic
1328: NESTED_FUNCTIONS=
1329:
1330: ac_configure_args="$ac_configure_args --with-readline=builtin \
1331: --disable-shared --enable-static --enable-threads \
1332: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1333: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1334: LDFLAGS=\"$LDFLAGS\""
1335: C_STANDARD=-std=gnu99
1336: MALLOC=-lumem
1337: ELF=
1338: break ;;
1339:
1340: NetBSD)
1341: EXPORT_DYNAMIC=-Wl,--export-dynamic
1342: NESTED_FUNCTIONS=
1343:
1344: ac_configure_args="$ac_configure_args --with-readline=builtin \
1345: --disable-shared --enable-static --enable-threads \
1346: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1347: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1348: LDFLAGS=\"$LDFLAGS\""
1349: C_STANDARD=-std=gnu99
1350: GCCBIN=`which gcc`
1351: GCCLIB=`dirname $GCCBIN`/../lib
1352: ELF="-Wl,-R/usr/pkg/lib -Wl,-R$GCCLIB"
1353: break ;;
1354:
1355: *)
1356: EXPORT_DYNAMIC=-Wl,--export-dynamic
1357: NESTED_FUNCTIONS=
1358:
1359: ac_configure_args="$ac_configure_args --with-readline=builtin \
1360: --disable-shared --enable-static --enable-threads \
1361: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1362: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1363: LDFLAGS=\"$LDFLAGS\""
1364: C_STANDARD=-std=gnu99
1365: ELF=
1366: break ;;
1.5 bertrand 1367: esac
1368:
1.109 bertrand 1369: dnl Correction d'un problème de compilation pour GNUplot 5.0.0
1370: ac_configure_args="$ac_configure_args --disable-wxwidgets"
1.130 bertrand 1371: dnl Correction d'un problème d'ABI avec readline
1.285 bertrand 1372: dnl ac_configure_args="$ac_configure_args \
1373: dnl --with-abi-version=5.9 --with-rel-version=5.9"
1.109 bertrand 1374:
1.5 bertrand 1375: case $OS in
1376: OS2)
1377: WHOLE_LIB1=""
1378: WHOLE_LIB2=""
1.6 bertrand 1379: LIB_PREFIX=""
1.5 bertrand 1380: break ;;
1.1 bertrand 1381:
1.5 bertrand 1382: *)
1383: WHOLE_LIB1="-Wl,-whole-archive"
1384: WHOLE_LIB2="-Wl,-no-whole-archive"
1.6 bertrand 1385: LIB_PREFIX="lib"
1.5 bertrand 1386: break ;;
1.1 bertrand 1387: esac
1388:
1.173 bertrand 1389: BROKEN_SIGSEGV=-UBROKEN_SIGSEGV
1390: BUILD_SIGSEGV=$SIGSEGV
1.178 bertrand 1391: if test x"$LIB_PREFIX" = x"lib"; then
1392: LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/libsigsegv.a
1393: else
1394: LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/sigsegv.a
1395: fi
1.175 bertrand 1396: INCSIGSEGV="-I\$(top_builddir)/tools/$SIGSEGV/src"
1.176 bertrand 1397: CYGWIN_LDFLAGS=
1.173 bertrand 1398:
1.12 bertrand 1399: case $HOST in
1.33 bertrand 1400: x86_64-*-linux-gnu)
1.12 bertrand 1401: ARCH=amd64
1402: break ;;
1403:
1.33 bertrand 1404: i?86-*-linux-gnu)
1.12 bertrand 1405: ARCH=i386
1406: break ;;
1407:
1.24 bertrand 1408: arm-unknown-linux-gnueabi)
1409: ARCH=armel
1410: break;;
1411:
1.58 bertrand 1412: mips*el-unknown-linux-gnu)
1.53 bertrand 1413: ARCH=mipsel
1414: break;;
1415:
1.176 bertrand 1416: x86_64-*-cygwin)
1.173 bertrand 1417: BROKEN_SIGSEGV=-DBROKEN_SIGSEGV
1.174 bertrand 1418: BUILD_SIGSEGV=
1.173 bertrand 1419: INCSIGSEGV=
1420: LIBSIGSEGV=
1421: ARCH=$(echo $HOST | cut -f1 -d-)
1.177 bertrand 1422: CYGWIN_LDFLAGS=-Wl,--allow-multiple-definition \
1423: -Wl,--out-implib,rpl.exe.a
1.173 bertrand 1424: break;;
1425:
1.12 bertrand 1426: *)
1.72 bertrand 1427: ARCH=$(echo $HOST | cut -f1 -d-)
1.12 bertrand 1428: break ;;
1429: esac
1430:
1.173 bertrand 1431: AC_SUBST(INCSIGSEGV)
1432: AC_SUBST(LIBSIGSEGV)
1.5 bertrand 1433: AC_SUBST(WHOLE_LIB1)
1434: AC_SUBST(WHOLE_LIB2)
1.6 bertrand 1435: AC_SUBST(LIB_PREFIX)
1.176 bertrand 1436: AC_SUBST(CYGWIN_LDFLAGS)
1.5 bertrand 1437:
1.1 bertrand 1438: AC_SUBST(C_STANDARD)
1439: AC_SUBST(EXPORT_DYNAMIC)
1.170 bertrand 1440: AC_SUBST(NO_EXPORT_DYNAMIC)
1.1 bertrand 1441: AC_SUBST(NESTED_FUNCTIONS)
1442: AC_SUBST(SEMAPHORES_NOMMES)
1443: AC_SUBST(IPCS_SYSV)
1444: AC_SUBST(SEMUN)
1445: AC_SUBST(IPV6)
1446: AC_SUBST(BSH_PATH)
1447: AC_SUBST(ELF)
1.12 bertrand 1448: AC_SUBST(ARCH)
1.1 bertrand 1449:
1450: AC_SUBST(NCURSES)
1451: AC_SUBST(READLINE)
1452: AC_SUBST(UNITS)
1453: AC_SUBST(GSL)
1454: AC_SUBST(GPP)
1455: AC_SUBST(GNUPLOT)
1456: AC_SUBST(FILE)
1457: AC_SUBST(ICONV)
1458: AC_SUBST(SQLITE)
1459: AC_SUBST(OPENSSL)
1460: AC_SUBST(LIBXPM)
1461: AC_SUBST(OPENMOTIF)
1462: AC_SUBST(BUILD_OPENMOTIF)
1463: AC_SUBST(SIGSEGV)
1464: AC_SUBST(FINAL_ENCODING)
1.47 bertrand 1465: AC_SUBST(FORCED_FINAL_ENCODING)
1.1 bertrand 1466: AC_SUBST(DATE)
1467: AC_SUBST(EXT_SQL)
1468: AC_SUBST(MALLOC)
1469: AC_SUBST(GMP)
1470: AC_SUBST(MPFR)
1.137 bertrand 1471: AC_SUBST(MPFI)
1.1 bertrand 1472: AC_SUBST(NTL)
1473: AC_SUBST(PARI)
1474: AC_SUBST(GIAC)
1475: AC_SUBST(INCMOTIF)
1476: AC_SUBST(LIBMOTIF)
1.197 bertrand 1477: AC_SUBST(MODULE_MOTIF)
1.62 bertrand 1478: AC_SUBST(ZLIB)
1.173 bertrand 1479: AC_SUBST(BUILD_SIGSEGV)
1480: AC_SUBST(BROKEN_SIGSEGV)
1.1 bertrand 1481:
1482: AC_SUBST(CFLAGS)
1483: AC_SUBST(CXXFLAGS)
1484: AC_SUBST(FFLAGS)
1485: AC_SUBST(FCFLAGS)
1486: AC_SUBST(LDFLAGS)
1.23 bertrand 1487: AC_SUBST(SYSROOT)
1.25 bertrand 1488: AC_SUBST(SYSROOT2)
1.1 bertrand 1489:
1.16 bertrand 1490: AC_SUBST(DEBPQ)
1491: AC_SUBST(DEBMYSQL)
1492: AC_SUBST(DEBVIM)
1493:
1.6 bertrand 1494: if test $RECURSIVE = yes; then
1495: AC_CONFIG_SUBDIRS(tools/$NCURSES)
1496: AC_CONFIG_SUBDIRS(tools/$READLINE)
1497: AC_CONFIG_SUBDIRS(tools/$GSL)
1498: AC_CONFIG_SUBDIRS(tools/$GPP)
1499: AC_CONFIG_SUBDIRS(tools/$FILE)
1500: AC_CONFIG_SUBDIRS(tools/$ICONV)
1501: AC_CONFIG_SUBDIRS(tools/$SQLITE)
1502: AC_CONFIG_SUBDIRS(tools/$UNITS)
1.174 bertrand 1503: if test x$BUILD_SIGSEGV = x$SIGSEGV; then
1504: AC_CONFIG_SUBDIRS(tools/$SIGSEGV)
1505: fi
1.6 bertrand 1506: fi
1.1 bertrand 1507:
1508: AC_CONFIG_FILES(Makefile)
1.59 bertrand 1509: AC_CONFIG_FILES(HEADER)
1.1 bertrand 1510: AC_CONFIG_FILES(tools/Makefile)
1511: AC_CONFIG_FILES(src/Makefile)
1512: AC_CONFIG_FILES(man/Makefile)
1513: AC_CONFIG_FILES(man/fr_FR/Makefile)
1514: AC_CONFIG_FILES(doc/Makefile)
1515: AC_CONFIG_FILES(scripts/Makefile)
1516: AC_CONFIG_FILES(scripts/mkrplso)
1517: AC_CONFIG_FILES(scripts/rplcc)
1518: AC_CONFIG_FILES(scripts/rpllink)
1519: AC_CONFIG_FILES(rpltags/Makefile)
1520: AC_CONFIG_FILES(rpliconv/Makefile)
1521: AC_CONFIG_FILES(rplsums/Makefile)
1522: AC_CONFIG_FILES(rplcas/Makefile)
1523: AC_CONFIG_FILES(rplawk/Makefile)
1524: AC_CONFIG_FILES(lapack/lapack/Makefile)
1525: AC_CONFIG_FILES(lapack/blas/Makefile)
1.196 bertrand 1526: AC_CONFIG_FILES(modules/motif/Makefile)
1.195 bertrand 1527: AC_CONFIG_FILES(modules/sets/Makefile)
1.1 bertrand 1528:
1529: AC_CONFIG_FILES(man/rpl.1)
1530: AC_CONFIG_FILES(man/rplcc.1)
1531: AC_CONFIG_FILES(man/rpllink.1)
1532: AC_CONFIG_FILES(man/rpltags.1)
1533: AC_CONFIG_FILES(man/mkrplso.1)
1534: AC_CONFIG_FILES(man/fr_FR/rpl.1)
1535: AC_CONFIG_FILES(man/fr_FR/rplcc.1)
1536: AC_CONFIG_FILES(man/fr_FR/rpllink.1)
1537: AC_CONFIG_FILES(man/fr_FR/rpltags.1)
1538: AC_CONFIG_FILES(man/fr_FR/mkrplso.1)
1539:
1.12 bertrand 1540: AC_CONFIG_FILES(DEBIAN/control)
1541:
1.1 bertrand 1542: AC_OUTPUT
CVSweb interface <joel.bertrand@systella.fr>