Annotation of parser3/configure.in, revision 1.154
1.142 moko 1: dnl Autoconf initialisation
2: AC_PREREQ(2.59)
3: AC_INIT(parser, 3.4.2b)
4: AC_CONFIG_SRCDIR(README)
1.59 paf 5:
1.1 paf 6:
1.142 moko 7: dnl Automake Initialisation
8: AM_INIT_AUTOMAKE
9:
10:
11: dnl Expand srcdir
1.14 paf 12: P3S=`cd $srcdir/src ; pwd`
1.1 paf 13: AC_SUBST(P3S)
14:
1.142 moko 15:
16: dnl Update pa_version.h
1.81 paf 17: AC_CANONICAL_HOST
18:
19: PARSER_VERSION="$VERSION (compiled on $host)"
1.8 paf 20: echo "/* automatically generated by configure */" > $srcdir/src/include/pa_version.h.new
21: echo "/* edit configure.in to change version number */" >> $srcdir/src/include/pa_version.h.new
22: echo "#define PARSER_VERSION \"$PARSER_VERSION\"" >> $srcdir/src/include/pa_version.h.new
23: cmp $srcdir/src/include/pa_version.h.new $srcdir/src/include/pa_version.h >/dev/null 2>&1
1.1 paf 24: if test $? -ne 0 ; then
1.63 paf 25: rm -f $srcdir/src/include/pa_version.h && mv $srcdir/src/include/pa_version.h.new $srcdir/src/include/pa_version.h && \
26: echo Updated $srcdir/src/include/pa_version.h
1.1 paf 27: else
1.8 paf 28: rm -f $srcdir/src/include/pa_version.h.new
1.1 paf 29: fi
30:
1.41 paf 31: AC_SUBST(host_os)
1.63 paf 32: case $host_os in
33: *cygwin* ) AC_DEFINE(CYGWIN,,using cygwin building environment);;
34: esac
1.41 paf 35:
1.142 moko 36:
37: dnl Checks for programs
1.1 paf 38: AC_PROG_INSTALL
1.41 paf 39: AC_PROG_AWK
40:
41: AC_PROG_YACC
42: if test "$YACC" != "bison -y"; then
1.63 paf 43: AC_MSG_WARN(to regenerate Parser grammar YOU WOULD NEED BISON)
1.41 paf 44: else
1.63 paf 45: AC_MSG_CHECKING(bison version)
46: oldIFS=$IFS; IFS=.
47: set `bison -V | sed -e 's/^GNU Bison version //' -e 's/^bison (GNU Bison) //' -e 's/$/./'`
48: IFS=$oldIFS
49: if test "$1" = "1" -a "$2" -lt "25"; then
50: AC_MSG_WARN(Bison 1.25 or newer needed to regenerate Parser compiler (found $1.$2).)
51: fi
52: AC_MSG_RESULT($1.$2 (ok))
1.41 paf 53: fi
54:
1.62 paf 55: AC_PROG_CXX
1.1 paf 56: AC_PROG_CC
1.142 moko 57:
1.63 paf 58: dnl most tests should be compiled with C compiler [especially qsort test]
1.142 moko 59: AC_LANG_C
60:
1.1 paf 61:
1.141 moko 62: dnl Dll extension
63: AC_MSG_CHECKING(for dynamic-link library extension)
64: case "$host_os" in
65: cygwin)
66: dll_extension=dll
67: ;;
68: *)
69: dll_extension=so
70: esac
71: AC_MSG_RESULT($dll_extension)
72: AC_SUBST(dll_extension)
1.1 paf 73:
1.141 moko 74:
75: dnl Misc arguments
1.69 paf 76: AC_ARG_WITH(build-warnings, [ --with-build-warnings to enable build-time compiler warnings if gcc is used],
77: AC_MSG_WARN(enabling compiler warnings)
78: CXXFLAGS="$CXXFLAGS -W -Wall -Wstrict-prototypes -Wmissing-prototypes"
79: )
80:
1.63 paf 81: AC_ARG_WITH(assertions, [ --with-assertions to enable assertions],
82: AC_MSG_WARN(enabling assertions)
83: ,
84: AC_DEFINE(NDEBUG,,assertions disabled)
85: )
86:
1.141 moko 87: AC_ARG_WITH(pathlink,[ --with-pathlink=LKEY put dynamic libraries paths to binary
88: using linker key (-R, -rpath-link)],
89: LD_PATHLINK=$withval
90: )
91:
92: AC_ARG_WITH(sjlj-exceptions,[ --with-sjlj-exceptions enable simple 'throw' from dynamic library],
93: AC_DEFINE(PA_WITH_SJLJ_EXCEPTIONS,,one can throw from dynamic library)
94: )
1.96 misha 95:
1.141 moko 96:
97: dnl Safe mode argument
1.63 paf 98: AC_ARG_ENABLE(safe-mode, [ --disable-safe-mode to enable reading and executing
1.56 paf 99: files belonging to group+user other then effective],
1.1 paf 100: [
1.63 paf 101: SAFE_MODE=$enableval
1.1 paf 102: ]
103: )
1.141 moko 104:
1.56 paf 105: if test "$SAFE_MODE" = "no"; then
106: AC_MSG_WARN(enabling reading of files belonging to group+user other then effective)
107: else
1.57 paf 108: AC_DEFINE(PA_SAFE_MODE,,disabled reading of files belonging to group+user other then effective)
1.56 paf 109: fi
1.1 paf 110:
1.96 misha 111:
1.141 moko 112: dnl Disable execs argument
1.96 misha 113: AC_ARG_ENABLE(execs, [ --disable-execs to disable any execs
1.15 paf 114: (file::exec, file::cgi, unix mail:send)],
115: [
116: if test "$enableval" = "no"; then
1.16 paf 117: AC_MSG_WARN(disabling file execs)
1.15 paf 118: AC_DEFINE(NO_PA_EXECS,,pa_exec disabled)
1.16 paf 119: fi
120: ]
121: )
122:
1.56 paf 123:
1.141 moko 124: dnl String stream argument
1.96 misha 125: AC_ARG_ENABLE(stringstream, [ --disable-stringstream to disable stringstream usage.
126: when disabled table.save use more memory but it's safer on freebsd 4.x],
127: [
128: if test "$enableval" = "no"; then
129: AC_MSG_WARN(disabling stringstream usage)
130: AC_DEFINE(NO_STRINGSTREAM,,stringstream disabled)
131: fi
132: ]
133: )
134:
135:
1.141 moko 136: dnl GC argument
1.63 paf 137: GC_LIB_NAME=gc
138: AC_ARG_WITH(shared-gc,[ --with-shared-gc[=D] D is the directory where
139: Boehm garbage collecting library is installed (shared lib)],[
140: GC_LIBS="-L$withval -l$GC_LIB_NAME"
141: ])
142: AC_ARG_WITH(static-gc,[ --with-static-gc[=D] D is the directory where
143: Boehm garbage collecting library is installed (static lib)],[
1.153 moko 144: GC_LIBS="$withval/lib$GC_LIB_NAME.la"
1.63 paf 145: ])
146: if test -z "$GC_LIBS"; then
147: #undefined? use any found in system
148: GC_LIBS="-l$GC_LIB_NAME"
149: AC_MSG_WARN([neither --with-shared/static-gc were specified, hoping linker would find it])
1.153 moko 150:
151: AC_MSG_CHECKING(for libgc)
152: SAVE_LIBS=$LIBS
153: LIBS="$LIBS $GC_LIBS"
154: AC_TRY_LINK([
155: extern int GC_dont_gc;
156: ],[
157: GC_dont_gc=0;
158: ],
159: AC_MSG_RESULT(yes)
160: ,
161: AC_MSG_RESULT(no)
162: AC_MSG_ERROR(please specify path to libgc: --with-shared-gc OR --with-static-gc)
163: )
164: LIBS=$SAVE_LIBS
1.63 paf 165: fi
166: AC_SUBST(GC_LIBS)
1.1 paf 167:
1.17 paf 168:
1.141 moko 169: dnl PCRE argument
1.125 misha 170: AC_ARG_WITH(static-pcre,[ --with-static-pcre=D D is the directory where
1.103 misha 171: PCRE library is installed (static lib)],[
172: PCRE=$withval
173: PCREINC="$PCRE/include"
174: PCRELIB="$PCRE/lib"
175:
176: if test \! -d $PCREINC -o \! -d $PCRELIB; then
177: AC_MSG_ERROR($PCRE does not seem to be valid PCRE installation directory)
178: fi
179:
180: PCRE_INCLUDES="-I$PCREINC"
1.153 moko 181: PCRE_LIBS="$PCRELIB/libpcre.la"
1.103 misha 182: ])
183: AC_SUBST(PCRE_INCLUDES)
184: AC_SUBST(PCRE_LIBS)
185:
186:
1.141 moko 187: dnl XML/XSLT argument
1.12 paf 188: AC_ARG_WITH(shared-xml,[ --with-shared-xml=D D is the directory where
189: Gnome XML libraries are installed (shared libs)],[
1.63 paf 190: GNOME_XML=$withval
191: XMLBIN="$GNOME_XML/bin"
192: XMLINC="$GNOME_XML/include"
193: XMLLIB="$GNOME_XML/lib"
194:
195: if test \! -d $XMLBIN -o \! -d $XMLINC -o \! -d $XMLLIB; then
196: AC_MSG_ERROR($GNOME_XML does not seem to be valid Gnome installation directory)
197: fi
198:
199: AC_DEFINE(XML,,xml-abled parser (uses shared library))
200:
201: LIBXML2_SO_NAME=`cd $XMLLIB ; ls libxml2.?? libxml2.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
202: LIBXSLT_SO_NAME=`cd $XMLLIB ; ls libxslt.?? libxslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
203: LIBEXSLT_SO_NAME=`cd $XMLLIB ; ls libexslt.?? libexslt.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
204:
1.91 paf 205: XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libxml2"
206: XML_LIBS="-L$XMLLIB -l$LIBXML2_SO_NAME -l$LIBXSLT_SO_NAME -l$LIBEXSLT_SO_NAME"
1.63 paf 207: if test \! -z "$LD_PATHLINK"; then
1.13 paf 208: XML_LIBS="$XML_LIBS -Wl,$LD_PATHLINK -Wl,$XMLLIB"
1.63 paf 209: fi
1.1 paf 210: ])
1.12 paf 211: AC_ARG_WITH(static-xml,[ --with-static-xml=D D is the directory where
212: Gnome XML libraries are installed (static libs)],[
1.63 paf 213: GNOME_XML=$withval
214: XMLBIN="$GNOME_XML/bin"
215: XMLINC="$GNOME_XML/include"
216: XMLLIB="$GNOME_XML/lib"
217:
218: if test \! -d $XMLBIN -o \! -d $XMLINC -o \! -d $XMLLIB; then
219: AC_MSG_ERROR($GNOME_XML does not seem to be valid Gnome installation directory)
220: fi
221:
222: AC_DEFINE(XML,,xml-abled parser (uses static library))
223:
1.91 paf 224: XML_INCLUDES="$GLIB_CFLAGS -I$XMLINC -I$XMLINC/libxml2"
1.153 moko 225: XML_LIBS="$XMLLIB/libxslt.la $XMLLIB/libexslt.la $XMLLIB/libxml2.la"
1.12 paf 226: ])
1.1 paf 227: AC_SUBST(XML_INCLUDES)
228: AC_SUBST(XML_LIBS)
1.33 paf 229:
1.141 moko 230: dnl Mail receive argument
1.91 paf 231: AC_ARG_WITH(glib-config,[ --with-glib-config=FILE FILE is glib library
232: configuration file (search for glib*-config)],
233: GLIB_CONFIG=$withval
234: )
235:
1.33 paf 236: AC_ARG_WITH(shared-mailreceive,[ --with-shared-mailreceive=D is the directory where
1.63 paf 237: Gnome MIME library is installed (shared lib)],[
238: GNOME_MIME=$withval
239: MIMEBIN="$GNOME_MIME/bin"
240: MIMEINC="$GNOME_MIME/include"
241: MIMELIB="$GNOME_MIME/lib"
242:
243: if test \! -d $MIMEBIN -o \! -d $MIMEINC -o \! -d $MIMELIB; then
244: AC_MSG_ERROR($GNOME_MIME does not seem to be valid Gnome installation directory)
245: fi
246:
247: AC_DEFINE(WITH_MAILRECEIVE,,has \$mail:received (uses shared library))
248:
249: LIBMIME_SO_NAME=`cd $MIMELIB ; ls libgmime.?? libgmime.??? 2>/dev/null | grep -v \.la$ | sed 's/lib//' | sed 's/\..*//'`
250:
251: if test -z "$GLIB_CONFIG"; then
1.91 paf 252: GLIB_CONFIG=$XMLBIN/glib-config
1.63 paf 253: if test \! -x $GLIB_CONFIG; then
1.91 paf 254: GLIB_CONFIG=$XMLBIN/glib2-config
255: if test \! -x $GLIB_CONFIG; then
256: GLIB_CONFIG=glib-config
257: fi
1.63 paf 258: fi
259: fi
260: GLIB_CFLAGS=`$GLIB_CONFIG --cflags`
261: GLIB_LIBS=`$GLIB_CONFIG --libs`
262:
263: MIME_INCLUDES="$GLIB_CFLAGS -I$MIMEINC/gmime"
264: MIME_LIBS="$GLIB_LIBS -L$MIMELIB -l$LIBMIME_SO_NAME"
265: if test \! -z "$LD_PATHLINK"; then
1.33 paf 266: MIME_LIBS="$MIME_LIBS -Wl,$LD_PATHLINK -Wl,$MIMELIB"
1.63 paf 267: fi
1.33 paf 268: ])
269: AC_ARG_WITH(static-mailreceive,[ --with-static-mailreceive=D is the directory where
270: Gnome MIME library is installed (static lib)],[
1.63 paf 271: GNOME_MIME=$withval
272: MIMEBIN="$GNOME_MIME/bin"
273: MIMEINC="$GNOME_MIME/include"
274: MIMELIB="$GNOME_MIME/lib"
275:
276: if test \! -d $MIMEBIN -o \! -d $MIMEINC -o \! -d $MIMELIB; then
277: AC_MSG_ERROR($GNOME_MIME does not seem to be valid Gnome installation directory)
278: fi
279:
280: AC_DEFINE(WITH_MAILRECEIVE,,has \$mail:received (uses static library))
281:
282: if test -z "$GLIB_CONFIG"; then
1.91 paf 283: GLIB_CONFIG=$XMLBIN/glib-config
1.63 paf 284: if test \! -x $GLIB_CONFIG; then
1.91 paf 285: GLIB_CONFIG=$XMLBIN/glib2-config
286: if test \! -x $GLIB_CONFIG; then
287: GLIB_CONFIG=glib-config
288: fi
1.63 paf 289: fi
290: fi
291: GLIB_CFLAGS=`$GLIB_CONFIG --cflags`
1.33 paf 292:
293: dnl '-L/usr/local/lib -lglib' -> /usr/local/lib
294: changequote(, )dnl
1.63 paf 295: GLIB_DIR=`$GLIB_CONFIG --libs | sed 's/.*-L\([^ ]*\).*/\1/'`
296: GLIB_NAME=`$GLIB_CONFIG --libs | sed 's/.*-l\([^ ]*\).*/\1/'`
1.33 paf 297: changequote([, ])dnl
1.63 paf 298: MIME_INCLUDES="$GLIB_CFLAGS -I$MIMEINC/gmime"
1.153 moko 299: MIME_LIBS="$MIMELIB/libgmime.la $GLIB_DIR/lib$GLIB_NAME.la"
1.33 paf 300: ])
301: AC_SUBST(MIME_INCLUDES)
302: AC_SUBST(MIME_LIBS)
1.18 paf 303:
304:
1.141 moko 305: dnl Sendmail argument
1.18 paf 306: AC_ARG_WITH(sendmail,[ \"--with-sendmail=COMMAND\" forces this command to send mail.
307: example: \"--with-sendmail=/usr/sbin/sendmail -t\"
308: (makes parser ignore user-defined sendmail commands)],
309: AC_DEFINE_UNQUOTED(PA_FORCED_SENDMAIL,"$withval",parser uses this command instead of user-defined sendmail commands)
310: )
311:
1.14 paf 312:
1.141 moko 313: dnl Apache module argument
1.131 moko 314: AC_ARG_WITH(apache,[ --with-apache=FILE is the full path for APXS
315: builds apache DSO module using apxs],[
316: APXS=$withval
317:
318: if test -z "$APXS" -o "$APXS" = "yes"; then
319: APXS=`which apxs 2>/dev/null`
320: fi;
321:
322: APACHE=`$APXS -q TARGET 2>/dev/null`
323:
324: if test -z "$APACHE"; then
1.146 moko 325: APXS=`which apxs2 2>/dev/null`
326: APACHE=`$APXS -q TARGET 2>/dev/null`
327:
328: if test -z "$APACHE"; then
329: AC_MSG_ERROR($APXS does not seem to be valid apache apxs utility path)
330: fi
1.63 paf 331: fi
1.131 moko 332:
333: APACHE_MAIN_INC=`$APXS -q INCLUDEDIR`
334: APACHE_EXTRA_INC=`$APXS -q EXTRA_INCLUDES 2>/dev/null`
335: APACHE_INC="-I$APACHE_MAIN_INC $APACHE_EXTRA_INC"
336: APACHE_CFLAGS=`$APXS -q CFLAGS`
337: ])
338: AC_SUBST(APACHE)
339: AC_SUBST(APACHE_INC)
340: AC_SUBST(APACHE_CFLAGS)
341: AM_CONDITIONAL(COMPILE_APACHE_MODULE, test -n "$APACHE")
1.14 paf 342:
1.1 paf 343:
344: dnl Enable building of the convenience library
1.142 moko 345: LT_CONFIG_LTDL_DIR(src/lib/ltdl)
1.153 moko 346: LT_INIT(dlopen win32-dll)
347: #LT_INIT(disable-shared dlopen win32-dll)
1.142 moko 348: LTDL_INIT
1.1 paf 349:
1.60 paf 350:
1.1 paf 351: dnl Checks for typedefs, structures, and compiler characteristics.
1.79 paf 352: AC_C_BIGENDIAN(
353: AC_DEFINE(PA_BIG_ENDIAN,,compile for sparc processor)
354: ,
355: AC_DEFINE(PA_LITTLE_ENDIAN,,compile for intel processor or compatible)
356: ,
357: AC_MSG_ERROR(word endianness not determined for some obscure reason)
358: )
359:
1.1 paf 360: AC_TYPE_SIZE_T
1.141 moko 361:
1.142 moko 362:
1.34 paf 363: dnl gmime
364: AC_CHECK_TYPE(off_t, long)
365: AC_CHECK_TYPE(ssize_t, int)
366:
1.1 paf 367:
1.62 paf 368: dnl Checks for C header files.
1.10 paf 369: AC_HEADER_TIME
370:
1.1 paf 371: AC_CHECK_HEADERS(
1.63 paf 372: assert.h \
1.48 paf 373: signal.h \
1.1 paf 374: unistd.h \
375: process.h \
376: stddef.h \
377: stdarg.h \
378: fcntl.h \
379: sys/stat.h \
380: io.h \
381: stdio.h \
382: errno.h \
383: ctype.h \
384: math.h \
1.35 paf 385: crypt.h \
1.3 paf 386: time.h sys/time.h \
1.1 paf 387: string.h \
388: direct.h \
389: setjmp.h \
390: memory.h \
1.140 moko 391: limits.h \
1.1 paf 392: sys/file.h \
393: sys/locking.h \
1.3 paf 394: sys/types.h \
1.5 paf 395: sys/select.h \
1.39 paf 396: sys/resource.h \
1.49 paf 397: winsock.h \
398: sys/socket.h \
399: netinet/in.h \
400: arpa/inet.h \
401: netdb.h
1.1 paf 402: )
403:
1.142 moko 404:
405: dnl Checks for libraries
406:
1.1 paf 407:
408: dnl Some systems (Solaris 2.x) require libnsl (Network Services Library)
409: case "$host" in
1.114 misha 410: *-freebsd4*)
411: AC_DEFINE(FREEBSD4,,FreeBSD4X target platform)
412: ;;
1.1 paf 413: *-sunos5.6* | *-solaris2.6*)
1.63 paf 414: AC_CHECK_LIB(xnet, main)
1.1 paf 415: ;;
416: *-sunos5* | *-solaris2*)
1.63 paf 417: AC_CHECK_LIB(socket, main)
418: AC_CHECK_LIB(nsl, main)
1.1 paf 419: ;;
420: *-nec-sysv4*)
1.63 paf 421: AC_CHECK_LIB(nsl, gethostbyname)
422: AC_CHECK_LIB(socket, socket)
1.1 paf 423: ;;
424: *-cygwin*)
1.63 paf 425: AC_DEFINE(WIN32,,Windows32 target platform)
426: AC_CHECK_LIB(wsock32, socket)
1.1 paf 427: ;;
428: esac
429:
430: AC_CHECK_LIB(m, sin)
1.35 paf 431: AC_CHECK_LIB(crypt, crypt)
432:
1.1 paf 433: dnl Checks for functions.
434:
435: AC_CHECK_FUNCS(
436: flock \
437: _locking \
1.7 paf 438: fcntl \
1.4 paf 439: lockf \
1.53 paf 440: ftruncate \
1.119 misha 441: fchmod \
1.35 paf 442: getrusage \
1.47 paf 443: gettimeofday \
1.49 paf 444: crypt \
1.80 paf 445: sigsetjmp \
1.94 misha 446: siglongjmp \
447: unsetenv
1.63 paf 448: )
449:
1.142 moko 450: dnl on some linux[seen on 2.4] it's a macro
1.63 paf 451: PA_CHECK_SIGSETJMP
452:
453: dnl see comment above
454: AC_LANG_PUSH(C++)
455: PA_CHECK_MATH_FUNCS_ONE_ARG(
456: trunc \
457: round \
458: sign
1.1 paf 459: )
1.63 paf 460: AC_LANG_POP
1.3 paf 461:
1.75 paf 462: dnl We require qsort(3)
1.3 paf 463:
464: AC_CHECK_FUNCS(qsort, , AC_MSG_ERROR([No qsort library function.]))
1.1 paf 465:
1.46 paf 466: dnl For correct mail receiving we need to know local offset from GMT
467: dnl it be timezone+(daylight?60*60*sign(timezone):0)
468: dnl or it can be tm.tm_gmtoff
469: dnl or it can be tm.tm_tzadj
470:
471: AC_MSG_CHECKING(for timezone variable)
1.141 moko 472: AC_TRY_COMPILE([#include <time.h>],
1.46 paf 473: [
474: time_t test=timezone;
1.141 moko 475: ],
476: AC_DEFINE(HAVE_TIMEZONE)
477: AC_MSG_RESULT(yes),
478: AC_MSG_RESULT(no))
1.46 paf 479:
480: AC_MSG_CHECKING(for daylight variable)
1.141 moko 481: AC_TRY_COMPILE([#include <time.h>],
1.46 paf 482: [
483: int test=daylight;
1.141 moko 484: ],
485: AC_DEFINE(HAVE_DAYLIGHT)
486: AC_MSG_RESULT(yes),
487: AC_MSG_RESULT(no))
1.46 paf 488:
489: AC_MSG_CHECKING(for tm_gmtoff in struct tm)
1.141 moko 490: AC_TRY_COMPILE([#include <time.h>],
491: [struct tm tm;
492: tm.tm_gmtoff=0;
493: ],
494: AC_DEFINE(HAVE_TM_GMTOFF)
495: AC_MSG_RESULT(yes),
496: AC_MSG_RESULT(no))
1.46 paf 497:
498: AC_MSG_CHECKING(for tm_tzadj in struct tm)
1.141 moko 499: AC_TRY_COMPILE([#include <time.h>],
500: [struct tm tm;
501: tm.tm_tzadj=0;
502: ],
503: AC_DEFINE(HAVE_TM_TZADJ)
504: AC_MSG_RESULT(yes),
505: AC_MSG_RESULT(no))
506:
1.17 paf 507:
1.58 paf 508: dnl Output header and makefiles
509: AH_TEMPLATE([HAVE_DLD],[Define if you have the GNU dld library])
510:
511: AH_TEMPLATE([HAVE_LIBDL],
512: [Define if you have the libdl library or equivalent.])
513:
514: AH_TEMPLATE([HAVE_SHL_LOAD],
515: [Define if you have the shl_load function. ])
516:
517:
518: AH_TEMPLATE([size_t],
519: [Define to `unsigned int' if <sys/types.h> does not define.])
520:
521: AH_TEMPLATE([ssize_t],
522: [Define to `int' if <sys/types.h> does not define.])
523:
524: AH_TEMPLATE([HAVE_DAYLIGHT],
525: [Define if you have daylight external variable in <time.h>])
526:
527: AH_TEMPLATE([HAVE_TIMEZONE],
528: [Define if you have timezone external variable in <time.h>])
529:
530: AH_TEMPLATE([HAVE_TM_GMTOFF],
531: [Define if you have tm_gmtoff member of tm structure in <time.h>])
532:
533: AH_TEMPLATE([HAVE_TM_TZADJ],
534: [Define if you have tm_tzadj member of tm structure in <time.h>])
535:
1.1 paf 536:
537: AM_CONFIG_HEADER(src/include/pa_config_auto.h)
1.141 moko 538:
1.66 paf 539: AC_OUTPUT(
540: Makefile
541: src/Makefile
542: src/types/Makefile
543: src/classes/Makefile
544: src/include/Makefile
545: src/main/Makefile
546: src/sql/Makefile
547: src/lib/Makefile
1.71 paf 548: src/lib/gd/Makefile
549: src/lib/smtp/Makefile
1.66 paf 550: src/lib/gc/Makefile
551: src/lib/gc/include/Makefile
1.108 misha 552: src/lib/pcre/Makefile
1.66 paf 553: src/lib/cord/Makefile
554: src/lib/cord/include/Makefile
555: src/lib/cord/include/private/Makefile
556: src/lib/md5/Makefile
557: src/lib/sdbm/Makefile
1.133 moko 558: src/lib/sdbm/pa-include/Makefile
1.128 misha 559: src/lib/json/Makefile
1.137 moko 560: src/lib/memcached/Makefile
1.138 moko 561: src/lib/curl/Makefile
1.66 paf 562: src/targets/Makefile
563: src/targets/cgi/Makefile
1.131 moko 564: src/targets/apache/Makefile
1.66 paf 565: src/targets/isapi/Makefile
566: etc/Makefile
567: etc/parser3.charsets/Makefile
1.67 paf 568: bin/Makefile
569: bin/auto.p.dist)
E-mail: