Annotation of rpl/configure.ac, revision 1.296
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.295 bertrand 20: OPENSSL=openssl-3.3.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.296 ! bertrand 751: dnl AC_CHECK_LIB(gomp, omp_get_num_procs,, AC_MSG_ERROR([Can not find libgomp !]))
! 752: dnl OPENMP=-lgomp
! 753: dnl 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
810: fi
811:
812: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
1.289 bertrand 813: AC_MSG_CHECKING(for libmysql includes in /usr/include/mariadb)
814: saved_CFLAGS="$CFLAGS"
815: CFLAGS="$CFLAGS $libMySQLinc/mariadb"
816: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 bertrand 817: libMySQLinc=$libMySQLinc/mariadb],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.289 bertrand 818: CFLAGS=$saved_CFLAGS
819: fi
820:
821: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
1.1 bertrand 822: AC_MSG_CHECKING(for libmysql includes in /usr/local/include)
823: saved_CFLAGS="$CFLAGS"
824: CFLAGS="$CFLAGS $libMySQLinc/../local/include"
825: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.290 bertrand 826: libMySQLinc=$libMySQLinc/../local/include],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 827: CFLAGS=$saved_CFLAGS
1.290 bertrand 828: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
829: libMySQLlib=$libMySQLlib/../local/lib
830: fi;
1.1 bertrand 831: fi
832:
833: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
834: AC_MSG_CHECKING(for libmysql includes in /usr/local/include/mysql)
835: saved_CFLAGS="$CFLAGS"
836: CFLAGS="$CFLAGS $libMySQLinc/../local/include/mysql"
837: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.291 bertrand 838: libMySQLinc=$libMySQLinc/../local/include/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 839: CFLAGS=$saved_CFLAGS
1.290 bertrand 840: if test "$MYSQL_SUPPORT" != "-UMYSQL_SUPPORT"; then
841: libMySQLlib=$libMySQLlib/../local/lib
842: fi;
1.1 bertrand 843: fi
844: else
845: if test "x$with_mysql" != xno; then
846: libMySQLinc="-I$with_mysql/include"
847: libMySQLlib="$with_mysql/lib"
848:
849: AC_MSG_CHECKING(for libmysql includes in $with_mysql)
850: saved_CFLAGS="$CFLAGS"
851: CFLAGS="$CFLAGS $libMySQLinc"
852: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
853: libMySQLinc=$libMySQLinc/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
854: CFLAGS=$saved_CFLAGS
855:
856: if test "$MYSQL_SUPPORT" = "-UMYSQL_SUPPORT"; then
857: AC_MSG_CHECKING(for libmysql includes in $with_mysql/mysql)
858: saved_CFLAGS="$CFLAGS"
859: CFLAGS="$CFLAGS $libMySQLinc/mysql"
860: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "mysql.h"]], [[]])],[AC_MSG_RESULT([yes]); MYSQL_SUPPORT="-DMYSQL_SUPPORT";
1.291 bertrand 861: libMySQLinc=$libMySQLinc/mysql],[AC_MSG_RESULT([no]); MYSQL_SUPPORT="-UMYSQL_SUPPORT"])
1.1 bertrand 862: CFLAGS=$saved_CFLAGS
863: fi
864: else
865: MYSQL_SUPPORT="-UMYSQL_SUPPORT"
866: fi
867: fi
868:
869: if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPPORT"; then
870: MYSQL_LIB=no
871:
872: if test $MYSQL_LIB = no; then
873: AC_MSG_CHECKING(for libmysql libraries in $libMySQLlib)
874: saved_LIBS="$LIBS"
875: if test $STATIC = no; then
1.291 bertrand 876: LIBS="$LIBS -L/$libMySQLlib -lmysqlclient_r -lz -ldl -lm -lssl -lcrypto $libMySQLinc"
1.1 bertrand 877: else
1.291 bertrand 878: LIBS="$LIBS $libMySQLlib/libmysqlclient_r.a -lz -ldl -lm -lssl -lcrypto $libMySQLinc"
1.1 bertrand 879: fi
880: 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"])
881: LIBS=$saved_LIBS;
882: if test $STATIC = no; then
1.294 bertrand 883: libMySQLlib="-L/$libMySQLlib -lmysqlclient_r -lssl -lcrypto"
1.1 bertrand 884: else
1.292 bertrand 885: libMySQLlib="$libMySQLlib/libmysqlclient_r.a -lssl -lcrypto"
1.1 bertrand 886: EXT_SQL="$EXT_SQL $libMySQLlib"
887: fi
888: fi
889:
890: if test $MYSQL_LIB = no; then
891: MYSQL_SUPPORT="-UMYSQL_SUPPORT"
892: fi
893: fi
894:
1.16 bertrand 895: DEBMYSQL=
896:
1.1 bertrand 897: if test "$MYSQL_SUPPORT" != "-DMYSQL_SUPPORT"; then
898: libMySQLinc=
899: libMySQLlib=
1.16 bertrand 900: else
1.17 bertrand 901: DEBMYSQL=", libmysqlclient18"
1.1 bertrand 902: fi
903:
904: AC_SUBST(MYSQL_SUPPORT)
905: AC_SUBST(libMySQLinc)
906: AC_SUBST(libMySQLlib)
907:
908: POSTGRESQL_SUPPORT=-UPOSTGRESQL_SUPPORT
909: AC_ARG_WITH(postgresql,
910: [ --with-postgresql=PATH specify directory for installed postgresql],
911: [], [with_postgresql=check])
912:
913: # with_postgresql : check [pas défini], yes [uniquement --with],
914: # no [--without], valeur [--with=valeur].
915:
916: if test "x$with_postgresql" = xcheck -o "x$with_postgresql" = xyes; then
917: libPgSQLinc="-I/usr/include"
918: libPgSQLlib="/usr/lib"
919:
920: AC_MSG_CHECKING(for libpq includes in /usr/include)
921: saved_CFLAGS="$CFLAGS"
922: CFLAGS="$CFLAGS $libPgSQLinc"
923: 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"])
924: CFLAGS=$saved_CFLAGS
925:
926: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
927: AC_MSG_CHECKING(for libpq includes in /usr/include/postgresql)
928: saved_CFLAGS="$CFLAGS"
929: CFLAGS="$CFLAGS $libPgSQLinc/postgresql"
930: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
931: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
932: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
933: CFLAGS=$saved_CFLAGS
934: libPgSQLinc=$libPgSQLinc/postgresql
935: fi
936:
937: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
938: AC_MSG_CHECKING(for libpq includes in /usr/include/pgsql)
939: saved_CFLAGS="$CFLAGS"
940: CFLAGS="$CFLAGS $libPgSQLinc/pgsql"
941: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
942: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
943: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
944: CFLAGS=$saved_CFLAGS
945: libPgSQLinc=$libPgSQLinc/pgsql
946: fi
947:
948: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
949: AC_MSG_CHECKING(for libpq includes in /usr/local/include)
950: saved_CFLAGS="$CFLAGS"
951: CFLAGS="$CFLAGS $libPgSQLinc/../local/include"
952: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
953: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
954: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
955: CFLAGS=$saved_CFLAGS
956: libPgSQLinc=$libPgSQLinc/../local/include
957: libPgSQLlib=$libPgSQLlib/../local/lib
958: fi
959:
960: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
961: AC_MSG_CHECKING(for libpq includes in /usr/local/include/postgresql)
962: saved_CFLAGS="$CFLAGS"
963: CFLAGS="$CFLAGS $libPgSQLinc/../local/include/postgresql"
964: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
965: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
966: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
967: CFLAGS=$saved_CFLAGS
968: libPgSQLinc=$libPgSQLinc/../local/include/postgresql
969: libPgSQLlib=$libPgSQLlib/../local/lib
970: fi
971:
972: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
973: AC_MSG_CHECKING(for libpq includes in /usr/local/include/pgsql)
974: saved_CFLAGS="$CFLAGS"
975: CFLAGS="$CFLAGS $libPgSQLinc/../local/include/pgsql"
976: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
977: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
978: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
979: CFLAGS=$saved_CFLAGS
980: libPgSQLinc=$libPgSQLinc/local/include/pgsql
981: libPgSQLlib=$libPgSQLlib/../local/lib
982: fi
983: else
984: if test "x$with_postgresql" != xno; then
985: libPgSQLinc="-I$with_postgresql/include"
986: libPgSQLlib="$with_postgresql/lib"
987:
988: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc)
989: saved_CFLAGS="$CFLAGS"
990: CFLAGS="$CFLAGS $libPgSQLinc"
991: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
992: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
993: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
994: CFLAGS=$saved_CFLAGS
995:
996: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
997: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc/postgresql)
998: saved_CFLAGS="$CFLAGS"
999: CFLAGS="$CFLAGS $libPgSQLinc/postgresql"
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: libPgSQLinc=$libPgSQLinc/postgresql
1005: fi
1006:
1007: if test "$POSTGRESQL_SUPPORT" = "-UPOSTGRESQL_SUPPORT"; then
1008: AC_MSG_CHECKING(for libpq includes in $libPgSQLinc/pgsql)
1009: saved_CFLAGS="$CFLAGS"
1010: CFLAGS="$CFLAGS $libPgSQLinc/pgsql"
1011: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[]])],[AC_MSG_RESULT([yes]);
1012: POSTGRESQL_SUPPORT="-DPOSTGRESQL_SUPPORT"],[AC_MSG_RESULT([no]);
1013: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"])
1014: CFLAGS=$saved_CFLAGS
1015: libPgSQLinc=$libPgSQLinc/pgsql
1016: fi
1017: else
1018: POSTGRESQL_SUPPORT="-UPOSTGRESQL_SUPPORT"
1019: fi
1020: fi
1021:
1022: if test "$POSTGRESQL_SUPPORT" = "-DPOSTGRESQL_SUPPORT"; then
1023: POSTGRESQL_LIB=no
1024:
1025: if test $POSTGRESQL_LIB = no; then
1026: AC_MSG_CHECKING(for libpq libraries in $libPgSQLlib)
1027: saved_LIBS="$LIBS"
1028: if test $STATIC = no; then
1029: LIBS="$LIBS -L/$libPgSQLlib $libPgSQLinc -lpq"
1030: else
1031: LIBS="$LIBS $libPgSQLlib/libpq.a $libPgSQLinc"
1032: fi
1033: AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "libpq-fe.h"]], [[PGconn *conn; const char *conninfo="dbname=postgres"; conn =
1034: PQconnectdb(conninfo);]])],[AC_MSG_RESULT([yes]); POSTGRESQL_LIB="yes"],[AC_MSG_RESULT([no]); POSTGRESQL_LIB="no"])
1035: LIBS=$saved_LIBS;
1036: if test $STATIC = no; then
1037: libPgSQLlib="-L/$libPgSQLlib -lpq"
1038: else
1039: libPgSQLlib="$libPgSQLlib/libpq.a"
1040: EXT_SQL="$EXT_SQL $libPgSQLlib"
1041: fi
1042: fi
1043: fi
1044:
1.16 bertrand 1045: DEBPQ=
1046:
1.1 bertrand 1047: if test "$POSTGRESQL_SUPPORT" != "-DPOSTGRESQL_SUPPORT"; then
1048: libPgSQLinc=
1049: libPgSQLlib=
1.16 bertrand 1050: else
1.17 bertrand 1051: DEBPQ=", libpq5"
1.1 bertrand 1052: fi
1053:
1054: AC_SUBST(POSTGRESQL_SUPPORT)
1055: AC_SUBST(libPgSQLinc)
1056: AC_SUBST(libPgSQLlib)
1057:
1058: # with_postgresql : check [pas défini], yes [uniquement --with],
1059: # no [--without], valeur [--with=valeur].
1060: AC_ARG_WITH(bourne_shell,
1061: [ --with-bourne-shell=PATH specify path for OS/2 bourne shell],
1062: [], [with_bourne_shell=no])
1063:
1064: if test "x$with_bourne_shell" = xyes; then
1065: AC_MSG_ERROR([You have to specify a valide shell path !])
1066: fi
1067:
1068: if test "x$with_bourne_shell" = xno; then
1069: if test $(uname) = "OS/2"; then
1070: AC_MSG_ERROR([With OS/2 or eComstation, you have to specify a valide
1071: shell path with --with-bourne-shell=PATH !])
1072: fi
1073:
1074: BSH_PATH=
1075: else
1076: if test ! -x $with_bourne_shell; then
1077: AC_MSG_ERROR([$with_bourne_shell is not executable !])
1078: fi
1079:
1080: if test $(uname) = "OS/2"; then
1081: with_os2_bourne_shell=$(echo $with_bourne_shell | \
1082: sed -e '1,$s/\//\\\\\\\\/g')
1083: BSH_PATH=-DBOURNE_SHELL=\"\\\"$with_os2_bourne_shell\\\"\"
1084: else
1085: AC_MSG_WARN([--with-bourne-shell ignored])
1086: BSH_PATH=
1087: fi
1088: fi
1089:
1090: dnl Checks for sizes
1091: AC_CHECK_SIZEOF(void *, 4)
1092: AC_CHECK_SIZEOF(char, 1)
1093: AC_CHECK_SIZEOF(short int, 2)
1094: AC_CHECK_SIZEOF(int, 4)
1095: AC_CHECK_SIZEOF(long int, 4)
1096: AC_CHECK_SIZEOF(long long int, 8)
1097: AC_CHECK_SIZEOF(float, 4)
1098: AC_CHECK_SIZEOF(double, 8)
1099: AC_CHECK_SIZEOF(long double, 12)
1100:
1101: dnl Checks for header files.
1102: AC_HEADER_DIRENT
1103: AC_HEADER_STDC
1104: AC_HEADER_SYS_WAIT
1105: AC_CHECK_HEADERS(dlfcn.h fcntl.h math.h pwd.h signal.h string.h termios.h \
1106: time.h unistd.h sys/resource.h sys/stat.h sys/time.h sys/timeb.h \
1107: sys/types.h sys/select.h sys/wait.h stdio.h stdlib.h pthread.h)
1108:
1109: dnl Checks for typedefs, structures, and compiler characteristics.
1110: AC_C_CONST
1111: AC_TYPE_UID_T
1112: AC_TYPE_PID_T
1113: AC_TYPE_SIZE_T
1114: AC_HEADER_TIME
1115: AC_STRUCT_TM
1116:
1117: dnl Checks for library functions.
1118: AC_DIAGNOSE([obsolete],[your code may safely assume C89 semantics that RETSIGTYPE is void.
1119: Remove this warning and the `AC_CACHE_CHECK' when you adjust the code.])dnl
1120: AC_CACHE_CHECK([return type of signal handlers],[ac_cv_type_signal],[AC_COMPILE_IFELSE(
1121: [AC_LANG_PROGRAM([#include <sys/types.h>
1122: #include <signal.h>
1123: ],
1124: [return *(signal (0, 0)) (0) == 1;])],
1125: [ac_cv_type_signal=int],
1126: [ac_cv_type_signal=void])])
1127: AC_DEFINE_UNQUOTED([RETSIGTYPE],[$ac_cv_type_signal],[Define as the return type of signal handlers
1128: (`int' or `void').])
1129:
1130: AC_FUNC_STRCOLL
1131: AC_FUNC_STRFTIME
1132: AC_FUNC_VPRINTF
1133: AC_CHECK_FUNCS(ftime getcwd putenv select strcspn strdup \
1134: strerror strspn strstr strtod)
1135:
1136: dnl Check for OpenSSL os/comp
1137: AC_ARG_WITH(openssl_arch,
1138: [ --with-openssl-arch=ARCH specify os and compiler for openssl (ARCH or list)],
1139: [], [with_openssl_arch=none])
1140:
1141: if test $(uname) = "OS/2"; then
1142: bash -c "cd tools/$OPENSSL && os2/OS2-EMX.cmd"
1143: else
1.23 bertrand 1144: if test $build = $host; then
1145: OPENSSL_CROSS=
1146: else
1147: OPENSSL_CROSS="AR=$host-ar RANLIB=$host-ranlib CC=$host-gcc NM=$host-nm"
1148: fi
1149: echo $build $host
1150: echo $OPENSSL_CROSS
1.1 bertrand 1151: if test "x$with_openssl_arch" = xnone; then
1.23 bertrand 1152: (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./config no-asm")
1.1 bertrand 1153: elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then
1154: (cd tools/$OPENSSL && ./Configure)
1155: AC_MSG_ERROR([OS/COMP informations are required!])
1156: elif test "x$with_openssl_arch" = xlist; then
1157: (cd tools/$OPENSSL && ./Configure)
1158: AC_MSG_ERROR([Please specify OS and Architecture])
1159: else
1.23 bertrand 1160: (cd tools/$OPENSSL && sh -c "$OPENSSL_CROSS ./Configure no-asm \
1161: $with_openssl_arch")
1.1 bertrand 1162: fi
1163: fi
1164:
1165: if test "$MYGNUPLOT" = "yes"; then
1166: if test ! -d "$srcdir"/tools/$GNUPLOT; then
1167: gunzip -c "$srcdir"/tools/$GNUPLOT.tar.gz | \
1168: (cd "$srcdir/tools" && tar -xf -)
1169: fi
1.6 bertrand 1170:
1171: if test $RECURSIVE = yes; then
1172: AC_CONFIG_SUBDIRS(tools/$GNUPLOT)
1173: fi
1174:
1.1 bertrand 1175: GNUPLOT_COMPILATION=$GNUPLOT
1176: else
1177: GNUPLOT_COMPILATION=
1178: fi
1179:
1180: AC_SUBST(GNUPLOT_COMPILATION)
1181:
1.3 bertrand 1182: HOST=$target
1.1 bertrand 1183: AC_SUBST(HOST)
1.25 bertrand 1184: BUILD=$build
1185: AC_SUBST(BUILD)
1.1 bertrand 1186:
1.2 bertrand 1187: my_save_cflags="$CFLAGS"
1188: FPCFLAGS=""
1.1 bertrand 1189:
1.2 bertrand 1190: CFLAGS=-malign-double
1191: AC_MSG_CHECKING([whether CC supports -malign-double])
1192: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1193: [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -malign-double"],
1194: [AC_MSG_RESULT([no])])
1.218 bertrand 1195: #CFLAGS=-mieee-fp
1196: #AC_MSG_CHECKING([whether CC supports -mieee-fp])
1197: #AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1198: # [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee-fp"],
1199: # [AC_MSG_RESULT([no])])
1.2 bertrand 1200: CFLAGS=-mieee
1201: AC_MSG_CHECKING([whether CC supports -mieee])
1202: AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
1203: [AC_MSG_RESULT([yes]); FPCFLAGS="$FPCFLAGS -mieee"],
1204: [AC_MSG_RESULT([no])])
1205: CFLAGS=$my_save_cflags
1206:
1207: CFLAGS="$CFLAGS $FPCFLAGS -Wall -funsigned-char -Wno-pointer-sign"
1208: FFLAGS="$FFLAGS $FPCFLAGS -Wall -fno-f2c"
1209: FCFLAGS="$FCFLAGS $FPCFLAGS -Wall -fno-f2c"
1210: CXXFLAGS="$CXXFLAGS $FPCFLAGS -Wall -funsigned-char"
1.1 bertrand 1211:
1.2 bertrand 1212: case $target_os in
1.1 bertrand 1213:
1214: cygwin*)
1215: OS=Cygwin
1216: break ;;
1217:
1218: interix*)
1219: OS=Interix
1220: break ;;
1221:
1222: *)
1223: OS=$(uname)
1224: break ;;
1225:
1226: esac
1227:
1228: AC_SUBST(OS)
1229:
1230: MALLOC=
1.170 bertrand 1231: NO_EXPORT_DYNAMIC=-Wl,--no-export-dynamic
1.1 bertrand 1232:
1233: case $OS in
1234: Darwin)
1235: EXPORT_DYNAMIC=-Wl,-flat_namespace
1236: NESTED_FUNCTIONS=-fnested-functions
1237: CXXFLAGS="$CXXFLAGS -D_GLIBCXX_FULLY_DYNAMIC_STRING"
1238: ac_configure_args="$ac_configure_args --with-readline=builtin \
1239: --disable-shared --enable-static --enable-threads \
1240: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1241: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1242: LDFLAGS=\"$LDFLAGS\""
1243: C_STANDARD=-std=gnu99
1244: ELF=
1245: break ;;
1246:
1247: Cygwin)
1248: EXPORT_DYNAMIC=-Wl,--export-all-symbols
1249: NESTED_FUNCTIONS=
1250: ac_configure_args="$ac_configure_args --with-readline=builtin \
1251: --disable-shared --enable-static --enable-threads \
1252: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1253: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1254: LDFLAGS=\"$LDFLAGS\""
1255: C_STANDARD=-std=gnu99
1256: ELF=
1257: break ;;
1258:
1259: Interix)
1260: EXPORT_DYNAMIC=-Wl,--export-all-symbols
1261: NESTED_FUNCTIONS=
1262: ac_configure_args="$ac_configure_args --with-readline=builtin \
1263: --disable-shared --enable-static --enable-threads \
1264: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1265: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1266: LDFLAGS=\"$LDFLAGS\""
1267: C_STANDARD=-std=gnu99
1268: ELF=
1269: break;;
1270:
1271: AIX)
1272: EXPORT_DYNAMIC=-Wl,--export-dynamic
1273: NESTED_FUNCTIONS=
1274: ac_configure_args="$ac_configure_args --with-readline=builtin \
1275: --disable-shared --enable-static --enable-threads \
1276: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1277: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1278: LDFLAGS=\"$LDFLAGS\""
1279: C_STANDARD=-std=gnu99
1280: ELF=
1281: break ;;
1282:
1283: OS/2)
1284: if test $FORCED_FINAL_ENCODING -eq 0; then \
1285: FINAL_ENCODING=CP850; \
1.47 bertrand 1286: FORCED_FINAL_ENCODING=1;\
1.1 bertrand 1287: fi;
1288: OS=OS2
1289: NESTED_FUNCTIONS=
1290: EXPORT_DYNAMIC=-Zmap
1291: ac_configure_args="$ac_configure_args --without-readline \
1292: --without-cairo --disable-shared --enable-static \
1293: --enable-threads \
1294: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1295: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1296: LDFLAGS=\"$LDFLAGS\""
1297: C_STANDARD=
1298: ELF=
1299: break;;
1300:
1301: OpenBSD)
1302: if test $FORCED_FINAL_ENCODING -eq 0; then \
1303: FINAL_ENCODING=UTF-8; \
1.47 bertrand 1304: FORCED_FINAL_ENCODING=1;\
1.1 bertrand 1305: fi;
1306: EXPORT_DYNAMIC=-Wl,--export-dynamic
1307: NESTED_FUNCTIONS=
1308: ac_configure_args="$ac_configure_args --with-readline=builtin \
1309: --disable-shared --enable-static --enable-threads \
1310: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1311: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1312: LDFLAGS=\"$LDFLAGS\""
1313: C_STANDARD=-std=gnu99
1314: ELF=
1315: break;;
1316:
1317: SunOS)
1318: EXPORT_DYNAMIC=-Wl,--export-dynamic
1319: NESTED_FUNCTIONS=
1320:
1321: ac_configure_args="$ac_configure_args --with-readline=builtin \
1322: --disable-shared --enable-static --enable-threads \
1323: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1324: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1325: LDFLAGS=\"$LDFLAGS\""
1326: C_STANDARD=-std=gnu99
1327: MALLOC=-lumem
1328: ELF=
1329: break ;;
1330:
1331: NetBSD)
1332: EXPORT_DYNAMIC=-Wl,--export-dynamic
1333: NESTED_FUNCTIONS=
1334:
1335: ac_configure_args="$ac_configure_args --with-readline=builtin \
1336: --disable-shared --enable-static --enable-threads \
1337: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1338: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1339: LDFLAGS=\"$LDFLAGS\""
1340: C_STANDARD=-std=gnu99
1341: GCCBIN=`which gcc`
1342: GCCLIB=`dirname $GCCBIN`/../lib
1343: ELF="-Wl,-R/usr/pkg/lib -Wl,-R$GCCLIB"
1344: break ;;
1345:
1346: *)
1347: EXPORT_DYNAMIC=-Wl,--export-dynamic
1348: NESTED_FUNCTIONS=
1349:
1350: ac_configure_args="$ac_configure_args --with-readline=builtin \
1351: --disable-shared --enable-static --enable-threads \
1352: CFLAGS=\"$CFLAGS\" CXXFLAGS=\"$CXXFLAGS\" \
1353: FFLAGS=\"$FFLAGS\" FCFLAGS=\"$FCFLAGS\" \
1354: LDFLAGS=\"$LDFLAGS\""
1355: C_STANDARD=-std=gnu99
1356: ELF=
1357: break ;;
1.5 bertrand 1358: esac
1359:
1.109 bertrand 1360: dnl Correction d'un problème de compilation pour GNUplot 5.0.0
1361: ac_configure_args="$ac_configure_args --disable-wxwidgets"
1.130 bertrand 1362: dnl Correction d'un problème d'ABI avec readline
1.285 bertrand 1363: dnl ac_configure_args="$ac_configure_args \
1364: dnl --with-abi-version=5.9 --with-rel-version=5.9"
1.109 bertrand 1365:
1.5 bertrand 1366: case $OS in
1367: OS2)
1368: WHOLE_LIB1=""
1369: WHOLE_LIB2=""
1.6 bertrand 1370: LIB_PREFIX=""
1.5 bertrand 1371: break ;;
1.1 bertrand 1372:
1.5 bertrand 1373: *)
1374: WHOLE_LIB1="-Wl,-whole-archive"
1375: WHOLE_LIB2="-Wl,-no-whole-archive"
1.6 bertrand 1376: LIB_PREFIX="lib"
1.5 bertrand 1377: break ;;
1.1 bertrand 1378: esac
1379:
1.173 bertrand 1380: BROKEN_SIGSEGV=-UBROKEN_SIGSEGV
1381: BUILD_SIGSEGV=$SIGSEGV
1.178 bertrand 1382: if test x"$LIB_PREFIX" = x"lib"; then
1383: LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/libsigsegv.a
1384: else
1385: LIBSIGSEGV=\$\(top_builddir\)/tools/$SIGSEGV/src/.libs/sigsegv.a
1386: fi
1.175 bertrand 1387: INCSIGSEGV="-I\$(top_builddir)/tools/$SIGSEGV/src"
1.176 bertrand 1388: CYGWIN_LDFLAGS=
1.173 bertrand 1389:
1.12 bertrand 1390: case $HOST in
1.33 bertrand 1391: x86_64-*-linux-gnu)
1.12 bertrand 1392: ARCH=amd64
1393: break ;;
1394:
1.33 bertrand 1395: i?86-*-linux-gnu)
1.12 bertrand 1396: ARCH=i386
1397: break ;;
1398:
1.24 bertrand 1399: arm-unknown-linux-gnueabi)
1400: ARCH=armel
1401: break;;
1402:
1.58 bertrand 1403: mips*el-unknown-linux-gnu)
1.53 bertrand 1404: ARCH=mipsel
1405: break;;
1406:
1.176 bertrand 1407: x86_64-*-cygwin)
1.173 bertrand 1408: BROKEN_SIGSEGV=-DBROKEN_SIGSEGV
1.174 bertrand 1409: BUILD_SIGSEGV=
1.173 bertrand 1410: INCSIGSEGV=
1411: LIBSIGSEGV=
1412: ARCH=$(echo $HOST | cut -f1 -d-)
1.177 bertrand 1413: CYGWIN_LDFLAGS=-Wl,--allow-multiple-definition \
1414: -Wl,--out-implib,rpl.exe.a
1.173 bertrand 1415: break;;
1416:
1.12 bertrand 1417: *)
1.72 bertrand 1418: ARCH=$(echo $HOST | cut -f1 -d-)
1.12 bertrand 1419: break ;;
1420: esac
1421:
1.173 bertrand 1422: AC_SUBST(INCSIGSEGV)
1423: AC_SUBST(LIBSIGSEGV)
1.5 bertrand 1424: AC_SUBST(WHOLE_LIB1)
1425: AC_SUBST(WHOLE_LIB2)
1.6 bertrand 1426: AC_SUBST(LIB_PREFIX)
1.176 bertrand 1427: AC_SUBST(CYGWIN_LDFLAGS)
1.5 bertrand 1428:
1.1 bertrand 1429: AC_SUBST(C_STANDARD)
1430: AC_SUBST(EXPORT_DYNAMIC)
1.170 bertrand 1431: AC_SUBST(NO_EXPORT_DYNAMIC)
1.1 bertrand 1432: AC_SUBST(NESTED_FUNCTIONS)
1433: AC_SUBST(SEMAPHORES_NOMMES)
1434: AC_SUBST(IPCS_SYSV)
1435: AC_SUBST(SEMUN)
1436: AC_SUBST(IPV6)
1437: AC_SUBST(BSH_PATH)
1438: AC_SUBST(ELF)
1.12 bertrand 1439: AC_SUBST(ARCH)
1.1 bertrand 1440:
1441: AC_SUBST(NCURSES)
1442: AC_SUBST(READLINE)
1443: AC_SUBST(UNITS)
1444: AC_SUBST(GSL)
1445: AC_SUBST(GPP)
1446: AC_SUBST(GNUPLOT)
1447: AC_SUBST(FILE)
1448: AC_SUBST(ICONV)
1449: AC_SUBST(SQLITE)
1450: AC_SUBST(OPENSSL)
1451: AC_SUBST(LIBXPM)
1452: AC_SUBST(OPENMOTIF)
1453: AC_SUBST(BUILD_OPENMOTIF)
1454: AC_SUBST(SIGSEGV)
1455: AC_SUBST(FINAL_ENCODING)
1.47 bertrand 1456: AC_SUBST(FORCED_FINAL_ENCODING)
1.1 bertrand 1457: AC_SUBST(DATE)
1458: AC_SUBST(EXT_SQL)
1459: AC_SUBST(MALLOC)
1460: AC_SUBST(GMP)
1461: AC_SUBST(MPFR)
1.137 bertrand 1462: AC_SUBST(MPFI)
1.1 bertrand 1463: AC_SUBST(NTL)
1464: AC_SUBST(PARI)
1465: AC_SUBST(GIAC)
1466: AC_SUBST(INCMOTIF)
1467: AC_SUBST(LIBMOTIF)
1.197 bertrand 1468: AC_SUBST(MODULE_MOTIF)
1.62 bertrand 1469: AC_SUBST(ZLIB)
1.173 bertrand 1470: AC_SUBST(BUILD_SIGSEGV)
1471: AC_SUBST(BROKEN_SIGSEGV)
1.1 bertrand 1472:
1473: AC_SUBST(CFLAGS)
1474: AC_SUBST(CXXFLAGS)
1475: AC_SUBST(FFLAGS)
1476: AC_SUBST(FCFLAGS)
1477: AC_SUBST(LDFLAGS)
1.23 bertrand 1478: AC_SUBST(SYSROOT)
1.25 bertrand 1479: AC_SUBST(SYSROOT2)
1.1 bertrand 1480:
1.16 bertrand 1481: AC_SUBST(DEBPQ)
1482: AC_SUBST(DEBMYSQL)
1483: AC_SUBST(DEBVIM)
1484:
1.6 bertrand 1485: if test $RECURSIVE = yes; then
1486: AC_CONFIG_SUBDIRS(tools/$NCURSES)
1487: AC_CONFIG_SUBDIRS(tools/$READLINE)
1488: AC_CONFIG_SUBDIRS(tools/$GSL)
1489: AC_CONFIG_SUBDIRS(tools/$GPP)
1490: AC_CONFIG_SUBDIRS(tools/$FILE)
1491: AC_CONFIG_SUBDIRS(tools/$ICONV)
1492: AC_CONFIG_SUBDIRS(tools/$SQLITE)
1493: AC_CONFIG_SUBDIRS(tools/$UNITS)
1.174 bertrand 1494: if test x$BUILD_SIGSEGV = x$SIGSEGV; then
1495: AC_CONFIG_SUBDIRS(tools/$SIGSEGV)
1496: fi
1.6 bertrand 1497: fi
1.1 bertrand 1498:
1499: AC_CONFIG_FILES(Makefile)
1.59 bertrand 1500: AC_CONFIG_FILES(HEADER)
1.1 bertrand 1501: AC_CONFIG_FILES(tools/Makefile)
1502: AC_CONFIG_FILES(src/Makefile)
1503: AC_CONFIG_FILES(man/Makefile)
1504: AC_CONFIG_FILES(man/fr_FR/Makefile)
1505: AC_CONFIG_FILES(doc/Makefile)
1506: AC_CONFIG_FILES(scripts/Makefile)
1507: AC_CONFIG_FILES(scripts/mkrplso)
1508: AC_CONFIG_FILES(scripts/rplcc)
1509: AC_CONFIG_FILES(scripts/rpllink)
1510: AC_CONFIG_FILES(rpltags/Makefile)
1511: AC_CONFIG_FILES(rpliconv/Makefile)
1512: AC_CONFIG_FILES(rplsums/Makefile)
1513: AC_CONFIG_FILES(rplcas/Makefile)
1514: AC_CONFIG_FILES(rplawk/Makefile)
1515: AC_CONFIG_FILES(lapack/lapack/Makefile)
1516: AC_CONFIG_FILES(lapack/blas/Makefile)
1.196 bertrand 1517: AC_CONFIG_FILES(modules/motif/Makefile)
1.195 bertrand 1518: AC_CONFIG_FILES(modules/sets/Makefile)
1.1 bertrand 1519:
1520: AC_CONFIG_FILES(man/rpl.1)
1521: AC_CONFIG_FILES(man/rplcc.1)
1522: AC_CONFIG_FILES(man/rpllink.1)
1523: AC_CONFIG_FILES(man/rpltags.1)
1524: AC_CONFIG_FILES(man/mkrplso.1)
1525: AC_CONFIG_FILES(man/fr_FR/rpl.1)
1526: AC_CONFIG_FILES(man/fr_FR/rplcc.1)
1527: AC_CONFIG_FILES(man/fr_FR/rpllink.1)
1528: AC_CONFIG_FILES(man/fr_FR/rpltags.1)
1529: AC_CONFIG_FILES(man/fr_FR/mkrplso.1)
1530:
1.12 bertrand 1531: AC_CONFIG_FILES(DEBIAN/control)
1532:
1.1 bertrand 1533: AC_OUTPUT
CVSweb interface <joel.bertrand@systella.fr>