|
|
| version 1.68, 2003/11/06 14:37:03 | version 1.80, 2004/12/10 07:52:49 |
|---|---|
| Line 2 dnl Process this file with autoconf to p | Line 2 dnl Process this file with autoconf to p |
| AC_INIT(README) | AC_INIT(README) |
| AC_PREREQ(2.57) | AC_PREREQ(2.57) |
| AM_INIT_AUTOMAKE(parser, 3.1.2beta, nodefine) | AM_INIT_AUTOMAKE(parser, 3.1.4beta, nodefine) |
| dnl expand srcdir | dnl expand srcdir |
| P3S=`cd $srcdir/src ; pwd` | P3S=`cd $srcdir/src ; pwd` |
| Line 57 AC_C_INLINE | Line 57 AC_C_INLINE |
| dnl Arguments | dnl Arguments |
| AC_ARG_WITH(build-warnings, [ --with-build-warnings to enable build-time compiler warnings if gcc is used], | |
| AC_MSG_WARN(enabling compiler warnings) | |
| CXXFLAGS="$CXXFLAGS -W -Wall -Wstrict-prototypes -Wmissing-prototypes" | |
| ) | |
| AC_ARG_WITH(assertions, [ --with-assertions to enable assertions], | AC_ARG_WITH(assertions, [ --with-assertions to enable assertions], |
| AC_MSG_WARN(enabling assertions) | AC_MSG_WARN(enabling assertions) |
| , | , |
| Line 414 AC_SUBST(LIBADD_DL) | Line 420 AC_SUBST(LIBADD_DL) |
| dnl Checks for typedefs, structures, and compiler characteristics. | dnl Checks for typedefs, structures, and compiler characteristics. |
| AC_C_BIGENDIAN( | |
| AC_DEFINE(PA_BIG_ENDIAN,,compile for sparc processor) | |
| , | |
| AC_DEFINE(PA_LITTLE_ENDIAN,,compile for intel processor or compatible) | |
| , | |
| AC_MSG_ERROR(word endianness not determined for some obscure reason) | |
| ) | |
| AC_TYPE_SIZE_T | AC_TYPE_SIZE_T |
| dnl gmime | dnl gmime |
| AC_CHECK_TYPE(off_t, long) | AC_CHECK_TYPE(off_t, long) |
| Line 496 ftruncate \ | Line 510 ftruncate \ |
| getrusage \ | getrusage \ |
| gettimeofday \ | gettimeofday \ |
| crypt \ | crypt \ |
| sigsetjmp \ | |
| siglongjmp | siglongjmp |
| ) | ) |
| Line 511 sign | Line 526 sign |
| ) | ) |
| AC_LANG_POP | AC_LANG_POP |
| dnl We require qsort(3) and select(2). | dnl We require qsort(3) |
| AC_CHECK_FUNCS(qsort, , AC_MSG_ERROR([No qsort library function.])) | AC_CHECK_FUNCS(qsort, , AC_MSG_ERROR([No qsort library function.])) |
| AC_CHECK_FUNCS(select, , AC_MSG_ERROR([No select library function.])) | |
| dnl For correct mail receiving we need to know local offset from GMT | dnl For correct mail receiving we need to know local offset from GMT |
| dnl it be timezone+(daylight?60*60*sign(timezone):0) | dnl it be timezone+(daylight?60*60*sign(timezone):0) |
| Line 567 dnl fi | Line 581 dnl fi |
| dnl ] | dnl ] |
| dnl ) | dnl ) |
| dnl install directories | |
| # expand apostrophed | |
| e_prefix=$prefix | |
| test "x$e_prefix" = xNONE && e_prefix=$ac_default_prefix | |
| e_sysconfdir=$sysconfdir | |
| test "$e_sysconfdir" = "\${prefix}/etc" && e_sysconfdir="${e_prefix}/etc" | |
| dnl these are used to fill in etc/parser3.conf | |
| charsetsdir=$e_sysconfdir/parser3.charsets | |
| AC_SUBST(charsetsdir) | |
| # expand apostrophed | |
| e_libdir=$libdir | |
| if test "$e_libdir" = "\${exec_prefix}/lib"; then | |
| # Let make expand exec_prefix. | |
| e_exec_prefix=$exec_prefix | |
| test "x$e_exec_prefix" = xNONE && e_exec_prefix=$e_prefix | |
| # expand apostrophed | |
| test "$e_libdir" = "\${exec_prefix}/lib" && e_libdir="${e_exec_prefix}/lib" | |
| fi | |
| sqldriversdir=$e_libdir | |
| AC_SUBST(sqldriversdir) | |
| dnl Output header and makefiles | dnl Output header and makefiles |
| AH_TEMPLATE([HAVE_DLD],[Define if you have the GNU dld library]) | AH_TEMPLATE([HAVE_DLD],[Define if you have the GNU dld library]) |
| Line 633 AC_OUTPUT( | Line 617 AC_OUTPUT( |
| src/Makefile | src/Makefile |
| src/types/Makefile | src/types/Makefile |
| src/classes/Makefile | src/classes/Makefile |
| src/classes/gd/Makefile | |
| src/classes/smtp/Makefile | |
| src/include/Makefile | src/include/Makefile |
| src/main/Makefile | src/main/Makefile |
| src/sql/Makefile | src/sql/Makefile |
| src/lib/Makefile | src/lib/Makefile |
| src/lib/patches/Makefile | src/lib/patches/Makefile |
| src/lib/gd/Makefile | |
| src/lib/smtp/Makefile | |
| src/lib/gc/Makefile | src/lib/gc/Makefile |
| src/lib/gc/include/Makefile | src/lib/gc/include/Makefile |
| src/lib/cord/Makefile | src/lib/cord/Makefile |