Annotation of pgsql/configure.in, revision 1.134
1.1 petere 1: dnl Process this file with autoconf to produce a configure script.
1.28 petere 2:
3: dnl Developers, please strive to achieve this order:
4: dnl
5: dnl 0. Initialization and options processing
6: dnl 1. Programs
7: dnl 2. Libraries
8: dnl 3. Header files
9: dnl 4. Types
10: dnl 5. Structures
11: dnl 6. Compiler characteristics
12: dnl 7. Functions, global variables
13: dnl 8. System services
14: dnl
15: dnl Read the Autoconf manual for details.
16:
1.32 petere 17: dnl The GNU folks apparently haven't heard that some people don't use
18: dnl Texinfo. Use this sorcery to use "docdir" instead of "infodir".
19: define([info], [doc])
20: define([infodir], [docdir])
1.1 petere 21: AC_INIT(src/backend/access/common/heaptuple.c)
1.32 petere 22: undefine([infodir])
23: undefine([info])
24:
1.1 petere 25: AC_PREFIX_DEFAULT(/usr/local/pgsql)
1.133 petere 26: AC_CONFIG_HEADER(src/include/pg_config.h)
1.1 petere 27:
28: AC_PREREQ(2.13)
1.28 petere 29: AC_CONFIG_AUX_DIR(config)
1.5 petere 30:
1.124 momjian 31: VERSION='7.2devel'
1.24 petere 32: AC_SUBST(VERSION)
33: AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION")
34:
1.80 petere 35: unset CDPATH
1.61 petere 36:
1.1 petere 37: AC_CANONICAL_HOST
1.45 petere 38: AC_SUBST(host)
39: AC_SUBST(host_cpu)
40: AC_SUBST(host_os)
1.1 petere 41:
1.30 petere 42: template=
43: AC_MSG_CHECKING([which template to use])
44:
1.42 petere 45: PGAC_ARG_REQ(with, template, [],
46: [
47: case $withval in
1.30 petere 48: list) echo; ls "$srcdir/src/template"; exit;;
49: *) if test -f "$srcdir/src/template/$with_template" ; then
1.42 petere 50: template=$withval
1.30 petere 51: else
1.80 petere 52: AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
1.30 petere 53: fi;;
54: esac
1.42 petere 55: ],
56: [
57: # --with-template not given
1.30 petere 58:
59: case $host_os in
60: aix*) template=aix ;;
1.54 momjian 61: beos*) template=beos ;;
1.30 petere 62: bsdi*) template=bsdi ;;
63: cygwin*) template=win ;;
1.72 petere 64: darwin*) template=darwin ;;
1.30 petere 65: dgux*) template=dgux ;;
66: freebsd*) template=freebsd ;;
67: hpux*) template=hpux ;;
68: irix*) template=irix5 ;;
69: linux*) template=linux ;;
70: netbsd*) template=netbsd ;;
71: nextstep*) template=nextstep ;;
72: openbsd*) template=openbsd ;;
73: osf*) template=osf ;;
74: qnx*) template=qnx4 ;;
75: sco*) template=sco ;;
1.58 petere 76: solaris*) template=solaris ;;
1.30 petere 77: sunos*) template=sunos4 ;;
1.1 petere 78: sysv4.2*)
1.30 petere 79: case $host_vendor in
80: univel) template=univel ;;
81: esac ;;
82: sysv4*) template=svr4 ;;
1.133 petere 83: sysv5*) template=unixware ;;
1.30 petere 84: ultrix*) template=ultrix4 ;;
1.1 petere 85: esac
86:
1.30 petere 87: if test x"$template" = x"" ; then
1.80 petere 88: AC_MSG_ERROR([[
1.30 petere 89: *******************************************************************
90: PostgreSQL has apparently not been ported to your platform yet.
1.32 petere 91: To try a manual configuration, look into the src/template directory
1.80 petere 92: for a similar platform and use the '--with-template=' option.
1.30 petere 93:
94: Please also contact <[email protected]> to see about
1.80 petere 95: rectifying this. Include the above 'checking host system type...'
1.30 petere 96: line.
97: *******************************************************************
1.80 petere 98: ]])
1.30 petere 99: fi
100:
1.42 petere 101: ])
1.1 petere 102:
1.30 petere 103: AC_MSG_RESULT([$template])
1.1 petere 104:
1.30 petere 105: PORTNAME=$template
106: AC_SUBST(PORTNAME)
1.1 petere 107:
1.30 petere 108: AC_LINK_FILES([src/backend/port/dynloader/${template}.c], [src/backend/port/dynloader.c])
109: AC_LINK_FILES([src/backend/port/dynloader/${template}.h], [src/include/dynloader.h])
1.133 petere 110: AC_LINK_FILES([src/include/port/${template}.h], [src/include/pg_config_os.h])
1.30 petere 111: AC_LINK_FILES([src/makefiles/Makefile.${template}], [src/Makefile.port])
112:
1.58 petere 113: # Pick right test-and-set (TAS) code. Most platforms have inline
114: # assembler code in src/include/storage/s_lock.h, so we just use
115: # a dummy file here.
116: case $host in
117: *-*-hpux*) need_tas=yes; tas_file=hpux.s ;;
118: sparc-*-solaris*) need_tas=yes; tas_file=solaris_sparc.s ;;
119: i?86-*-solaris) need_tas=yes; tas_file=solaris_i386.s ;;
1.63 petere 120: *) need_tas=no; tas_file=dummy.s ;;
1.30 petere 121: esac
1.63 petere 122: AC_LINK_FILES([src/backend/port/tas/${tas_file}], [src/backend/port/tas.s])
1.1 petere 123:
1.30 petere 124: if test "$need_tas" = yes ; then
125: TAS=tas.o
1.1 petere 126: fi
1.30 petere 127: AC_SUBST(TAS)
1.1 petere 128:
129:
130:
1.30 petere 131: ##
132: ## Command line options
133: ##
1.13 petere 134:
1.1 petere 135:
1.30 petere 136: #
137: # Add non-standard directories to the include path
138: #
1.42 petere 139: PGAC_ARG_REQ(with, includes, [ --with-includes=DIRS look for additional header files in DIRS])
1.1 petere 140:
141:
1.30 petere 142: #
143: # Add non-standard directories to the library search path
144: #
1.42 petere 145: PGAC_ARG_REQ(with, libraries, [ --with-libraries=DIRS look for additional libraries in DIRS],
146: [LIBRARY_DIRS=$withval])
1.1 petere 147:
1.42 petere 148: PGAC_ARG_REQ(with, libs, [ --with-libs=DIRS alternative spelling of --with-libraries],
149: [LIBRARY_DIRS=$withval])
1.29 petere 150:
151:
152: #
153: # Locale (--enable-locale)
154: #
155: AC_MSG_CHECKING([whether to build with locale support])
1.42 petere 156: PGAC_ARG_BOOL(enable, locale, no, [ --enable-locale enable locale support],
157: [AC_DEFINE([USE_LOCALE], 1,
158: [Set to 1 if you want LOCALE support (--enable-locale)])])
1.29 petere 159: AC_MSG_RESULT([$enable_locale])
1.2 petere 160:
1.1 petere 161:
1.29 petere 162: #
1.42 petere 163: # Character set recode (--enable-recode)
1.29 petere 164: #
1.42 petere 165: AC_MSG_CHECKING([whether to build with recode support])
166: PGAC_ARG_BOOL(enable, recode, no, [ --enable-recode enable character set recode support],
167: [AC_DEFINE([CYR_RECODE], 1,
168: [Set to 1 if you want cyrillic recode support (--enable-recode)])])
1.29 petere 169: AC_MSG_RESULT([$enable_recode])
1.1 petere 170:
171:
1.29 petere 172: #
173: # Multibyte support
174: #
175: MULTIBYTE=
176: AC_MSG_CHECKING([whether to build with multibyte character support])
1.42 petere 177:
178: PGAC_ARG_OPTARG(enable, multibyte, [ --enable-multibyte enable multibyte character support],
179: [MULTIBYTE=SQL_ASCII],
1.29 petere 180: [
181: case $enableval in
182: SQL_ASCII|EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
1.42 petere 183: MULTIBYTE=$enableval;;
184: *)
185: AC_MSG_ERROR(
1.29 petere 186: [argument to --enable-multibyte must be one of:
1.1 petere 187: SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW,
188: UNICODE, MULE_INTERNAL,
189: LATIN1, LATIN2, LATIN3, LATIN4, LATIN5,
190: KOI8, WIN, ALT
1.42 petere 191: Or do not specify an argument to the option to use the default.]);;
1.29 petere 192: esac
193: ],
1.42 petere 194: [
195: AC_DEFINE(MULTIBYTE, 1, [Set to 1 if you want to use multibyte characters (--enable-multibyte)])
196: AC_MSG_RESULT([yes, default $MULTIBYTE])
197: ],
198: [AC_MSG_RESULT(no)])
1.29 petere 199:
200: AC_SUBST(MULTIBYTE)
1.1 petere 201:
1.70 ishii 202: #
1.77 petere 203: # Unicode conversion (--enable-unicode-conversion)
1.70 ishii 204: #
205: AC_MSG_CHECKING([whether to build with Unicode conversion support])
1.77 petere 206: PGAC_ARG_BOOL(enable, unicode-conversion, no,
207: [ --enable-unicode-conversion enable unicode conversion support],
208: [if test -z "$MULTIBYTE"; then
209: AC_MSG_ERROR([--enable-unicode-conversion only works with --enable-multibyte])
210: fi
211: AC_DEFINE([UNICODE_CONVERSION], 1,
212: [Set to 1 if you want Unicode conversion support (--enable-unicode-conversion)])])
213: AC_MSG_RESULT([$enable_unicode_conversion])
1.1 petere 214:
1.29 petere 215: #
1.128 petere 216: # NLS
217: #
218: AC_MSG_CHECKING([whether NLS is wanted])
219: PGAC_ARG_OPTARG(enable, nls,
220: [ --enable-nls[=LANGUAGES] enable Native Language Support],
221: [],
222: [WANTED_LANGUAGES=$enableval],
223: [AC_DEFINE(ENABLE_NLS)])
224: AC_MSG_RESULT([$enable_nls])
225: AC_SUBST(enable_nls)
226: AC_SUBST(WANTED_LANGUAGES)
227:
228: #
1.29 petere 229: # Default port number (--with-pgport), default 5432
230: #
231: AC_MSG_CHECKING([for default port number])
1.42 petere 232: PGAC_ARG_REQ(with, pgport, [ --with-pgport=PORTNUM change default port number [5432]],
233: [default_port=$withval],
234: [default_port=5432])
1.97 tgl 235: AC_MSG_RESULT([$default_port])
236: # Need both of these because some places want an integer and some a string
1.1 petere 237: AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port})
238: AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}")
1.97 tgl 239: AC_SUBST(default_port)
1.1 petere 240:
1.29 petere 241: #
242: # Maximum number of allowed connections (--with-maxbackends), default 32
243: #
244: AC_MSG_CHECKING([for default soft limit on number of connections])
1.42 petere 245: PGAC_ARG_REQ(with, maxbackends, [ --with-maxbackends=N set default maximum number of connections [32]],
246: [],
247: [with_maxbackends=32])
1.29 petere 248: AC_MSG_RESULT([$with_maxbackends])
1.42 petere 249: AC_DEFINE_UNQUOTED([DEF_MAXBACKENDS], [$with_maxbackends],
250: [The default soft limit on the number of concurrent connections, i.e., the default for the postmaster -N switch (--with-maxbackends)])
1.29 petere 251:
1.1 petere 252:
1.29 petere 253: #
1.65 petere 254: # Option to disable shared libraries
255: #
256: PGAC_ARG_BOOL(enable, shared, yes,
1.68 petere 257: [ --disable-shared do not build shared libraries])
1.65 petere 258: AC_SUBST(enable_shared)
259:
1.69 petere 260: #
261: # '-rpath'-like feature can be disabled
262: #
263: PGAC_ARG_BOOL(enable, rpath, yes,
264: [ --disable-rpath do not embed shared library search path in executables])
265: AC_SUBST(enable_rpath)
266:
1.65 petere 267:
268: #
1.74 petere 269: # --enable-debug adds -g to compiler flags
270: #
271: PGAC_ARG_BOOL(enable, debug, no,
272: [ --enable-debug build with debugging symbols (-g)])
273:
274:
275: #
1.30 petere 276: # C compiler
277: #
278:
1.29 petere 279: # For historical reasons you can also use --with-CC to specify the C compiler
280: # to use, although the standard way to do this is to set the CC environment
281: # variable.
1.42 petere 282: PGAC_ARG_REQ(with, CC, [], [CC=$with_CC])
1.4 tgl 283:
1.30 petere 284: # On AIX, default compiler to xlc.
285: if test "$template" = aix && test -z "$CC" ; then CC=xlc; fi
1.4 tgl 286:
1.74 petere 287: # Save CFLAGS from the environment
288: has_environ_CFLAGS="${CFLAGS+yes}"
289: save_CFLAGS=$CFLAGS
290:
1.4 tgl 291: AC_PROG_CC
1.30 petere 292: # Read the template
293: . "$srcdir/src/template/$template" || exit
1.74 petere 294:
295: if test "$has_environ_CFLAGS" = yes; then
296: CFLAGS=$save_CFLAGS
297: fi
298: if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
299: CFLAGS="$CFLAGS -g"
300: fi
1.30 petere 301: echo "using CFLAGS=$CFLAGS"
302: # Check if the compiler still works with the template settings
303: AC_PROG_CC_WORKS
1.44 petere 304: AC_EXEEXT
1.4 tgl 305: AC_PROG_CPP
306: AC_PROG_GCC_TRADITIONAL
1.6 petere 307: AC_SUBST(GCC)
1.4 tgl 308:
1.29 petere 309: # Create compiler version string
1.24 petere 310: if test x"$GCC" = x"yes" ; then
311: cc_string="GCC `${CC} --version`"
1.4 tgl 312: else
1.24 petere 313: cc_string=$CC
1.4 tgl 314: fi
1.24 petere 315: AC_DEFINE_UNQUOTED(PG_VERSION_STR, ["PostgreSQL $VERSION on $host, compiled by $cc_string"], [A canonical string containing the version number, platform, and C compiler])
316:
1.4 tgl 317:
1.31 petere 318: #
319: # Automatic dependency tracking
320: #
1.42 petere 321: PGAC_ARG_BOOL(enable, depend, no, [ --enable-depend turn on automatic dependency tracking],
322: [autodepend=yes])
1.31 petere 323: AC_SUBST(autodepend)
324:
325:
1.42 petere 326: #
327: # Enable assert checks
328: #
329: PGAC_ARG_BOOL(enable, cassert, no, [ --enable-cassert enable assertion checks (for debugging)],
330: [AC_DEFINE([USE_ASSERT_CHECKING], 1,
331: [Define to 1 to build with assertion checks])])
1.30 petere 332:
333:
334: #
335: # Include directories
336: #
337: ac_save_IFS=$IFS
1.80 petere 338: IFS="${IFS}:"
1.30 petere 339: # SRCH_INC comes from the template file
340: for dir in $with_includes $SRCH_INC; do
341: if test -d "$dir"; then
342: INCLUDES="$INCLUDES -I$dir"
343: else
344: AC_MSG_WARN([*** Include directory $dir does not exist.])
345: fi
346: done
347: IFS=$ac_save_IFS
348: AC_SUBST(INCLUDES)
349:
350:
351: #
352: # Library directories
353: #
354: ac_save_IFS=$IFS
1.80 petere 355: IFS="${IFS}:"
1.30 petere 356: # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
357: for dir in $LIBRARY_DIRS $SRCH_LIB; do
358: if test -d "$dir"; then
1.68 petere 359: LIBDIRS="$LIBDIRS -L$dir"
1.30 petere 360: else
361: AC_MSG_WARN([*** Library directory $dir does not exist.])
362: fi
363: done
364: IFS=$ac_save_IFS
365:
366:
1.43 petere 367: #
368: # Tcl/Tk
369: #
370: AC_MSG_CHECKING([whether to build with Tcl])
371: PGAC_ARG_BOOL(with, tcl, no, [ --with-tcl build Tcl and Tk interfaces])
372: AC_MSG_RESULT([$with_tcl])
373: AC_SUBST([with_tcl])
374:
375: # If Tcl is enabled (above) then Tk is also, unless the user disables it using --without-tk
376: AC_MSG_CHECKING([whether to build with Tk])
377: if test "$with_tcl" = yes; then
378: PGAC_ARG_BOOL(with, tk, yes, [ --without-tk do not build Tk interfaces if Tcl is enabled])
379: else
380: with_tk=no
381: fi
382: AC_MSG_RESULT([$with_tk])
383: AC_SUBST([with_tk])
1.1 petere 384:
385:
1.42 petere 386: # We see if the path to the TCL/TK configuration scripts is specified.
387: # This will override the use of tclsh to find the paths to search.
388:
1.43 petere 389: PGAC_ARG_REQ(with, tclconfig, [ --with-tclconfig=DIR tclConfig.sh and tkConfig.sh are in DIR])
1.1 petere 390:
1.42 petere 391: # We see if the path to the TK configuration scripts is specified.
392: # This will override the use of tclsh to find the paths to search.
1.1 petere 393:
1.43 petere 394: PGAC_ARG_REQ(with, tkconfig, [ --with-tkconfig=DIR tkConfig.sh is in DIR])
1.125 petere 395:
396:
397: #
398: # If Tcl is enabled (above) then check for pltcl_unknown_support
399: #
400: AC_MSG_CHECKING([whether to build with PL/Tcl unknown support])
401: if test "$with_tcl" = yes; then
402: PGAC_ARG_BOOL(enable, pltcl-unknown, no,
403: [ --enable-pltcl-unknown build PL/Tcl unknown support (if Tcl is enabled)],
404: [AC_DEFINE([ENABLE_PLTCL_UNKNOWN])])
405: else
406: enable_pltcl_unknown=no
407: fi
408: AC_MSG_RESULT([$enable_pltcl_unknown])
409: AC_SUBST([enable_pltcl_unknown])
1.1 petere 410:
1.5 petere 411:
1.42 petere 412: #
413: # Optionally build Perl modules (Pg.pm and PL/Perl)
414: #
415: AC_MSG_CHECKING([whether to build Perl modules])
416: PGAC_ARG_BOOL(with, perl, no, [ --with-perl build Perl interface and PL/Perl])
417: AC_MSG_RESULT([$with_perl])
1.5 petere 418: AC_SUBST(with_perl)
419:
420:
1.42 petere 421: #
422: # Optionally build Python interface module
423: #
424: AC_MSG_CHECKING([whether to build Python modules])
1.126 petere 425: PGAC_ARG_BOOL(with, python, no, [ --with-python build Python interface module])
426: AC_MSG_RESULT([$with_python])
1.5 petere 427: AC_SUBST(with_python)
1.1 petere 428:
1.105 peter 429: #
430: # Optionally build the Java/JDBC tools
431: #
432: AC_MSG_CHECKING([whether to build Java/JDBC tools])
1.108 petere 433: PGAC_ARG_BOOL(with, java, no, [ --with-java build JDBC interface and Java tools],
1.105 peter 434: [AC_MSG_RESULT(yes)
1.108 petere 435: PGAC_PATH_ANT
436: if test -z "$ANT"; then
437: AC_MSG_ERROR([Ant is required to build Java components])
438: fi],
1.105 peter 439: [AC_MSG_RESULT(no)])
440: AC_SUBST(with_java)
1.13 petere 441:
1.28 petere 442: dnl A note on the Kerberos and OpenSSL options:
1.13 petere 443: dnl
1.28 petere 444: dnl The user can give an argument to the option in order the specify
445: dnl the base path of the respective installation (what he specified
446: dnl perhaps as --prefix). If no argument is given ($withval is "yes")
447: dnl then we take the path where the package installs by default. This
448: dnl way the user doesn't have to use redundant --with-includes and
449: dnl --with-libraries options, but he can still use them if the layout
450: dnl is non-standard.
451:
452: #
453: # Kerberos 4
454: #
1.42 petere 455: PGAC_ARG_OPTARG(with, krb4, [ --with-krb4[=DIR] build with Kerberos 4 support [/usr/athena]],
456: [krb4_prefix=/usr/athena],
457: [krb4_prefix=$withval],
458: [
1.28 petere 459: AC_MSG_RESULT([building with Kerberos 4 support])
1.42 petere 460: AC_DEFINE(KRB4, 1, [Define if you are building with Kerberos 4 support.])
1.28 petere 461:
1.68 petere 462: if test -d "$krb4_prefix/include"; then
463: INCLUDES="$INCLUDES -I$krb4_prefix/include"
464: fi
465: if test -d "$krb4_prefix/lib"; then
466: LIBDIRS="$LIBDIRS -L$krb4_prefix/lib"
1.13 petere 467: fi
1.37 petere 468:
1.42 petere 469: krb_srvtab="/etc/srvtab"
470: ])
471:
472: AC_SUBST(with_krb4)
1.13 petere 473:
474:
1.28 petere 475: #
476: # Kerberos 5
477: #
1.42 petere 478: PGAC_ARG_OPTARG(with, krb5, [ --with-krb5[=DIR] build with Kerberos 5 support [/usr/athena]],
479: [krb5_prefix=/usr/athena],
480: [krb5_prefix=$withval],
481: [
1.28 petere 482: AC_MSG_RESULT([building with Kerberos 5 support])
1.42 petere 483: AC_DEFINE(KRB5, 1, [Define if you are building with Kerberos 5 support.])
1.28 petere 484:
1.68 petere 485: if test -d "$krb5_prefix/include"; then
486: INCLUDES="$INCLUDES -I$krb5_prefix/include"
487: fi
488: if test -d "$krb5_prefix/lib"; then
489: LIBDIRS="$LIBDIRS -L$krb5_prefix/lib"
1.13 petere 490: fi
1.28 petere 491:
1.42 petere 492: krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
493: ])
494:
495: AC_SUBST(with_krb5)
1.28 petere 496:
497:
498: # Using both Kerberos 4 and Kerberos 5 at the same time isn't going to work.
499: if test "$with_krb4" = yes && test "$with_krb5" = yes ; then
500: AC_MSG_ERROR([Kerberos 4 and Kerberos 5 support cannot be combined])
501: fi
1.13 petere 502:
1.37 petere 503: AC_SUBST(krb_srvtab)
1.13 petere 504:
505:
1.28 petere 506: #
507: # Kerberos configuration parameters
508: #
1.42 petere 509: PGAC_ARG_REQ(with, krb-srvnam,
1.68 petere 510: [ --with-krb-srvnam=NAME name of the service principal in Kerberos [postgres]],
1.42 petere 511: [],
512: [with_krb_srvnam="postgres"])
513: AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
514: [The name of the PostgreSQL service principal in Kerberos])
1.13 petere 515:
1.28 petere 516:
517:
518: #
519: # OpenSSL
520: #
1.42 petere 521: PGAC_ARG_OPTARG(with, openssl,
522: [ --with-openssl[=DIR] build with OpenSSL support [/usr/local/ssl]],
523: [openssl_prefix=/usr/local/ssl],
524: [openssl_prefix=$withval],
525: [
1.28 petere 526: AC_MSG_RESULT([building with OpenSSL support])
1.42 petere 527: AC_DEFINE([USE_SSL], 1, [Define to build with (Open)SSL support])
1.28 petere 528:
529: if test -d "${openssl_prefix}/include" ; then
530: INCLUDES="$INCLUDES -I${openssl_prefix}/include"
531: fi
532: if test -d "${openssl_prefix}/lib" ; then
1.68 petere 533: LIBDIRS="$LIBDIRS -L${openssl_prefix}/lib"
1.28 petere 534: fi
1.42 petere 535: ])
536:
537: AC_SUBST(with_openssl)
1.28 petere 538:
1.13 petere 539:
540:
1.42 petere 541: #
542: # Optionally enable the building of the ODBC driver
543: #
1.15 petere 544:
1.42 petere 545: # Old option name
546: if test "${with_odbc+set}" = set && test "${enable_odbc+set}" != set; then
1.15 petere 547: enable_odbc=$with_odbc
548: fi
549:
1.42 petere 550: AC_MSG_CHECKING([whether to build the ODBC driver])
551: PGAC_ARG_BOOL(enable, odbc, no, [ --enable-odbc build the ODBC driver package])
552: AC_MSG_RESULT([$enable_odbc])
553: AC_SUBST([enable_odbc])
1.8 momjian 554:
1.1 petere 555:
1.42 petere 556: # Allow for overriding the default location of the odbcinst.ini
557: # file which is normally ${sysconfdir} (i.e., ${prefix}/etc).
558: PGAC_ARG_REQ(with, odbcinst,
559: [ --with-odbcinst=DIR default directory for odbcinst.ini [sysconfdir]],
560: [odbcinst_ini_dir=$withval],
561: [odbcinst_ini_dir="\${sysconfdir}"])
562: AC_SUBST([odbcinst_ini_dir])
1.3 momjian 563:
564:
565:
1.30 petere 566: # Assume system is ELF if it predefines __ELF__ as 1,
567: # otherwise believe host_os based default.
568: case $host_os in
1.127 momjian 569: freebsd1*|freebsd2*) elf=no;;
570: freebsd3*|freebsd4*) elf=yes;;
1.30 petere 571: esac
1.1 petere 572:
573: AC_EGREP_CPP(yes,
574: [#if __ELF__
575: yes
576: #endif
577: ],
1.30 petere 578: [ELF_SYS=true],
579: [if test "X$elf" = "Xyes" ; then
580: ELF_SYS=true
1.1 petere 581: else
1.30 petere 582: ELF_SYS=
583: fi])
584: AC_SUBST(ELF_SYS)
1.1 petere 585:
586:
587:
1.42 petere 588: #
589: # Optionally build C++ code (i.e., libpq++)
590: #
1.36 petere 591: AC_MSG_CHECKING([whether to build C++ modules])
1.42 petere 592: PGAC_ARG_OPTARG(with, CXX, [ --with-CXX build C++ modules (libpq++)],
593: [],
594: [CXX=$withval],
595: [
596: AC_MSG_RESULT(yes)
1.71 petere 597:
598: # If the user has specified CXXFLAGS in the environment, leave it
599: # alone, else use a default.
600:
1.74 petere 601: has_environ_CXXFLAGS="${CXXFLAGS+yes}"
1.6 petere 602: AC_PROG_CXX
1.74 petere 603: if test "$has_environ_CXXFLAGS" != yes; then
1.71 petere 604: if test "$GXX" = yes; then
605: CXXFLAGS=-O2
606: else
607: case $template in
608: osf) CXXFLAGS='-O4 -Olimit 2000' ;;
609: unixware) CXXFLAGS='-O' ;;
610: *) CXXFLAGS= ;;
611: esac
612: fi
613: fi
614: if test "$enable_debug" = yes && test "$ac_cv_prog_cxx_g" = yes; then
615: CXXFLAGS="$CXXFLAGS -g"
616: fi
617: echo "using CXXFLAGS=$CXXFLAGS"
618:
1.6 petere 619: AC_PROG_CXXCPP
1.61 petere 620: AC_SUBST(GXX)
1.6 petere 621: PGAC_CLASS_STRING
622: PGAC_CXX_NAMESPACE_STD
1.42 petere 623: ],
624: [AC_MSG_RESULT(no)])
625: AC_SUBST(with_CXX)
1.1 petere 626:
1.30 petere 627: CPPFLAGS="$CPPFLAGS $INCLUDES"
1.68 petere 628: LDFLAGS="$LDFLAGS $LIBDIRS"
1.30 petere 629:
630: echo "using CPPFLAGS=$CPPFLAGS"
631: echo "using LDFLAGS=$LDFLAGS"
632:
633:
1.2 petere 634: AC_PROG_AWK
1.39 petere 635: PGAC_PATH_FLEX
1.1 petere 636: AC_PROG_LN_S
1.62 petere 637: AC_PROG_LD
1.67 petere 638: AC_SUBST(LD)
639: AC_SUBST(with_gnu_ld)
1.130 momjian 640: case $host_os in sysv5*)
1.77 petere 641: AC_CACHE_CHECK([whether ld -R works], [pgac_cv_prog_ld_R],
642: [
643: pgac_save_LDFLAGS=$LDFLAGS; LDFLAGS="$LDFLAGS -Wl,-R/usr/lib"
644: AC_TRY_LINK([], [], [pgac_cv_prog_ld_R=yes], [pgac_cv_prog_ld_R=no])
645: LDFLAGS=$pgac_save_LDFLAGS
646: ])
647: ld_R_works=$pgac_cv_prog_ld_R
648: AC_SUBST(ld_R_works)
649: esac
1.1 petere 650: AC_PROG_RANLIB
1.58 petere 651: AC_CHECK_PROGS(LORDER, lorder)
1.56 petere 652: AC_PATH_PROG(TAR, tar)
1.98 petere 653:
654: AC_CHECK_PROGS(YACC, ['bison -y'])
655: if test -z "$YACC"; then
656: AC_MSG_WARN([
657: *** Without Bison you will not be able to build PostgreSQL from CVS or
658: *** change any of the parser definition files. You can obtain Bison from
659: *** a GNU mirror site. (If you are using the official distribution of
660: *** PostgreSQL then you do not need to worry about this because the Bison
661: *** output is pre-generated.) To use a different yacc program (possible,
662: *** but not recommended), set the environment variable YACC before running
663: *** 'configure'.])
664: fi
1.6 petere 665: AC_SUBST(YFLAGS)
1.98 petere 666:
1.43 petere 667: if test "$with_tk" = yes; then
668: AC_PATH_PROG(WISH, wish)
1.80 petere 669: test -z "$WISH" && AC_MSG_ERROR(['wish' is required for Tk support])
1.134 ! petere 670: fi
! 671:
! 672: PGAC_PATH_PERL
! 673: if test "$with_perl" = yes; then
! 674: PGAC_CHECK_PERL_DIRS
1.126 petere 675: fi
676:
677: if test "$with_python" = yes; then
678: PGAC_PATH_PYTHON
679: PGAC_CHECK_PYTHON_MODULE_SETUP
680: PGAC_CHECK_PYTHON_EMBED_SETUP
1.43 petere 681: fi
1.1 petere 682:
683:
1.29 petere 684: ##
685: ## Libraries
686: ##
687:
1.96 petere 688: PGAC_CHECK_READLINE
1.52 petere 689: AC_SEARCH_LIBS(using_history, history, [AC_DEFINE(HAVE_HISTORY_FUNCTIONS)])
1.1 petere 690:
691: if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
692: then
693: AC_CHECK_LIB(bsd, main)
694: fi
1.21 petere 695: AC_CHECK_LIB(util, setproctitle)
1.1 petere 696: AC_CHECK_LIB(m, main)
697: AC_CHECK_LIB(dl, main)
698: AC_CHECK_LIB(socket, main)
699: AC_CHECK_LIB(nsl, main)
700: AC_CHECK_LIB(ipc, main)
701: AC_CHECK_LIB(IPC, main)
702: AC_CHECK_LIB(lc, main)
703: AC_CHECK_LIB(dld, main)
704: AC_CHECK_LIB(ld, main)
705: AC_CHECK_LIB(compat, main)
706: AC_CHECK_LIB(BSD, main)
707: AC_CHECK_LIB(gen, main)
708: AC_CHECK_LIB(PW, main)
1.95 petere 709: AC_CHECK_LIB(resolv, main)
1.104 petere 710: AC_CHECK_LIB([[unix]], main)
1.21 petere 711: AC_SEARCH_LIBS(crypt, crypt)
1.86 tgl 712: AC_CHECK_LIB(bind, __inet_ntoa)
1.119 tgl 713: dnl Only consider libz to be present if we find <zlib.h> as well;
714: dnl furthermore, check that <zlib.h> defines z_streamp (versions before
715: dnl about 1.0.4 did not). While we could work around the lack of z_streamp,
716: dnl it seems unwise to encourage people to use such old zlib versions...
717: AC_EGREP_HEADER(z_streamp, zlib.h, [
1.28 petere 718: AC_CHECK_LIB(z, inflate)
1.86 tgl 719: ])
1.60 momjian 720:
1.28 petere 721:
722: if test "$with_krb4" = yes ; then
1.80 petere 723: AC_CHECK_LIB(des, [des_encrypt], [], [AC_MSG_ERROR([library 'des' is required for Kerberos 4])])
724: AC_CHECK_LIB(krb, [krb_sendauth], [], [AC_MSG_ERROR([library 'krb' is required for Kerberos 4])])
1.28 petere 725: fi
726:
727: if test "$with_krb5" = yes ; then
1.80 petere 728: AC_CHECK_LIB(com_err, [com_err], [], [AC_MSG_ERROR([library 'com_err' is required for Kerberos 5])])
1.68 petere 729: AC_CHECK_LIB(crypto, [krb5_encrypt], [],
1.80 petere 730: [AC_CHECK_LIB(k5crypto, [krb5_encrypt], [], [AC_MSG_ERROR([library 'crypto' or 'k5crypto' is required for Kerberos 5])])])
731: AC_CHECK_LIB(krb5, [krb5_sendauth], [], [AC_MSG_ERROR([library 'krb5' is required for Kerberos 5])])
1.28 petere 732: fi
733:
734: if test "$with_openssl" = yes ; then
735: dnl Order matters!
1.80 petere 736: AC_CHECK_LIB(crypto, [CRYPTO_new_ex_data], [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
737: AC_CHECK_LIB(ssl, [SSL_library_init], [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
1.128 petere 738: fi
739:
740: if test "$enable_nls" = yes ; then
741: PGAC_CHECK_GETTEXT
1.28 petere 742: fi
1.1 petere 743:
1.28 petere 744:
1.29 petere 745: ##
746: ## Header files
747: ##
748: dnl sys/socket.h and sys/types.h are required by AC_FUNC_ACCEPT_ARGTYPES
1.66 tgl 749: AC_CHECK_HEADERS([crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/ipc.h sys/pstat.h sys/select.h sys/sem.h sys/socket.h sys/shm.h sys/types.h sys/un.h termios.h kernel/OS.h kernel/image.h SupportDefs.h])
750:
751: dnl At least on IRIX, cpp test for netinet/tcp.h will fail unless netinet/in.h
752: dnl is included first. So can't just use AC_CHECK_HEADERS; do it this way:
753: AC_CHECK_HEADERS([netinet/in.h])
754: AC_MSG_CHECKING([for netinet/tcp.h])
755: AC_TRY_CPP([
756: #ifdef HAVE_NETINET_IN_H
757: #include <netinet/in.h>
758: #endif
759: #include <netinet/tcp.h>
760: ], [AC_DEFINE(HAVE_NETINET_TCP_H) AC_MSG_RESULT(yes)],
761: [AC_MSG_RESULT(no)])
1.29 petere 762:
1.73 petere 763: PGAC_HEADER_STRING
764:
1.28 petere 765: AC_CHECK_HEADERS([readline/readline.h readline.h], [break])
766: AC_CHECK_HEADERS([readline/history.h history.h], [break])
1.15 petere 767:
1.28 petere 768: if test "$with_krb4" = yes ; then
769: AC_CHECK_HEADER(krb.h, [], [AC_MSG_ERROR([header file <krb.h> is required for Kerberos 4])])
770: fi
771:
772: if test "$with_krb5" = yes ; then
773: AC_CHECK_HEADER(krb5.h, [], [AC_MSG_ERROR([header file <krb5.h> is required for Kerberos 5])])
774: AC_CHECK_HEADER(com_err.h, [], [AC_MSG_ERROR([header file <com_err.h> is required for Kerberos 5])])
775: fi
776:
777: if test "$with_openssl" = yes ; then
778: AC_CHECK_HEADER([openssl/ssl.h], [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
779: AC_CHECK_HEADER([openssl/err.h], [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
780: fi
781:
1.1 petere 782:
1.29 petere 783: ##
784: ## Types, structures, compiler characteristics
785: ##
1.1 petere 786: AC_C_CONST
787: AC_C_INLINE
788: AC_C_STRINGIZE
1.40 petere 789: PGAC_C_SIGNED
790: PGAC_C_VOLATILE
1.29 petere 791: AC_STRUCT_TIMEZONE
792: PGAC_UNION_SEMUN
1.44 petere 793: PGAC_STRUCT_SOCKADDR_UN
1.1 petere 794:
1.29 petere 795: ##
796: ## Functions, global variables
797: ##
1.6 petere 798: PGAC_VAR_INT_TIMEZONE
1.29 petere 799: AC_FUNC_ACCEPT_ARGTYPES
1.6 petere 800: PGAC_FUNC_GETTIMEOFDAY_1ARG
1.1 petere 801:
1.99 tgl 802: AC_CHECK_FUNCS([fcvt getopt_long memmove pstat setproctitle setsid sigprocmask sysconf waitpid dlopen fdatasync])
803:
804: dnl Check whether <unistd.h> declares fdatasync().
805: AC_EGREP_HEADER(fdatasync, unistd.h, AC_DEFINE(HAVE_FDATASYNC_DECL))
1.1 petere 806:
1.28 petere 807: AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
808: [AC_TRY_LINK(
809: [#include <machine/vmparam.h>
810: #include <sys/exec.h>
811: ],
1.1 petere 812: [PS_STRINGS->ps_nargvstr = 1;
813: PS_STRINGS->ps_argvstr = "foo";],
1.28 petere 814: [pgac_cv_var_PS_STRINGS=yes],
815: [pgac_cv_var_PS_STRINGS=no])])
816: if test "$pgac_cv_var_PS_STRINGS" = yes ; then
817: AC_DEFINE([HAVE_PS_STRINGS], [], [Define if the PS_STRINGS thing exists.])
818: fi
1.1 petere 819:
820: dnl We use our snprintf.c emulation if either snprintf() or vsnprintf()
821: dnl is missing. Yes, there are machines that have only one.
822: dnl We may also decide to use snprintf.c if snprintf() is present but does
823: dnl not have working "long long int" support -- see below.
824: SNPRINTF=''
825: AC_CHECK_FUNC(snprintf,
826: AC_DEFINE(HAVE_SNPRINTF),
827: SNPRINTF='snprintf.o')
828: AC_CHECK_FUNC(vsnprintf,
829: AC_DEFINE(HAVE_VSNPRINTF),
830: SNPRINTF='snprintf.o')
831: AC_SUBST(SNPRINTF)
832: dnl Check whether <stdio.h> declares snprintf() and vsnprintf(); if not,
833: dnl include/c.h will provide declarations. Note this is a separate test
834: dnl from whether the functions exist in the C library --- there are systems
835: dnl that have the functions but don't bother to declare them :-(
836: dnl Note: simple-minded pattern here will do wrong thing if stdio.h
837: dnl declares vsnprintf() but not snprintf(). Hopefully there are no
838: dnl systems that are *that* brain-damaged...
839: AC_EGREP_HEADER(snprintf, stdio.h, AC_DEFINE(HAVE_SNPRINTF_DECL))
840: AC_EGREP_HEADER(vsnprintf, stdio.h, AC_DEFINE(HAVE_VSNPRINTF_DECL))
1.29 petere 841:
842: # do this one the hard way in case isinf() is a macro
843: AC_CACHE_CHECK([for isinf], ac_cv_func_isinf,
1.1 petere 844: [AC_TRY_LINK(
1.29 petere 845: [#include <math.h>
846: ],
1.1 petere 847: [double x = 0.0; int res = isinf(x);],
1.29 petere 848: [ac_cv_func_isinf=yes],
849: [ac_cv_func_isinf=no])])
850:
851: if test $ac_cv_func_isinf = yes ; then
1.1 petere 852: AC_DEFINE(HAVE_ISINF)
1.29 petere 853: ISINF=
1.1 petere 854: else
855: ISINF='isinf.o'
1.29 petere 856: # Look for a way to implement a substitute for isinf()
857: AC_CHECK_FUNCS([fpclass fp_class fp_class_d class], [break])
1.1 petere 858: fi
859: AC_SUBST(ISINF)
1.29 petere 860:
1.1 petere 861: AC_CHECK_FUNC(getrusage,
862: AC_DEFINE(HAVE_GETRUSAGE),
863: GETRUSAGE='getrusage.o')
864: AC_SUBST(GETRUSAGE)
865: AC_CHECK_FUNC(srandom,
866: AC_DEFINE(HAVE_SRANDOM),
867: SRANDOM='srandom.o')
868: AC_SUBST(SRANDOM)
869: AC_CHECK_FUNC(gethostname,
870: AC_DEFINE(HAVE_GETHOSTNAME),
871: GETHOSTNAME='gethostname.o')
872: AC_SUBST(GETHOSTNAME)
873: AC_CHECK_FUNC(random,
874: AC_DEFINE(HAVE_RANDOM),
875: MISSING_RANDOM='random.o')
876: AC_SUBST(MISSING_RANDOM)
877: AC_CHECK_FUNC(inet_aton,
878: AC_DEFINE(HAVE_INET_ATON),
879: INET_ATON='inet_aton.o')
880: AC_SUBST(INET_ATON)
881: AC_CHECK_FUNC(strerror,
882: AC_DEFINE(HAVE_STRERROR),
1.92 tgl 883: STRERROR='strerror.o')
1.1 petere 884: AC_SUBST(STRERROR)
885: AC_CHECK_FUNC(strdup,
886: AC_DEFINE(HAVE_STRDUP),
887: STRDUP='../../utils/strdup.o')
888: AC_SUBST(STRDUP)
889: AC_CHECK_FUNC(strtol,
890: AC_DEFINE(HAVE_STRTOL),
891: STRTOL='strtol.o')
892: AC_SUBST(STRTOL)
893: AC_CHECK_FUNC(strtoul,
894: AC_DEFINE(HAVE_STRTOUL),
1.100 ishii 895: STRTOUL='strtoul.o')
1.1 petere 896: AC_SUBST(STRTOUL)
897: AC_CHECK_FUNC(strcasecmp,
898: AC_DEFINE(HAVE_STRCASECMP),
899: STRCASECMP='strcasecmp.o')
900: AC_SUBST(STRCASECMP)
901: AC_CHECK_FUNC(cbrt,
902: AC_DEFINE(HAVE_CBRT),
903: AC_CHECK_LIB(m, cbrt, AC_DEFINE(HAVE_CBRT)))
904:
905: # On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
906: # this hackery with HPUXMATHLIB allows us to cope.
907: HPUXMATHLIB=""
1.30 petere 908: case $host_cpu in
1.1 petere 909: hppa1.1)
910: if [[ -r /lib/pa1.1/libm.a ]] ; then
911: HPUXMATHLIB="-L /lib/pa1.1 -lm"
912: fi ;;
913: esac
914: AC_SUBST(HPUXMATHLIB)
915:
916: AC_CHECK_FUNC(rint,
917: AC_DEFINE(HAVE_RINT),
918: AC_CHECK_LIB(m, rint, AC_DEFINE(HAVE_RINT), , $HPUXMATHLIB))
919:
1.52 petere 920:
921: # Readline versions < 2.1 don't have rl_completion_append_character
922: AC_MSG_CHECKING([for rl_completion_append_character])
923: AC_TRY_LINK([#include <stdio.h>
1.117 petere 924: #ifdef HAVE_READLINE_READLINE_H
925: # include <readline/readline.h>
926: #elif defined(HAVE_READLINE_H)
1.52 petere 927: # include <readline.h>
928: #endif
1.117 petere 929: ],
1.52 petere 930: [rl_completion_append_character = 'x';],
931: [AC_MSG_RESULT(yes)
932: AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER)],
933: [AC_MSG_RESULT(no)])
934:
1.129 momjian 935: AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function])
1.1 petere 936:
937:
938: dnl Cannot use AC_CHECK_FUNC because finite may be a macro
939: AC_MSG_CHECKING(for finite)
940: AC_TRY_LINK([#include <math.h>],
941: [int dummy=finite(1.0);],
942: [AC_DEFINE(HAVE_FINITE) AC_MSG_RESULT(yes)],
943: AC_MSG_RESULT(no))
944:
945: dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
946: dnl (especially on GNU libc)
1.133 petere 947: dnl See also comments in pg_config.h.
1.1 petere 948: AC_MSG_CHECKING(for sigsetjmp)
949: AC_TRY_LINK([#include <setjmp.h>],
950: [sigjmp_buf x; sigsetjmp(x, 1);],
951: [AC_DEFINE(HAVE_SIGSETJMP) AC_MSG_RESULT(yes)],
952: AC_MSG_RESULT(no))
953:
1.42 petere 954:
955: PGAC_ARG_BOOL(enable, syslog, no, [ --enable-syslog enable logging to syslog],
956: [AC_CHECK_FUNC(syslog,
957: [AC_DEFINE([ENABLE_SYSLOG], 1,
958: [Define to 1 if to enable the syslogging code])],
959: [AC_MSG_ERROR([no syslog interface found])])])
960:
1.1 petere 961:
1.76 petere 962: AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
963: [AC_TRY_LINK([#include <unistd.h>],
964: [extern int optreset; optreset = 1;],
965: [pgac_cv_var_int_optreset=yes],
966: [pgac_cv_var_int_optreset=no])])
967: if test x"$pgac_cv_var_int_optreset" = x"yes"; then
968: AC_DEFINE(HAVE_INT_OPTRESET, 1)
969: fi
970:
1.109 petere 971:
972: # This test makes sure that run tests work at all. Sometimes a shared
973: # library is found by the linker, but the runtime linker can't find it.
974: # This check should come after all modifications of compiler or linker
975: # variables, and before any other run tests.
976: AC_MSG_CHECKING([test program])
977: AC_TRY_RUN([int main() { return 0; }],
978: [AC_MSG_RESULT(ok)],
979: [AC_MSG_RESULT(failed)
980: AC_MSG_ERROR([[
981: *** Could not execute a simple test program. This may be a problem
982: *** related to locating shared libraries. Check the file 'config.log'
983: *** for the exact reason.]])],
984: [AC_MSG_RESULT([cross-compiling])])
985:
986:
1.1 petere 987: dnl Check to see if we have a working 64-bit integer type.
988: dnl This breaks down into two steps:
989: dnl (1) figure out if the compiler has a 64-bit int type with working
990: dnl arithmetic, and if so
991: dnl (2) see whether snprintf() can format the type correctly. (Currently,
992: dnl snprintf is the only library routine we really need for int8 support.)
993: dnl It's entirely possible to have a compiler that handles a 64-bit type
994: dnl when the C library doesn't; this is fairly likely when using gcc on
995: dnl an older platform, for example.
996: dnl If there is no native snprintf() or it does not handle the 64-bit type,
997: dnl we force our own version of snprintf() to be used instead.
998: dnl Note this test must be run after our initial check for snprintf/vsnprintf.
999:
1.6 petere 1000: PGAC_TYPE_64BIT_INT([long int])
1.1 petere 1001:
1.6 petere 1002: if test x"$HAVE_LONG_INT_64" = x"no" ; then
1003: PGAC_TYPE_64BIT_INT([long long int])
1004: fi
1.1 petere 1005:
1006:
1.112 tgl 1007: dnl If we need to use "long long int", figure out whether nnnLL notation works.
1008:
1009: if [[ x"$HAVE_LONG_LONG_INT_64" = xyes ]] ; then
1010: AC_TRY_COMPILE([
1011: #define INT64CONST(x) x##LL
1012: long long int foo = INT64CONST(0x1234567890123456);
1013: ],
1014: [],
1015: [AC_DEFINE(HAVE_LL_CONSTANTS)],
1016: [])
1017: fi
1018:
1019:
1.1 petere 1020: dnl If we found "long int" is 64 bits, assume snprintf handles it.
1021: dnl If we found we need to use "long long int", better check.
1022: dnl We cope with snprintfs that use either %lld or %qd as the format.
1023: dnl If neither works, fall back to our own snprintf emulation (which we
1024: dnl know uses %lld).
1025:
1.7 petere 1026: if [[ x"$HAVE_LONG_LONG_INT_64" = xyes ]] ; then
1.1 petere 1027: if [[ x$SNPRINTF = x ]] ; then
1028: AC_MSG_CHECKING(whether snprintf handles 'long long int' as %lld)
1029: AC_TRY_RUN([#include <stdio.h>
1030: typedef long long int int64;
1031: #define INT64_FORMAT "%lld"
1032:
1033: int64 a = 20000001;
1034: int64 b = 40000005;
1035:
1036: int does_int64_snprintf_work()
1037: {
1038: int64 c;
1039: char buf[100];
1040:
1041: if (sizeof(int64) != 8)
1042: return 0; /* doesn't look like the right size */
1043:
1044: c = a * b;
1045: snprintf(buf, 100, INT64_FORMAT, c);
1046: if (strcmp(buf, "800000140000005") != 0)
1047: return 0; /* either multiply or snprintf is busted */
1048: return 1;
1049: }
1050: main() {
1051: exit(! does_int64_snprintf_work());
1052: }],
1053: [ AC_MSG_RESULT(yes)
1054: INT64_FORMAT='"%lld"'
1055: ],
1056: [ AC_MSG_RESULT(no)
1057: AC_MSG_CHECKING(whether snprintf handles 'long long int' as %qd)
1058: AC_TRY_RUN([#include <stdio.h>
1059: typedef long long int int64;
1060: #define INT64_FORMAT "%qd"
1061:
1062: int64 a = 20000001;
1063: int64 b = 40000005;
1064:
1065: int does_int64_snprintf_work()
1066: {
1067: int64 c;
1068: char buf[100];
1069:
1070: if (sizeof(int64) != 8)
1071: return 0; /* doesn't look like the right size */
1072:
1073: c = a * b;
1074: snprintf(buf, 100, INT64_FORMAT, c);
1075: if (strcmp(buf, "800000140000005") != 0)
1076: return 0; /* either multiply or snprintf is busted */
1077: return 1;
1078: }
1079: main() {
1080: exit(! does_int64_snprintf_work());
1081: }],
1082: [ AC_MSG_RESULT(yes)
1083: INT64_FORMAT='"%qd"'
1084: ],
1085: [ AC_MSG_RESULT(no)
1086: # Force usage of our own snprintf, since system snprintf is broken
1087: SNPRINTF='snprintf.o'
1088: INT64_FORMAT='"%lld"'
1089: ],
1090: [ AC_MSG_RESULT(assuming not on target machine)
1091: # Force usage of our own snprintf, since we cannot test foreign snprintf
1092: SNPRINTF='snprintf.o'
1093: INT64_FORMAT='"%lld"'
1094: ]) ],
1095: [ AC_MSG_RESULT(assuming not on target machine)
1096: # Force usage of our own snprintf, since we cannot test foreign snprintf
1097: SNPRINTF='snprintf.o'
1098: INT64_FORMAT='"%lld"'
1099: ])
1100: else
1101: # here if we previously decided we needed to use our own snprintf
1102: INT64_FORMAT='"%lld"'
1103: fi
1104: else
1105: # Here if we are not using 'long long int' at all
1106: INT64_FORMAT='"%ld"'
1107: fi
1108:
1109: AC_DEFINE_UNQUOTED(INT64_FORMAT, $INT64_FORMAT)
1110:
1111:
1.78 petere 1112: AC_CHECK_FUNCS([strtoll strtoq], [break])
1113: AC_CHECK_FUNCS([strtoull strtouq], [break])
1114:
1.102 ishii 1115: dnl psql needs atexit() or on_exit()
1116: AC_CHECK_FUNC(atexit,
1117: [AC_DEFINE(HAVE_ATEXIT)],
1118: [AC_CHECK_FUNCS(on_exit,
1119: [AC_DEFINE(HAVE_ON_EXIT)],
1120: [AC_MSG_ERROR([atexi() nor on_exit() found])])])
1.78 petere 1121:
1.84 tgl 1122: dnl Need a #define for the size of Datum (unsigned long)
1123:
1124: AC_CHECK_SIZEOF(unsigned long, 4)
1125: AC_DEFINE_UNQUOTED(SIZEOF_DATUM, $ac_cv_sizeof_unsigned_long)
1126:
1.1 petere 1127: dnl Determine memory alignment requirements for the basic C datatypes.
1128:
1.6 petere 1129: PGAC_CHECK_ALIGNOF(short)
1130: PGAC_CHECK_ALIGNOF(int)
1131: PGAC_CHECK_ALIGNOF(long)
1.7 petere 1132: if [[ x"$HAVE_LONG_LONG_INT_64" = xyes ]] ; then
1.6 petere 1133: PGAC_CHECK_ALIGNOF(long long int)
1.1 petere 1134: fi
1.6 petere 1135: PGAC_CHECK_ALIGNOF(double)
1.1 petere 1136:
1137: dnl Compute maximum alignment of any basic type.
1138: dnl We assume long's alignment is at least as strong as char, short, or int;
1139: dnl but we must check long long (if it exists) and double.
1140:
1.6 petere 1141: if test $pgac_cv_alignof_double != 'sizeof(double)' ; then
1142: MAX_ALIGNOF=$pgac_cv_alignof_long
1143: if test $MAX_ALIGNOF -lt $pgac_cv_alignof_double ; then
1144: MAX_ALIGNOF=$pgac_cv_alignof_double
1.1 petere 1145: fi
1.7 petere 1146: if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $pgac_cv_alignof_long_long_int ; then
1.6 petere 1147: MAX_ALIGNOF="$pgac_cv_alignof_long_long_int"
1.1 petere 1148: fi
1149: else
1150: dnl cross-compiling: assume that double's alignment is worst case
1.6 petere 1151: MAX_ALIGNOF="$pgac_cv_alignof_double"
1.1 petere 1152: fi
1.6 petere 1153: AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any type])
1.1 petere 1154:
1.6 petere 1155: PGAC_FUNC_POSIX_SIGNALS
1.1 petere 1156:
1157:
1.43 petere 1158: # Check for Tcl configuration script tclConfig.sh
1159: if test "$with_tcl" = yes; then
1160: PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
1161: fi
1.1 petere 1162:
1.43 petere 1163: # Check for Tk configuration script tkConfig.sh
1164: if test "$with_tk" = yes; then
1165: PGAC_PATH_TKCONFIGSH([$with_tkconfig $with_tclconfig])
1.1 petere 1166: fi
1167:
1168:
1.75 petere 1169: #
1170: # Check for DocBook and tools
1171: #
1172: PGAC_PROG_NSGMLS
1173: # If you don't have nsgmls you won't get very far, so save the cycles.
1174: if test -n "$NSGMLS"; then
1175: PGAC_PROG_JADE
1176: PGAC_CHECK_DOCBOOK([3.1])
1177: PGAC_PATH_DOCBOOK_STYLESHEETS
1178: AC_CHECK_PROGS(SGMLSPL, sgmlspl)
1179: fi
1180:
1.104 petere 1181: # check whether 'test -ef' works
1182: if (test "$srcdir" -ef "$srcdir") >/dev/null 2>&1 ; then
1183: test_ef_works=yes
1184: else
1185: test_ef_works=no
1186: fi
1187:
1188: abs_top_srcdir=
1189: AC_SUBST(abs_top_srcdir)
1.61 petere 1190:
1.104 petere 1191: if test "$test_ef_works" = yes ; then
1192: # prepare build tree if outside source tree
1193: if test "$srcdir" -ef . ; then : ; else
1194: abs_top_srcdir=`cd $srcdir && pwd`
1195: echo $ac_n "preparing build tree... $ac_c" 1>&6
1196: /bin/sh "$srcdir/config/prep_buildtree" "$abs_top_srcdir" "." \
1197: || AC_MSG_ERROR(failed)
1198: AC_MSG_RESULT(done)
1199: fi
1.61 petere 1200: fi
1.1 petere 1201:
1202: AC_OUTPUT(
1.33 petere 1203: [
1204: GNUmakefile
1205: src/GNUmakefile
1206: src/Makefile.global
1207: src/backend/port/Makefile
1.85 tgl 1208: ],
1209: [
1.133 petere 1210: # Update timestamp for pg_config.h (see Makefile.global)
1.87 petere 1211: test x"$CONFIG_HEADERS" != x"" && echo >src/include/stamp-h
1.83 petere 1212: ])
PostgreSQL CVSweb <[email protected]>