]> granicus.if.org Git - postgresql/blob - configure.in
Improve documentation about MULE encoding.
[postgresql] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 dnl configure.in
3 dnl
4 dnl Developers, please strive to achieve this order:
5 dnl
6 dnl 0. Initialization and options processing
7 dnl 1. Programs
8 dnl 2. Libraries
9 dnl 3. Header files
10 dnl 4. Types
11 dnl 5. Structures
12 dnl 6. Compiler characteristics
13 dnl 7. Functions, global variables
14 dnl 8. System services
15 dnl
16 dnl Read the Autoconf manual for details.
17 dnl
18 m4_pattern_forbid(^PGAC_)dnl to catch undefined macros
19
20 AC_INIT([PostgreSQL], [9.3devel], [pgsql-bugs@postgresql.org])
21
22 m4_if(m4_defn([m4_PACKAGE_VERSION]), [2.63], [], [m4_fatal([Autoconf version 2.63 is required.
23 Untested combinations of 'autoconf' and PostgreSQL versions are not
24 recommended.  You can remove the check from 'configure.in' but it is then
25 your responsibility whether the result works or not.])])
26 AC_COPYRIGHT([Copyright (c) 1996-2012, PostgreSQL Global Development Group])
27 AC_CONFIG_SRCDIR([src/backend/access/common/heaptuple.c])
28 AC_CONFIG_AUX_DIR(config)
29 AC_PREFIX_DEFAULT(/usr/local/pgsql)
30 AC_SUBST(configure_args, [$ac_configure_args])
31
32 AC_DEFINE_UNQUOTED(PG_VERSION, "$PACKAGE_VERSION", [PostgreSQL version as a string])
33 [PG_MAJORVERSION=`expr "$PACKAGE_VERSION" : '\([0-9][0-9]*\.[0-9][0-9]*\)'`]
34 AC_SUBST(PG_MAJORVERSION)
35 AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major version as a string])
36
37 AC_CANONICAL_HOST
38
39 template=
40 AC_MSG_CHECKING([which template to use])
41
42 PGAC_ARG_REQ(with, template, [NAME], [override operating system template],
43 [
44   case $withval in
45     list)   echo; ls "$srcdir/src/template"; exit;;
46     *)      if test -f "$srcdir/src/template/$with_template" ; then
47               template=$withval
48             else
49               AC_MSG_ERROR(['$withval' is not a valid template name. Use 'list' for a list.])
50             fi;;
51   esac
52 ],
53 [
54 # --with-template not given
55
56 case $host_os in
57      aix*) template=aix ;;
58   cygwin*) template=cygwin ;;
59   darwin*) template=darwin ;;
60 dragonfly*) template=netbsd ;;
61  freebsd*) template=freebsd ;;
62     hpux*) template=hpux ;;
63     irix*) template=irix ;;
64  linux*|gnu*|k*bsd*-gnu)
65            template=linux ;;
66    mingw*) template=win32 ;;
67   netbsd*) template=netbsd ;;
68  openbsd*) template=openbsd ;;
69      osf*) template=osf ;;
70      sco*) template=sco ;;
71  solaris*) template=solaris ;;
72    sysv5*) template=unixware ;;
73 esac
74
75   if test x"$template" = x"" ; then
76     AC_MSG_ERROR([[
77 *******************************************************************
78 PostgreSQL has apparently not been ported to your platform yet.
79 To try a manual configuration, look into the src/template directory
80 for a similar platform and use the '--with-template=' option.
81
82 Please also contact <pgsql-bugs@postgresql.org> to see about
83 rectifying this.  Include the above 'checking host system type...'
84 line.
85 *******************************************************************
86 ]])
87   fi
88
89 ])
90
91 AC_MSG_RESULT([$template])
92
93 PORTNAME=$template
94 AC_SUBST(PORTNAME)
95
96 # Initialize default assumption that we do not need separate assembly code
97 # for TAS (test-and-set).  This can be overridden by the template file
98 # when it's executed.
99 need_tas=no
100 tas_file=dummy.s
101
102
103
104 ##
105 ## Command line options
106 ##
107
108 #
109 # Add non-standard directories to the include path
110 #
111 PGAC_ARG_REQ(with, includes, [DIRS], [look for additional header files in DIRS])
112
113
114 #
115 # Add non-standard directories to the library search path
116 #
117 PGAC_ARG_REQ(with, libraries, [DIRS], [look for additional libraries in DIRS],
118              [LIBRARY_DIRS=$withval])
119
120 PGAC_ARG_REQ(with, libs,      [DIRS], [alternative spelling of --with-libraries],
121              [LIBRARY_DIRS=$withval])
122
123
124 #
125 # 64-bit integer date/time storage: enabled by default.
126 #
127 AC_MSG_CHECKING([whether to build with 64-bit integer date/time support])
128 PGAC_ARG_BOOL(enable, integer-datetimes, yes, [disable 64-bit integer date/time support],
129               [AC_DEFINE([USE_INTEGER_DATETIMES], 1,
130                          [Define to 1 if you want 64-bit integer timestamp and interval support. (--enable-integer-datetimes)])])
131 AC_MSG_RESULT([$enable_integer_datetimes])
132
133
134 #
135 # NLS
136 #
137 AC_MSG_CHECKING([whether NLS is wanted])
138 PGAC_ARG_OPTARG(enable, nls,
139                 [LANGUAGES], [enable Native Language Support],
140                 [],
141                 [WANTED_LANGUAGES=$enableval],
142                 [AC_DEFINE(ENABLE_NLS, 1,
143                            [Define to 1 if you want National Language Support. (--enable-nls)])])
144 AC_MSG_RESULT([$enable_nls])
145 AC_SUBST(enable_nls)
146 AC_SUBST(WANTED_LANGUAGES)
147
148 #
149 # Default port number (--with-pgport), default 5432
150 #
151 AC_MSG_CHECKING([for default port number])
152 PGAC_ARG_REQ(with, pgport, [PORTNUM], [set default port number [5432]],
153              [default_port=$withval],
154              [default_port=5432])
155 AC_MSG_RESULT([$default_port])
156 # Need both of these because some places want an integer and some a string
157 AC_DEFINE_UNQUOTED(DEF_PGPORT, ${default_port},
158 [Define to the default TCP port number on which the server listens and
159 to which clients will try to connect.  This can be overridden at run-time,
160 but it's convenient if your clients have the right default compiled in.
161 (--with-pgport=PORTNUM)])
162 AC_DEFINE_UNQUOTED(DEF_PGPORT_STR, "${default_port}",
163                    [Define to the default TCP port number as a string constant.])
164 AC_SUBST(default_port)
165
166 #
167 # Option to disable shared libraries
168 #
169 PGAC_ARG_BOOL(enable, shared, yes,
170               [do not build shared libraries])
171 AC_SUBST(enable_shared)
172
173 #
174 # '-rpath'-like feature can be disabled
175 #
176 PGAC_ARG_BOOL(enable, rpath, yes,
177               [do not embed shared library search path in executables])
178 AC_SUBST(enable_rpath)
179
180 #
181 # Spinlocks
182 #
183 PGAC_ARG_BOOL(enable, spinlocks, yes,
184               [do not use spinlocks])
185
186 #
187 # --enable-debug adds -g to compiler flags
188 #
189 PGAC_ARG_BOOL(enable, debug, no,
190               [build with debugging symbols (-g)])
191 AC_SUBST(enable_debug)
192
193 #
194 # --enable-profiling enables gcc profiling
195 #
196 PGAC_ARG_BOOL(enable, profiling, no,
197               [build with profiling enabled ])
198
199 #
200 # --enable-coverage enables generation of code coverage metrics with gcov
201 #
202 PGAC_ARG_BOOL(enable, coverage, no,
203               [build with coverage testing instrumentation],
204 [AC_CHECK_PROGS(GCOV, gcov)
205 if test -z "$GCOV"; then
206   AC_MSG_ERROR([gcov not found])
207 fi
208 AC_CHECK_PROGS(LCOV, lcov)
209 if test -z "$LCOV"; then
210   AC_MSG_ERROR([lcov not found])
211 fi
212 AC_CHECK_PROGS(GENHTML, genhtml)
213 if test -z "$GENHTML"; then
214   AC_MSG_ERROR([genhtml not found])
215 fi])
216 AC_SUBST(enable_coverage)
217
218 #
219 # DTrace
220 #
221 PGAC_ARG_BOOL(enable, dtrace, no,
222               [build with DTrace support],
223 [AC_CHECK_PROGS(DTRACE, dtrace)
224 if test -z "$DTRACE"; then
225   AC_MSG_ERROR([dtrace not found])
226 fi
227 AC_SUBST(DTRACEFLAGS)])
228 AC_SUBST(enable_dtrace)
229
230 #
231 # Block size
232 #
233 AC_MSG_CHECKING([for block size])
234 PGAC_ARG_REQ(with, blocksize, [BLOCKSIZE], [set table block size in kB [8]],
235              [blocksize=$withval],
236              [blocksize=8])
237 case ${blocksize} in
238   1) BLCKSZ=1024;;
239   2) BLCKSZ=2048;;
240   4) BLCKSZ=4096;;
241   8) BLCKSZ=8192;;
242  16) BLCKSZ=16384;;
243  32) BLCKSZ=32768;;
244   *) AC_MSG_ERROR([Invalid block size. Allowed values are 1,2,4,8,16,32.])
245 esac
246 AC_MSG_RESULT([${blocksize}kB])
247
248 AC_DEFINE_UNQUOTED([BLCKSZ], ${BLCKSZ}, [
249  Size of a disk block --- this also limits the size of a tuple.  You
250  can set it bigger if you need bigger tuples (although TOAST should
251  reduce the need to have large tuples, since fields can be spread
252  across multiple tuples).
253
254  BLCKSZ must be a power of 2.  The maximum possible value of BLCKSZ
255  is currently 2^15 (32768).  This is determined by the 15-bit widths
256  of the lp_off and lp_len fields in ItemIdData (see
257  include/storage/itemid.h).
258
259  Changing BLCKSZ requires an initdb.
260 ])
261
262 #
263 # Relation segment size
264 #
265 AC_MSG_CHECKING([for segment size])
266 PGAC_ARG_REQ(with, segsize, [SEGSIZE], [set table segment size in GB [1]],
267              [segsize=$withval],
268              [segsize=1])
269 # this expression is set up to avoid unnecessary integer overflow
270 # blocksize is already guaranteed to be a factor of 1024
271 RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
272 test $? -eq 0 || exit 1
273 AC_MSG_RESULT([${segsize}GB])
274
275 AC_DEFINE_UNQUOTED([RELSEG_SIZE], ${RELSEG_SIZE}, [
276  RELSEG_SIZE is the maximum number of blocks allowed in one disk file.
277  Thus, the maximum size of a single file is RELSEG_SIZE * BLCKSZ;
278  relations bigger than that are divided into multiple files.
279
280  RELSEG_SIZE * BLCKSZ must be less than your OS' limit on file size.
281  This is often 2 GB or 4GB in a 32-bit operating system, unless you
282  have large file support enabled.  By default, we make the limit 1 GB
283  to avoid any possible integer-overflow problems within the OS.
284  A limit smaller than necessary only means we divide a large
285  relation into more chunks than necessary, so it seems best to err
286  in the direction of a small limit.
287
288  A power-of-2 value is recommended to save a few cycles in md.c,
289  but is not absolutely required.
290
291  Changing RELSEG_SIZE requires an initdb.
292 ])
293
294 #
295 # WAL block size
296 #
297 AC_MSG_CHECKING([for WAL block size])
298 PGAC_ARG_REQ(with, wal-blocksize, [BLOCKSIZE], [set WAL block size in kB [8]],
299              [wal_blocksize=$withval],
300              [wal_blocksize=8])
301 case ${wal_blocksize} in
302   1) XLOG_BLCKSZ=1024;;
303   2) XLOG_BLCKSZ=2048;;
304   4) XLOG_BLCKSZ=4096;;
305   8) XLOG_BLCKSZ=8192;;
306  16) XLOG_BLCKSZ=16384;;
307  32) XLOG_BLCKSZ=32768;;
308  64) XLOG_BLCKSZ=65536;;
309   *) AC_MSG_ERROR([Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64.])
310 esac
311 AC_MSG_RESULT([${wal_blocksize}kB])
312
313 AC_DEFINE_UNQUOTED([XLOG_BLCKSZ], ${XLOG_BLCKSZ}, [
314  Size of a WAL file block.  This need have no particular relation to BLCKSZ.
315  XLOG_BLCKSZ must be a power of 2, and if your system supports O_DIRECT I/O,
316  XLOG_BLCKSZ must be a multiple of the alignment requirement for direct-I/O
317  buffers, else direct I/O may fail.
318
319  Changing XLOG_BLCKSZ requires an initdb.
320 ])
321
322 #
323 # WAL segment size
324 #
325 AC_MSG_CHECKING([for WAL segment size])
326 PGAC_ARG_REQ(with, wal-segsize, [SEGSIZE], [set WAL segment size in MB [16]],
327              [wal_segsize=$withval],
328              [wal_segsize=16])
329 case ${wal_segsize} in
330   1) ;;
331   2) ;;
332   4) ;;
333   8) ;;
334  16) ;;
335  32) ;;
336  64) ;;
337   *) AC_MSG_ERROR([Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64.])
338 esac
339 AC_MSG_RESULT([${wal_segsize}MB])
340
341 AC_DEFINE_UNQUOTED([XLOG_SEG_SIZE], [(${wal_segsize} * 1024 * 1024)], [
342  XLOG_SEG_SIZE is the size of a single WAL file.  This must be a power of 2
343  and larger than XLOG_BLCKSZ (preferably, a great deal larger than
344  XLOG_BLCKSZ).
345
346  Changing XLOG_SEG_SIZE requires an initdb.
347 ])
348
349 #
350 # C compiler
351 #
352
353 # For historical reasons you can also use --with-CC to specify the C compiler
354 # to use, although the standard way to do this is to set the CC environment
355 # variable.
356 PGAC_ARG_REQ(with, CC, [CMD], [set compiler (deprecated)], [CC=$with_CC])
357
358 case $template in
359   aix) pgac_cc_list="gcc xlc";;
360  irix) pgac_cc_list="cc";; # no gcc
361     *) pgac_cc_list="gcc cc";;
362 esac
363
364 AC_PROG_CC([$pgac_cc_list])
365
366 # Check if it's Intel's compiler, which (usually) pretends to be gcc,
367 # but has idiosyncrasies of its own.  We assume icc will define
368 # __INTEL_COMPILER regardless of CFLAGS.
369 AC_TRY_COMPILE([], [@%:@ifndef __INTEL_COMPILER
370 choke me
371 @%:@endif], [ICC=[yes]], [ICC=[no]])
372
373 # Check if it's Sun Studio compiler. We assume that
374 # __SUNPRO_C will be defined for Sun Studio compilers
375 AC_TRY_COMPILE([], [@%:@ifndef __SUNPRO_C
376 choke me
377 @%:@endif], [SUN_STUDIO_CC=yes], [SUN_STUDIO_CC=no])
378
379 AC_SUBST(SUN_STUDIO_CC)
380
381 unset CFLAGS
382
383 #
384 # Read the template
385 #
386 . "$srcdir/src/template/$template" || exit
387
388 # CFLAGS are selected so:
389 # If the user specifies something in the environment, that is used.
390 # else:  If the template file set something, that is used.
391 # else:  If coverage was enabled, don't set anything.
392 # else:  If the compiler is GCC, then we use -O2.
393 # else:  If the compiler is something else, then we use -O, unless debugging.
394
395 if test "$ac_env_CFLAGS_set" = set; then
396   CFLAGS=$ac_env_CFLAGS_value
397 elif test "${CFLAGS+set}" = set; then
398   : # (keep what template set)
399 elif test "$enable_coverage" = yes; then
400   : # no optimization by default
401 elif test "$GCC" = yes; then
402   CFLAGS="-O2"
403 else
404   # if the user selected debug mode, don't use -O
405   if test "$enable_debug" != yes; then
406     CFLAGS="-O"
407   fi
408 fi
409
410 # Some versions of GCC support some additional useful warning flags.
411 # Check whether they are supported, and add them to CFLAGS if so.
412 # ICC pretends to be GCC but it's lying; it doesn't support these flags,
413 # but has its own.  Also check other compiler-specific flags here.
414
415 if test "$GCC" = yes -a "$ICC" = no; then
416   CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith"
417   # These work in some but not all gcc versions
418   PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
419   PGAC_PROG_CC_CFLAGS_OPT([-Wendif-labels])
420   PGAC_PROG_CC_CFLAGS_OPT([-Wmissing-format-attribute])
421   # This was included in -Wall/-Wformat in older GCC versions
422   PGAC_PROG_CC_CFLAGS_OPT([-Wformat-security])
423   # Disable strict-aliasing rules; needed for gcc 3.3+
424   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
425   # Disable optimizations that assume no overflow; needed for gcc 4.3+
426   PGAC_PROG_CC_CFLAGS_OPT([-fwrapv])
427   # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
428   PGAC_PROG_CC_CFLAGS_OPT([-fexcess-precision=standard])
429 elif test "$ICC" = yes; then
430   # Intel's compiler has a bug/misoptimization in checking for
431   # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
432   PGAC_PROG_CC_CFLAGS_OPT([-mp1])
433   # Make sure strict aliasing is off (though this is said to be the default)
434   PGAC_PROG_CC_CFLAGS_OPT([-fno-strict-aliasing])
435 elif test "$PORTNAME" = "aix"; then
436   # AIX's xlc has to have strict aliasing turned off too
437   PGAC_PROG_CC_CFLAGS_OPT([-qnoansialias])
438 elif test "$PORTNAME" = "hpux"; then
439   # On some versions of HP-UX, libm functions do not set errno by default.
440   # Fix that by using +Olibmerrno if the compiler recognizes it.
441   PGAC_PROG_CC_CFLAGS_OPT([+Olibmerrno])
442 fi
443
444 # supply -g if --enable-debug
445 if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
446   CFLAGS="$CFLAGS -g"
447 fi
448
449 # enable code coverage if --enable-coverage
450 if test "$enable_coverage" = yes; then
451   if test "$GCC" = yes; then
452     CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
453   else
454     AC_MSG_ERROR([--enable-coverage is supported only when using GCC])
455   fi
456 fi
457
458 # enable profiling if --enable-profiling
459 if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
460   if test "$GCC" = yes; then
461     AC_DEFINE([PROFILE_PID_DIR], 1,
462            [Define to 1 to allow profiling output to be saved separately for each process.])
463     CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
464   else
465     AC_MSG_ERROR([--enable-profiling is supported only when using GCC])
466   fi
467 fi
468
469 # We already have this in Makefile.win32, but configure needs it too
470 if test "$PORTNAME" = "win32"; then
471   CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32 -DEXEC_BACKEND"
472 fi
473
474 # Check if the compiler still works with the template settings
475 AC_MSG_CHECKING([whether the C compiler still works])
476 AC_TRY_LINK([], [return 0;],
477   [AC_MSG_RESULT(yes)],
478   [AC_MSG_RESULT(no)
479    AC_MSG_ERROR([cannot proceed])])
480
481 # Defend against gcc -ffast-math
482 if test "$GCC" = yes; then
483 AC_TRY_COMPILE([], [@%:@ifdef __FAST_MATH__
484 choke me
485 @%:@endif], [], [AC_MSG_ERROR([do not put -ffast-math in CFLAGS])])
486 fi
487
488 AC_PROG_CPP
489 AC_SUBST(GCC)
490
491
492 #
493 # Set up TAS assembly code if needed; the template file has now had its
494 # chance to request this.
495 #
496 AC_CONFIG_LINKS([src/backend/port/tas.s:src/backend/port/tas/${tas_file}])
497
498 if test "$need_tas" = yes ; then
499   TAS=tas.o
500 else
501   TAS=""
502 fi
503 AC_SUBST(TAS)
504
505
506 #
507 # Automatic dependency tracking
508 #
509 PGAC_ARG_BOOL(enable, depend, no, [turn on automatic dependency tracking],
510               [autodepend=yes])
511 AC_SUBST(autodepend)
512
513
514 #
515 # Enable assert checks
516 #
517 PGAC_ARG_BOOL(enable, cassert, no, [enable assertion checks (for debugging)],
518               [AC_DEFINE([USE_ASSERT_CHECKING], 1,
519                          [Define to 1 to build with assertion checks. (--enable-cassert)])])
520
521
522 #
523 # Include directories
524 #
525 ac_save_IFS=$IFS
526 IFS="${IFS}${PATH_SEPARATOR}"
527 # SRCH_INC comes from the template file
528 for dir in $with_includes $SRCH_INC; do
529   if test -d "$dir"; then
530     INCLUDES="$INCLUDES -I$dir"
531   else
532     AC_MSG_WARN([*** Include directory $dir does not exist.])
533   fi
534 done
535 IFS=$ac_save_IFS
536 AC_SUBST(INCLUDES)
537
538
539 #
540 # Library directories
541 #
542 ac_save_IFS=$IFS
543 IFS="${IFS}${PATH_SEPARATOR}"
544 # LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
545 for dir in $LIBRARY_DIRS $SRCH_LIB; do
546   if test -d "$dir"; then
547     LIBDIRS="$LIBDIRS -L$dir"
548   else
549     AC_MSG_WARN([*** Library directory $dir does not exist.])
550   fi
551 done
552 IFS=$ac_save_IFS
553
554 #
555 # Enable thread-safe client libraries
556 #
557 AC_MSG_CHECKING([allow thread-safe client libraries])
558 PGAC_ARG_BOOL(enable, thread-safety, yes, [disable thread-safety in client libraries])
559 if test "$enable_thread_safety" = yes; then
560   AC_DEFINE([ENABLE_THREAD_SAFETY], 1,
561           [Define to 1 to build client libraries as thread-safe code. (--enable-thread-safety)])
562 fi
563 AC_MSG_RESULT([$enable_thread_safety])
564 AC_SUBST(enable_thread_safety)
565
566 #
567 # Optionally build Tcl modules (PL/Tcl)
568 #
569 AC_MSG_CHECKING([whether to build with Tcl])
570 PGAC_ARG_BOOL(with, tcl, no, [build Tcl modules (PL/Tcl)])
571 AC_MSG_RESULT([$with_tcl])
572 AC_SUBST([with_tcl])
573
574 # We see if the path to the Tcl/Tk configuration scripts is specified.
575 # This will override the use of tclsh to find the paths to search.
576
577 PGAC_ARG_REQ(with, tclconfig, [DIR], [tclConfig.sh is in DIR])
578
579 #
580 # Optionally build Perl modules (PL/Perl)
581 #
582 AC_MSG_CHECKING([whether to build Perl modules])
583 PGAC_ARG_BOOL(with, perl, no, [build Perl modules (PL/Perl)])
584 AC_MSG_RESULT([$with_perl])
585 AC_SUBST(with_perl)
586
587 #
588 # Optionally build Python modules (PL/Python)
589 #
590 AC_MSG_CHECKING([whether to build Python modules])
591 PGAC_ARG_BOOL(with, python, no, [build Python modules (PL/Python)])
592 AC_MSG_RESULT([$with_python])
593 AC_SUBST(with_python)
594
595 #
596 # GSSAPI
597 #
598 AC_MSG_CHECKING([whether to build with GSSAPI support])
599 PGAC_ARG_BOOL(with, gssapi, no, [build with GSSAPI support],
600 [
601   AC_DEFINE(ENABLE_GSS, 1, [Define to build with GSSAPI support. (--with-gssapi)])
602   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
603 ])
604 AC_MSG_RESULT([$with_gssapi])
605
606 #
607 # Kerberos 5
608 #
609 AC_MSG_CHECKING([whether to build with Kerberos 5 support])
610 PGAC_ARG_BOOL(with, krb5, no, [build with Kerberos 5 support],
611 [
612   AC_DEFINE(KRB5, 1, [Define to build with Kerberos 5 support. (--with-krb5)])
613   krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
614 ])
615 AC_MSG_RESULT([$with_krb5])
616
617
618 AC_SUBST(krb_srvtab)
619
620
621 #
622 # Kerberos configuration parameters
623 #
624 PGAC_ARG_REQ(with, krb-srvnam,
625              [NAME], [default service principal name in Kerberos [postgres]],
626              [],
627              [with_krb_srvnam="postgres"])
628 AC_DEFINE_UNQUOTED([PG_KRB_SRVNAM], ["$with_krb_srvnam"],
629                    [Define to the name of the default PostgreSQL service principal in Kerberos. (--with-krb-srvnam=NAME)])
630
631
632 #
633 # PAM
634 #
635 AC_MSG_CHECKING([whether to build with PAM support])
636 PGAC_ARG_BOOL(with, pam, no,
637               [build with PAM support],
638               [AC_DEFINE([USE_PAM], 1, [Define to 1 to build with PAM support. (--with-pam)])])
639 AC_MSG_RESULT([$with_pam])
640
641
642 #
643 # LDAP
644 #
645 AC_MSG_CHECKING([whether to build with LDAP support])
646 PGAC_ARG_BOOL(with, ldap, no,
647               [build with LDAP support],
648               [AC_DEFINE([USE_LDAP], 1, [Define to 1 to build with LDAP support. (--with-ldap)])])
649 AC_MSG_RESULT([$with_ldap])
650
651
652 #
653 # Bonjour
654 #
655 AC_MSG_CHECKING([whether to build with Bonjour support])
656 PGAC_ARG_BOOL(with, bonjour, no,
657               [build with Bonjour support],
658               [AC_DEFINE([USE_BONJOUR], 1, [Define to 1 to build with Bonjour support. (--with-bonjour)])])
659 AC_MSG_RESULT([$with_bonjour])
660
661
662 #
663 # OpenSSL
664 #
665 AC_MSG_CHECKING([whether to build with OpenSSL support])
666 PGAC_ARG_BOOL(with, openssl, no, [build with OpenSSL support],
667               [AC_DEFINE([USE_SSL], 1, [Define to build with (Open)SSL support. (--with-openssl)])])
668 AC_MSG_RESULT([$with_openssl])
669 AC_SUBST(with_openssl)
670
671 #
672 # SELinux
673 #
674 AC_MSG_CHECKING([whether to build with SELinux support])
675 PGAC_ARG_BOOL(with, selinux, no, [build with SELinux support])
676 AC_SUBST(with_selinux)
677 AC_MSG_RESULT([$with_selinux])
678
679 #
680 # Readline
681 #
682 PGAC_ARG_BOOL(with, readline, yes,
683               [do not use GNU Readline nor BSD Libedit for editing])
684 # readline on MinGW has problems with backslashes in psql and other bugs.
685 # This is particularly a problem with non-US code pages.
686 # Therefore disable its use until we understand the cause. 2004-07-20
687 if test "$PORTNAME" = "win32"; then
688   if test "$with_readline" = yes; then
689     AC_MSG_WARN([*** Readline does not work on MinGW --- disabling])
690     with_readline=no
691   fi
692 fi
693
694
695 #
696 # Prefer libedit
697 #
698 PGAC_ARG_BOOL(with, libedit-preferred, no,
699               [prefer BSD Libedit over GNU Readline])
700
701
702 #
703 # OSSP UUID library
704 #
705 PGAC_ARG_BOOL(with, ossp-uuid, no, [build contrib/uuid-ossp, requires OSSP UUID library])
706 AC_SUBST(with_ossp_uuid)
707
708
709 #
710 # XML
711 #
712 PGAC_ARG_BOOL(with, libxml, no, [build with XML support],
713               [AC_DEFINE([USE_LIBXML], 1, [Define to 1 to build with XML support. (--with-libxml)])])
714
715 if test "$with_libxml" = yes ; then
716   AC_CHECK_PROGS(XML2_CONFIG, xml2-config)
717   if test -n "$XML2_CONFIG"; then
718     for pgac_option in `$XML2_CONFIG --cflags`; do
719       case $pgac_option in
720         -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
721       esac
722     done
723     for pgac_option in `$XML2_CONFIG --libs`; do
724       case $pgac_option in
725         -L*) LDFLAGS="$LDFLAGS $pgac_option";;
726       esac
727     done
728   fi
729 fi
730
731 AC_SUBST(with_libxml)
732
733 #
734 # XSLT
735 #
736 PGAC_ARG_BOOL(with, libxslt, no, [use XSLT support when building contrib/xml2],
737               [AC_DEFINE([USE_LIBXSLT], 1, [Define to 1 to use XSLT support when building contrib/xml2. (--with-libxslt)])])
738
739
740 AC_SUBST(with_libxslt)
741
742 #
743 # tzdata
744 #
745 PGAC_ARG_REQ(with, system-tzdata,
746              [DIR], [use system time zone data in DIR])
747 AC_SUBST(with_system_tzdata)
748
749 #
750 # Zlib
751 #
752 PGAC_ARG_BOOL(with, zlib, yes,
753               [do not use Zlib])
754 AC_SUBST(with_zlib)
755
756 #
757 # Elf
758 #
759
760 # Assume system is ELF if it predefines __ELF__ as 1,
761 # otherwise believe host_os based default.
762 case $host_os in
763     freebsd1*|freebsd2*) elf=no;;
764     freebsd3*|freebsd4*) elf=yes;;
765 esac
766
767 AC_EGREP_CPP(yes,
768 [#if __ELF__
769   yes
770 #endif
771 ],
772 [ELF_SYS=true],
773 [if test "X$elf" = "Xyes" ; then
774   ELF_SYS=true
775 else
776   ELF_SYS=
777 fi])
778 AC_SUBST(ELF_SYS)
779
780 #
781 # Assignments
782 #
783
784 CPPFLAGS="$CPPFLAGS $INCLUDES"
785 LDFLAGS="$LDFLAGS $LIBDIRS"
786
787 AC_ARG_VAR(LDFLAGS_EX, [extra linker flags for linking executables only])
788 AC_ARG_VAR(LDFLAGS_SL, [extra linker flags for linking shared libraries only])
789
790 PGAC_PROG_LD
791 AC_SUBST(LD)
792 AC_SUBST(with_gnu_ld)
793 case $host_os in sysv5*)
794   AC_CACHE_CHECK([whether ld -R works], [pgac_cv_prog_ld_R],
795   [
796     pgac_save_LDFLAGS=$LDFLAGS; LDFLAGS="$LDFLAGS -Wl,-R/usr/lib"
797     AC_TRY_LINK([], [], [pgac_cv_prog_ld_R=yes], [pgac_cv_prog_ld_R=no])
798     LDFLAGS=$pgac_save_LDFLAGS
799   ])
800   ld_R_works=$pgac_cv_prog_ld_R
801   AC_SUBST(ld_R_works)
802 esac
803 AC_PROG_RANLIB
804 PGAC_CHECK_STRIP
805 AC_CHECK_TOOL(AR, ar, ar)
806 if test "$PORTNAME" = "win32"; then
807   AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool)
808   AC_CHECK_TOOL(DLLWRAP, dllwrap, dllwrap)
809   AC_CHECK_TOOL(WINDRES, windres, windres)
810 fi
811
812 AC_PROG_INSTALL
813 # When Autoconf chooses install-sh as install program it tries to generate
814 # a relative path to it in each makefile where it subsitutes it. This clashes
815 # with our Makefile.global concept. This workaround helps.
816 case $INSTALL in
817   *install-sh*) install_bin='';;
818   *) install_bin=$INSTALL;;
819 esac
820 AC_SUBST(install_bin)
821
822 AC_PATH_PROG(TAR, tar)
823 AC_PROG_LN_S
824 AC_PROG_AWK
825 AC_PROG_MKDIR_P
826 # When Autoconf chooses install-sh as mkdir -p program it tries to generate
827 # a relative path to it in each makefile where it subsitutes it. This clashes
828 # with our Makefile.global concept. This workaround helps.
829 case $MKDIR_P in
830   *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
831 esac
832
833 PGAC_PATH_BISON
834 PGAC_PATH_FLEX
835
836 PGAC_PATH_PERL
837 if test "$with_perl" = yes; then
838   if test -z "$PERL"; then
839     AC_MSG_ERROR([Perl not found])
840   fi
841   PGAC_CHECK_PERL_CONFIGS([archlibexp,privlibexp,useshrplib])
842   PGAC_CHECK_PERL_EMBED_LDFLAGS
843 fi
844
845 if test "$with_python" = yes; then
846   PGAC_PATH_PYTHON
847   PGAC_CHECK_PYTHON_EMBED_SETUP
848 fi
849
850 if test "$cross_compiling" = yes && test -z "$with_system_tzdata"; then
851   AC_PATH_PROG(ZIC, zic)
852   if test -z "$ZIC"; then
853     AC_MSG_ERROR([
854 When cross-compiling, either use the option --with-system-tzdata to use
855 existing time-zone data, or set the environment variable ZIC to a zic
856 program to use during the build.])
857   fi
858 fi
859
860
861 ##
862 ## Libraries
863 ##
864 ## Most libraries are included only if they demonstrably provide a function
865 ## we need, but libm is an exception: always include it, because there are
866 ## too many compilers that play cute optimization games that will break
867 ## probes for standard functions such as pow().
868 ##
869
870 AC_CHECK_LIB(m, main)
871 AC_SEARCH_LIBS(setproctitle, util)
872 AC_SEARCH_LIBS(dlopen, dl)
873 AC_SEARCH_LIBS(socket, [socket wsock32])
874 AC_SEARCH_LIBS(shl_load, dld)
875 # We only use libld in port/dynloader/aix.c
876 case $host_os in
877      aix*)
878         AC_SEARCH_LIBS(ldopen, ld)
879         ;;
880 esac
881 AC_SEARCH_LIBS(getopt_long, [getopt gnugetopt])
882 AC_SEARCH_LIBS(crypt, crypt)
883 # Solaris:
884 AC_SEARCH_LIBS(fdatasync, [rt posix4])
885 # Required for thread_test.c on Solaris 2.5:
886 # Other ports use it too (HP-UX) so test unconditionally
887 AC_SEARCH_LIBS(gethostbyname_r, nsl)
888 # Cygwin:
889 AC_SEARCH_LIBS(shmget, cygipc)
890
891 if test "$with_readline" = yes; then
892   PGAC_CHECK_READLINE
893   if test x"$pgac_cv_check_readline" = x"no"; then
894     AC_MSG_ERROR([readline library not found
895 If you have readline already installed, see config.log for details on the
896 failure.  It is possible the compiler isn't looking in the proper directory.
897 Use --without-readline to disable readline support.])
898   fi
899 fi
900
901 if test "$with_zlib" = yes; then
902   AC_CHECK_LIB(z, inflate, [],
903                [AC_MSG_ERROR([zlib library not found
904 If you have zlib already installed, see config.log for details on the
905 failure.  It is possible the compiler isn't looking in the proper directory.
906 Use --without-zlib to disable zlib support.])])
907 fi
908
909 if test "$enable_spinlocks" = yes; then
910   AC_DEFINE(HAVE_SPINLOCKS, 1, [Define to 1 if you have spinlocks.])
911 else
912   AC_MSG_WARN([
913 *** Not using spinlocks will cause poor performance.])
914 fi
915
916 if test "$with_gssapi" = yes ; then
917   if test "$PORTNAME" != "win32"; then
918     AC_SEARCH_LIBS(gss_init_sec_context, [gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'], [],
919                                   [AC_MSG_ERROR([could not find function 'gss_init_sec_context' required for GSSAPI])])
920   else
921     LIBS="$LIBS -lgssapi32"
922   fi
923 fi
924
925 if test "$with_krb5" = yes ; then
926   if test "$PORTNAME" != "win32"; then
927      AC_SEARCH_LIBS(com_err, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken' com_err 'com_err -lssl -lcrypto'], [],
928                     [AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5])])
929      AC_SEARCH_LIBS(krb5_sendauth, [krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'], [],
930                     [AC_MSG_ERROR([could not find function 'krb5_sendauth' required for Kerberos 5])])
931   else
932      AC_SEARCH_LIBS(com_err, 'comerr32 -lkrb5_32', [],
933                     [AC_MSG_ERROR([could not find function 'com_err' required for Kerberos 5])])
934   fi
935 fi
936
937 if test "$with_openssl" = yes ; then
938   dnl Order matters!
939   if test "$PORTNAME" != "win32"; then
940      AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [AC_MSG_ERROR([library 'crypto' is required for OpenSSL])])
941      AC_CHECK_LIB(ssl,    SSL_library_init, [], [AC_MSG_ERROR([library 'ssl' is required for OpenSSL])])
942   else
943      AC_SEARCH_LIBS(CRYPTO_new_ex_data, eay32 crypto, [], [AC_MSG_ERROR([library 'eay32' or 'crypto' is required for OpenSSL])])
944      AC_SEARCH_LIBS(SSL_library_init, ssleay32 ssl, [], [AC_MSG_ERROR([library 'ssleay32' or 'ssl' is required for OpenSSL])])
945   fi
946 fi
947
948 if test "$with_pam" = yes ; then
949   AC_CHECK_LIB(pam,    pam_start, [], [AC_MSG_ERROR([library 'pam' is required for PAM])])
950 fi
951
952 if test "$with_libxml" = yes ; then
953   AC_CHECK_LIB(xml2, xmlSaveToBuffer, [], [AC_MSG_ERROR([library 'xml2' (version >= 2.6.23) is required for XML support])])
954 fi
955
956 if test "$with_libxslt" = yes ; then
957   AC_CHECK_LIB(xslt, xsltCleanupGlobals, [], [AC_MSG_ERROR([library 'xslt' is required for XSLT support])])
958 fi
959
960 # for contrib/sepgsql
961 if test "$with_selinux" = yes; then
962   AC_CHECK_LIB(selinux, selinux_status_open, [],
963                [AC_MSG_ERROR([library 'libselinux', version 2.0.99 or newer, is required for SELinux support])])
964 fi
965
966 # for contrib/uuid-ossp
967 if test "$with_ossp_uuid" = yes ; then
968   AC_CHECK_LIB(ossp-uuid, uuid_export,
969     [OSSP_UUID_LIBS="-lossp-uuid"],
970     [AC_CHECK_LIB(uuid, uuid_export,
971       [OSSP_UUID_LIBS="-luuid"],
972       [AC_MSG_ERROR([library 'ossp-uuid' or 'uuid' is required for OSSP-UUID])])])
973 fi
974 AC_SUBST(OSSP_UUID_LIBS)
975
976
977 ##
978 ## Header files
979 ##
980
981 dnl sys/socket.h is required by AC_FUNC_ACCEPT_ARGTYPES
982 AC_CHECK_HEADERS([crypt.h dld.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h poll.h pwd.h sys/ioctl.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/socket.h sys/sockio.h sys/tas.h sys/time.h sys/ucred.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h])
983
984 # On BSD, cpp test for net/if.h will fail unless sys/socket.h
985 # is included first.
986 AC_CHECK_HEADERS(net/if.h, [], [],
987 [AC_INCLUDES_DEFAULT
988 #ifdef HAVE_SYS_SOCKET_H
989 #include <sys/socket.h>
990 #endif
991 ])
992
993 # At least on IRIX, cpp test for netinet/tcp.h will fail unless
994 # netinet/in.h is included first.
995 AC_CHECK_HEADERS(netinet/in.h)
996 AC_CHECK_HEADERS(netinet/tcp.h, [], [],
997 [AC_INCLUDES_DEFAULT
998 #ifdef HAVE_NETINET_IN_H
999 #include <netinet/in.h>
1000 #endif
1001 ])
1002
1003 if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
1004   AC_CHECK_HEADERS(readline/readline.h, [],
1005         [AC_CHECK_HEADERS(readline.h, [],
1006                 [AC_MSG_ERROR([readline header not found
1007 If you have readline already installed, see config.log for details on the
1008 failure.  It is possible the compiler isn't looking in the proper directory.
1009 Use --without-readline to disable readline support.])])])
1010   AC_CHECK_HEADERS(readline/history.h, [],
1011         [AC_CHECK_HEADERS(history.h, [],
1012                 [AC_MSG_ERROR([history header not found
1013 If you have readline already installed, see config.log for details on the
1014 failure.  It is possible the compiler isn't looking in the proper directory.
1015 Use --without-readline to disable readline support.])])])
1016 fi
1017
1018 if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
1019 # Some installations of libedit usurp /usr/include/readline/, which seems
1020 # bad practice, since in combined installations readline will have its headers
1021 # there.  We might have to resort to AC_EGREP checks to make sure we found
1022 # the proper header...
1023   AC_CHECK_HEADERS(editline/readline.h, [],
1024         [AC_CHECK_HEADERS(readline.h, [],
1025                 [AC_CHECK_HEADERS(readline/readline.h, [],
1026                         [AC_MSG_ERROR([readline header not found
1027 If you have libedit already installed, see config.log for details on the
1028 failure.  It is possible the compiler isn't looking in the proper directory.
1029 Use --without-readline to disable libedit support.])])])])
1030 # Note: in a libedit installation, history.h is sometimes a dummy, and may
1031 # not be there at all.  Hence, don't complain if not found.  We must check
1032 # though, since in yet other versions it is an independent header.
1033   AC_CHECK_HEADERS(editline/history.h, [],
1034         [AC_CHECK_HEADERS(history.h, [],
1035                 [AC_CHECK_HEADERS(readline/history.h)])])
1036 fi
1037
1038 if test "$with_zlib" = yes; then
1039   AC_CHECK_HEADER(zlib.h, [], [AC_MSG_ERROR([zlib header not found
1040 If you have zlib already installed, see config.log for details on the
1041 failure.  It is possible the compiler isn't looking in the proper directory.
1042 Use --without-zlib to disable zlib support.])])
1043 fi
1044
1045 if test "$with_gssapi" = yes ; then
1046   AC_CHECK_HEADERS(gssapi/gssapi.h, [],
1047         [AC_CHECK_HEADERS(gssapi.h, [], [AC_MSG_ERROR([gssapi.h header file is required for GSSAPI])])])
1048 fi
1049
1050 if test "$with_krb5" = yes ; then
1051   AC_CHECK_HEADER(krb5.h, [], [AC_MSG_ERROR([header file <krb5.h> is required for Kerberos 5])])
1052 fi
1053
1054 if test "$with_openssl" = yes ; then
1055   AC_CHECK_HEADER(openssl/ssl.h, [], [AC_MSG_ERROR([header file <openssl/ssl.h> is required for OpenSSL])])
1056   AC_CHECK_HEADER(openssl/err.h, [], [AC_MSG_ERROR([header file <openssl/err.h> is required for OpenSSL])])
1057 fi
1058
1059 if test "$with_pam" = yes ; then
1060   AC_CHECK_HEADERS(security/pam_appl.h, [],
1061                    [AC_CHECK_HEADERS(pam/pam_appl.h, [],
1062                                      [AC_MSG_ERROR([header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM.])])])
1063 fi
1064
1065 if test "$with_libxml" = yes ; then
1066   AC_CHECK_HEADER(libxml/parser.h, [], [AC_MSG_ERROR([header file <libxml/parser.h> is required for XML support])])
1067 fi
1068
1069 if test "$with_libxslt" = yes ; then
1070   AC_CHECK_HEADER(libxslt/xslt.h, [], [AC_MSG_ERROR([header file <libxslt/xslt.h> is required for XSLT support])])
1071 fi
1072
1073 if test "$with_ldap" = yes ; then
1074   if test "$PORTNAME" != "win32"; then
1075      AC_CHECK_HEADERS(ldap.h, [],
1076                       [AC_MSG_ERROR([header file <ldap.h> is required for LDAP])])
1077   else
1078      AC_CHECK_HEADERS(winldap.h, [],
1079                       [AC_MSG_ERROR([header file <winldap.h> is required for LDAP])],
1080                       [AC_INCLUDES_DEFAULT
1081 #include <windows.h>
1082                       ])
1083   fi
1084 fi
1085
1086 if test "$with_bonjour" = yes ; then
1087   AC_CHECK_HEADER(dns_sd.h, [], [AC_MSG_ERROR([header file <dns_sd.h> is required for Bonjour])])
1088 fi
1089
1090 # for contrib/uuid-ossp
1091 if test "$with_ossp_uuid" = yes ; then
1092   AC_CHECK_HEADERS(ossp/uuid.h, [], [
1093     AC_CHECK_HEADERS(uuid.h, [],
1094       [AC_MSG_ERROR([header file <ossp/uuid.h> or <uuid.h> is required for OSSP-UUID])])])
1095 fi
1096
1097 if test "$PORTNAME" = "win32" ; then
1098    AC_CHECK_HEADERS(crtdefs.h)
1099 fi
1100
1101 ##
1102 ## Types, structures, compiler characteristics
1103 ##
1104
1105 m4_defun([AC_PROG_CC_STDC], []) dnl We don't want that.
1106 AC_C_BIGENDIAN
1107 AC_C_CONST
1108 PGAC_C_INLINE
1109 AC_C_STRINGIZE
1110 AC_C_FLEXIBLE_ARRAY_MEMBER
1111 PGAC_C_SIGNED
1112 AC_C_VOLATILE
1113 PGAC_C_FUNCNAME_SUPPORT
1114 PGAC_STRUCT_TIMEZONE
1115 PGAC_UNION_SEMUN
1116 PGAC_STRUCT_SOCKADDR_UN
1117 PGAC_STRUCT_SOCKADDR_STORAGE
1118 PGAC_STRUCT_SOCKADDR_STORAGE_MEMBERS
1119 PGAC_STRUCT_ADDRINFO
1120 AC_TYPE_INTPTR_T
1121 AC_TYPE_UINTPTR_T
1122 AC_TYPE_LONG_LONG_INT
1123
1124 PGAC_TYPE_LOCALE_T
1125
1126 AC_CHECK_TYPES([struct cmsgcred], [], [],
1127 [#include <sys/socket.h>
1128 #ifdef HAVE_SYS_UCRED_H
1129 #include <sys/ucred.h>
1130 #endif])
1131
1132 AC_CHECK_TYPES([struct option], [], [],
1133 [#ifdef HAVE_GETOPT_H
1134 #include <getopt.h>
1135 #endif])
1136
1137 if test "$with_zlib" = yes; then
1138   # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
1139   # did not).  While we could work around the lack of z_streamp, it
1140   # seems unwise to encourage people to use such old zlib versions...
1141   AC_CHECK_TYPE(z_streamp, [], [AC_MSG_ERROR([zlib version is too old
1142 Use --without-zlib to disable zlib support.])],
1143                 [#include <zlib.h>])
1144 fi
1145
1146 if test "$with_krb5" = yes; then
1147 # Check for differences between MIT and Heimdal (KTH) releases
1148   AC_CHECK_MEMBERS(krb5_ticket.enc_part2, [],
1149                    [AC_CHECK_MEMBERS(krb5_ticket.client, [],
1150                                      [AC_MSG_ERROR([could not determine how to get client name from Kerberos 5 ticket])],
1151                                      [#include <krb5.h>])],
1152                    [#include <krb5.h>])
1153   AC_CHECK_MEMBERS(krb5_error.text.data, [],
1154                    [AC_CHECK_MEMBERS(krb5_error.e_data, [],
1155                                      [AC_MSG_ERROR([could not determine how to extract Kerberos 5 error messages])],
1156                                      [#include <krb5.h>])],
1157                    [#include <krb5.h>])
1158
1159 # Win32 requires headers to be loaded for __stdcall, so can't use
1160 # AC_CHECK_FUNCS here.
1161   AC_MSG_CHECKING(for krb5_free_unparsed_name)
1162   AC_TRY_LINK([#include <krb5.h>],
1163               [krb5_free_unparsed_name(NULL,NULL);],
1164               [AC_DEFINE(HAVE_KRB5_FREE_UNPARSED_NAME, 1, [Define to 1 if you have krb5_free_unparsed_name.])
1165 AC_MSG_RESULT(yes)],
1166               [AC_MSG_RESULT(no)])
1167 fi
1168
1169 # On PPC, check if assembler supports LWARX instruction's mutex hint bit
1170 case $host_cpu in
1171   ppc*|powerpc*)
1172     AC_MSG_CHECKING([whether assembler supports lwarx hint bit])
1173     AC_TRY_COMPILE([],
1174         [int a = 0; int *p = &a; int r;
1175          __asm__ __volatile__ (" lwarx %0,0,%1,1\n" : "=&r"(r) : "r"(p));],
1176         [pgac_cv_have_ppc_mutex_hint=yes],
1177         [pgac_cv_have_ppc_mutex_hint=no])
1178     AC_MSG_RESULT([$pgac_cv_have_ppc_mutex_hint])
1179     if test x"$pgac_cv_have_ppc_mutex_hint" = xyes ; then
1180         AC_DEFINE(HAVE_PPC_LWARX_MUTEX_HINT, 1, [Define to 1 if the assembler supports PPC's LWARX mutex hint bit.])
1181     fi
1182   ;;
1183 esac
1184
1185 # Check largefile support.  You might think this is a system service not a
1186 # compiler characteristic, but you'd be wrong.  We must check this before
1187 # probing existence of related functions such as fseeko, since the largefile
1188 # defines can affect what is generated for that.
1189 if test "$PORTNAME" != "win32"; then
1190    AC_SYS_LARGEFILE
1191 fi
1192
1193 # Check for largefile support (must be after AC_SYS_LARGEFILE)
1194 AC_CHECK_SIZEOF([off_t])
1195
1196 # If we don't have largefile support, can't handle segsize >= 2GB.
1197 if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
1198    AC_MSG_ERROR([Large file support is not enabled. Segment size cannot be larger than 1GB.])
1199 fi
1200
1201
1202 ##
1203 ## Functions, global variables
1204 ##
1205
1206 PGAC_VAR_INT_TIMEZONE
1207 AC_FUNC_ACCEPT_ARGTYPES
1208 PGAC_FUNC_GETTIMEOFDAY_1ARG
1209
1210 AC_CHECK_FUNCS([cbrt dlopen fdatasync getifaddrs getpeerucred getrlimit memmove poll pstat readlink setproctitle setsid sigprocmask symlink towlower utime utimes waitpid wcstombs wcstombs_l])
1211
1212 AC_REPLACE_FUNCS(fseeko)
1213 case $host_os in
1214         # NetBSD uses a custom fseeko/ftello built on fsetpos/fgetpos
1215         # Mingw uses macros to access Win32 API calls
1216         netbsd*|mingw*)
1217                 AC_DEFINE(HAVE_FSEEKO, 1, [Define to 1 because replacement version used.])
1218                 ac_cv_func_fseeko=yes;;
1219         *)
1220                 AC_FUNC_FSEEKO;;
1221 esac
1222
1223 # posix_fadvise() is a no-op on Solaris, so don't incur function overhead
1224 # by calling it, 2009-04-02
1225 # http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
1226 if test "$PORTNAME" != "solaris"; then
1227 AC_CHECK_FUNCS(posix_fadvise)
1228 AC_CHECK_DECLS(posix_fadvise, [], [], [#include <fcntl.h>])
1229 fi
1230
1231 AC_CHECK_DECLS(fdatasync, [], [], [#include <unistd.h>])
1232 AC_CHECK_DECLS([strlcat, strlcpy])
1233 # This is probably only present on Darwin, but may as well check always
1234 AC_CHECK_DECLS(F_FULLFSYNC, [], [], [#include <fcntl.h>])
1235
1236 HAVE_IPV6=no
1237 AC_CHECK_TYPE([struct sockaddr_in6],
1238         [AC_DEFINE(HAVE_IPV6, 1, [Define to 1 if you have support for IPv6.])
1239          HAVE_IPV6=yes],
1240         [],
1241 [$ac_includes_default
1242 #include <netinet/in.h>])
1243 AC_SUBST(HAVE_IPV6)
1244
1245 AC_CACHE_CHECK([for PS_STRINGS], [pgac_cv_var_PS_STRINGS],
1246 [AC_TRY_LINK(
1247 [#include <machine/vmparam.h>
1248 #include <sys/exec.h>
1249 ],
1250 [PS_STRINGS->ps_nargvstr = 1;
1251 PS_STRINGS->ps_argvstr = "foo";],
1252 [pgac_cv_var_PS_STRINGS=yes],
1253 [pgac_cv_var_PS_STRINGS=no])])
1254 if test "$pgac_cv_var_PS_STRINGS" = yes ; then
1255   AC_DEFINE([HAVE_PS_STRINGS], [], [Define to 1 if the PS_STRINGS thing exists.])
1256 fi
1257
1258
1259 # We use our snprintf.c emulation if either snprintf() or vsnprintf()
1260 # is missing.  Yes, there are machines that have only one.  We may
1261 # also decide to use snprintf.c if snprintf() is present but does not
1262 # have all the features we need --- see below.
1263
1264 if test "$PORTNAME" = "win32"; then
1265   # Win32 gets snprintf.c built unconditionally.
1266   #
1267   # To properly translate all NLS languages strings, we must support the
1268   # *printf() %$ format, which allows *printf() arguments to be selected
1269   # by position in the translated string.
1270   #
1271   # libintl versions < 0.13 use the native *printf() functions, and Win32
1272   # *printf() doesn't understand %$, so we must use our /port versions,
1273   # which do understand %$. libintl versions >= 0.13 include their own
1274   # *printf versions on Win32.  The libintl 0.13 release note text is:
1275   #
1276   #   C format strings with positions, as they arise when a translator
1277   #   needs to reorder a sentence, are now supported on all platforms.
1278   #   On those few platforms (NetBSD and Woe32) for which the native
1279   #   printf()/fprintf()/... functions don't support such format
1280   #   strings, replacements are provided through <libintl.h>.
1281   #
1282   # We could use libintl >= 0.13's *printf() if we were sure that we had
1283   # a litint >= 0.13 at runtime, but seeing that there is no clean way
1284   # to guarantee that, it is best to just use our own, so we are sure to
1285   # get %$ support. In include/port.h we disable the *printf() macros
1286   # that might have been defined by libintl.
1287   #
1288   # We do this unconditionally whether NLS is used or not so we are sure
1289   # that all Win32 libraries and binaries behave the same.
1290   pgac_need_repl_snprintf=yes
1291 else
1292   pgac_need_repl_snprintf=no
1293   AC_CHECK_FUNCS(snprintf, [], pgac_need_repl_snprintf=yes)
1294   AC_CHECK_FUNCS(vsnprintf, [], pgac_need_repl_snprintf=yes)
1295 fi
1296
1297
1298 # Check whether <stdio.h> declares snprintf() and vsnprintf(); if not,
1299 # include/c.h will provide declarations.  Note this is a separate test
1300 # from whether the functions exist in the C library --- there are
1301 # systems that have the functions but don't bother to declare them :-(
1302
1303 AC_CHECK_DECLS([snprintf, vsnprintf])
1304
1305
1306 dnl Cannot use AC_CHECK_FUNC because isinf may be a macro
1307 AC_CACHE_CHECK([for isinf], ac_cv_func_isinf,
1308 [AC_TRY_LINK([
1309 #include <math.h>
1310 double glob_double;
1311 ],
1312 [return isinf(glob_double) ? 0 : 1;],
1313 [ac_cv_func_isinf=yes],
1314 [ac_cv_func_isinf=no])])
1315
1316 if test $ac_cv_func_isinf = yes ; then
1317   AC_DEFINE(HAVE_ISINF, 1, [Define to 1 if you have isinf().])
1318 else
1319   AC_LIBOBJ(isinf)
1320   # Look for a way to implement a substitute for isinf()
1321   AC_CHECK_FUNCS([fpclass fp_class fp_class_d class], [break])
1322 fi
1323
1324 # Some versions of libedit contain strlcpy(); so disregard that library while
1325 # checking for these standard libc functions.
1326 pgac_save_LIBS="$LIBS"
1327 LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
1328
1329 AC_REPLACE_FUNCS([crypt fls getopt getrusage inet_aton random rint srandom strerror strlcat strlcpy])
1330
1331 case $host_os in
1332
1333         # Windows uses a specialised env handler
1334         # and doesn't need a replacement getpeereid because it doesn't use
1335         # Unix sockets.
1336         mingw*)
1337                 AC_DEFINE(HAVE_UNSETENV, 1, [Define to 1 because replacement version used.])
1338                 AC_DEFINE(HAVE_GETPEEREID, 1, [Define to 1 because function not required.])
1339                 ac_cv_func_unsetenv=yes
1340                 ac_cv_func_getpeereid=yes;;
1341         *)
1342                 AC_REPLACE_FUNCS([unsetenv getpeereid])
1343                 ;;
1344 esac
1345
1346
1347 LIBS="$pgac_save_LIBS"
1348
1349 # System's version of getaddrinfo(), if any, may be used only if we found
1350 # a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
1351 # (Note: the AC_REPLACE_FUNCS probe fails on Windows, where the available
1352 # versions of getaddrinfo don't follow normal C call protocol.  This is OK
1353 # because we want to use our own getaddrinfo.c on Windows anyway.)
1354 if test x"$ac_cv_type_struct_addrinfo" = xyes ; then
1355   AC_REPLACE_FUNCS([getaddrinfo])
1356 else
1357   AC_LIBOBJ(getaddrinfo)
1358 fi
1359
1360 # Similarly, use system's getopt_long() only if system provides struct option.
1361 if test x"$ac_cv_type_struct_option" = xyes ; then
1362   AC_REPLACE_FUNCS([getopt_long])
1363 else
1364   AC_LIBOBJ(getopt_long)
1365 fi
1366
1367 # Solaris' getopt() doesn't do what we want for long options, so always use
1368 # our version on that platform.
1369 if test "$PORTNAME" = "solaris"; then
1370   AC_LIBOBJ(getopt)
1371 fi
1372
1373 # mingw has adopted a GNU-centric interpretation of optind/optreset,
1374 # so always use our version on Windows.
1375 if test "$PORTNAME" = "win32"; then
1376   AC_LIBOBJ(getopt)
1377   AC_LIBOBJ(getopt_long)
1378 fi
1379
1380 # Win32 support
1381 if test "$PORTNAME" = "win32"; then
1382   AC_REPLACE_FUNCS(gettimeofday)
1383   AC_LIBOBJ(kill)
1384   AC_LIBOBJ(open)
1385   AC_LIBOBJ(win32env)
1386   AC_LIBOBJ(win32error)
1387   AC_LIBOBJ(win32setlocale)
1388   AC_DEFINE([HAVE_SYMLINK], 1,
1389             [Define to 1 if you have the `symlink' function.])
1390   AC_CHECK_TYPES(MINIDUMP_TYPE, [pgac_minidump_type=yes], [pgac_minidump_type=no], [
1391 #define WIN32_LEAN_AND_MEAN
1392 #include <windows.h>
1393 #include <string.h>
1394 #include <dbghelp.h>])
1395 fi
1396 if test x"$pgac_minidump_type" = x"yes" ; then
1397   AC_SUBST(have_win32_dbghelp,yes)
1398 else
1399   AC_SUBST(have_win32_dbghelp,no)
1400 fi
1401
1402 if test "$with_readline" = yes; then
1403   PGAC_VAR_RL_COMPLETION_APPEND_CHARACTER
1404   AC_CHECK_FUNCS([rl_completion_matches rl_filename_completion_function])
1405   AC_CHECK_FUNCS([append_history history_truncate_file])
1406 fi
1407
1408
1409 dnl Cannot use AC_CHECK_FUNC because sigsetjmp may be a macro
1410 dnl (especially on GNU libc)
1411 dnl See also comments in c.h.
1412 AC_CACHE_CHECK([for sigsetjmp], pgac_cv_func_sigsetjmp,
1413 [AC_TRY_LINK([#include <setjmp.h>],
1414             [sigjmp_buf x; sigsetjmp(x, 1);],
1415             [pgac_cv_func_sigsetjmp=yes],
1416             [pgac_cv_func_sigsetjmp=no])])
1417 if test x"$pgac_cv_func_sigsetjmp" = x"yes"; then
1418   AC_DEFINE(HAVE_SIGSETJMP, 1, [Define to 1 if you have sigsetjmp().])
1419 fi
1420
1421 AC_DECL_SYS_SIGLIST
1422
1423 AC_CHECK_FUNC(syslog,
1424               [AC_CHECK_HEADER(syslog.h,
1425                                [AC_DEFINE(HAVE_SYSLOG, 1, [Define to 1 if you have the syslog interface.])])])
1426
1427 AC_CACHE_CHECK([for opterr], pgac_cv_var_int_opterr,
1428 [AC_TRY_LINK([#include <unistd.h>],
1429   [extern int opterr; opterr = 1;],
1430   [pgac_cv_var_int_opterr=yes],
1431   [pgac_cv_var_int_opterr=no])])
1432 if test x"$pgac_cv_var_int_opterr" = x"yes"; then
1433   AC_DEFINE(HAVE_INT_OPTERR, 1, [Define to 1 if you have the global variable 'int opterr'.])
1434 fi
1435
1436 AC_CACHE_CHECK([for optreset], pgac_cv_var_int_optreset,
1437 [AC_TRY_LINK([#include <unistd.h>],
1438   [extern int optreset; optreset = 1;],
1439   [pgac_cv_var_int_optreset=yes],
1440   [pgac_cv_var_int_optreset=no])])
1441 if test x"$pgac_cv_var_int_optreset" = x"yes"; then
1442   AC_DEFINE(HAVE_INT_OPTRESET, 1, [Define to 1 if you have the global variable 'int optreset'.])
1443 fi
1444
1445 AC_CHECK_FUNCS([strtoll strtoq], [break])
1446 AC_CHECK_FUNCS([strtoull strtouq], [break])
1447
1448 AC_CACHE_CHECK([for builtin locking functions], pgac_cv_gcc_int_atomics,
1449 [AC_TRY_LINK([],
1450   [int lock = 0;
1451    __sync_lock_test_and_set(&lock, 1);
1452    __sync_lock_release(&lock);],
1453   [pgac_cv_gcc_int_atomics="yes"],
1454   [pgac_cv_gcc_int_atomics="no"])])
1455 if test x"$pgac_cv_gcc_int_atomics" = x"yes"; then
1456   AC_DEFINE(HAVE_GCC_INT_ATOMICS, 1, [Define to 1 if you have __sync_lock_test_and_set(int *) and friends.])
1457 fi
1458
1459
1460 #
1461 # Pthreads
1462 #
1463 # For each platform, we need to know about any special compile and link
1464 # libraries, and whether the normal C function names are thread-safe.
1465 # See the comment at the top of src/port/thread.c for more information.
1466 # WIN32 doesn't need the pthread tests;  it always uses threads
1467 if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then
1468 ACX_PTHREAD     # set thread flags
1469
1470 # Some platforms use these, so just define them.  They can't hurt if they
1471 # are not supported.  For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
1472 # enables 5-arg getpwuid_r, among other things.
1473 PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
1474
1475
1476 # At this point, we don't want to muck with the compiler name for threading.
1477 # Let's see who fails, perhaps AIX.  2004-04-23
1478 if test "$PTHREAD_CC" != "$CC"; then
1479 AC_MSG_ERROR([
1480 PostgreSQL does not support platforms that require a special compiler
1481 for thread safety;  use --disable-thread-safety to disable thread safety.])
1482 fi
1483
1484 # Check for *_r functions
1485 _CFLAGS="$CFLAGS"
1486 _LIBS="$LIBS"
1487 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
1488 LIBS="$LIBS $PTHREAD_LIBS"
1489
1490 if test "$PORTNAME" != "win32"; then
1491 AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([
1492 pthread.h not found;  use --disable-thread-safety to disable thread safety])])
1493 fi
1494
1495 AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
1496
1497 # Do test here with the proper thread flags
1498 PGAC_FUNC_GETPWUID_R_5ARG
1499 PGAC_FUNC_STRERROR_R_INT
1500
1501 CFLAGS="$_CFLAGS"
1502 LIBS="$_LIBS"
1503
1504 else
1505 # do not use values from template file
1506 PTHREAD_CFLAGS=
1507 PTHREAD_LIBS=
1508 fi
1509
1510 AC_SUBST(PTHREAD_CFLAGS)
1511 AC_SUBST(PTHREAD_LIBS)
1512
1513
1514 # We can test for libldap_r only after we know PTHREAD_LIBS
1515 if test "$with_ldap" = yes ; then
1516   _LIBS="$LIBS"
1517   if test "$PORTNAME" != "win32"; then
1518     AC_CHECK_LIB(ldap, ldap_bind, [],
1519                  [AC_MSG_ERROR([library 'ldap' is required for LDAP])],
1520                  [$EXTRA_LDAP_LIBS])
1521     LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
1522     if test "$enable_thread_safety" = yes; then
1523       # on some platforms ldap_r fails to link without PTHREAD_LIBS
1524       AC_CHECK_LIB(ldap_r, ldap_simple_bind, [],
1525                    [AC_MSG_ERROR([library 'ldap_r' is required for LDAP])],
1526                    [$PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS])
1527       LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
1528     else
1529       LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
1530     fi
1531   else
1532     AC_CHECK_LIB(wldap32, ldap_bind, [], [AC_MSG_ERROR([library 'wldap32' is required for LDAP])])
1533     LDAP_LIBS_FE="-lwldap32"
1534     LDAP_LIBS_BE="-lwldap32"
1535   fi
1536   LIBS="$_LIBS"
1537 fi
1538 AC_SUBST(LDAP_LIBS_FE)
1539 AC_SUBST(LDAP_LIBS_BE)
1540
1541
1542 # Older versions of libxml2 lack the xmlStructuredErrorContext variable
1543 # (which could be a macro referring to a function, if threading is enabled)
1544 if test "$with_libxml" = yes ; then
1545   AC_CACHE_CHECK([for xmlStructuredErrorContext], pgac_cv_libxml_structerrctx,
1546   [AC_TRY_LINK([#include <libxml/globals.h>
1547                 void *globptr;],
1548                [globptr = xmlStructuredErrorContext],
1549                [pgac_cv_libxml_structerrctx=yes],
1550                [pgac_cv_libxml_structerrctx=no])])
1551   if test x"$pgac_cv_libxml_structerrctx" = x"yes"; then
1552     AC_DEFINE(HAVE_XMLSTRUCTUREDERRORCONTEXT,
1553              1,
1554              [Define to 1 if your libxml has xmlStructuredErrorContext.])
1555   fi
1556 fi
1557
1558
1559 # This test makes sure that run tests work at all.  Sometimes a shared
1560 # library is found by the linker, but the runtime linker can't find it.
1561 # This check should come after all modifications of compiler or linker
1562 # variables, and before any other run tests.
1563 AC_MSG_CHECKING([test program])
1564 AC_TRY_RUN([int main() { return 0; }],
1565 [AC_MSG_RESULT(ok)],
1566 [AC_MSG_RESULT(failed)
1567 AC_MSG_ERROR([[
1568 Could not execute a simple test program.  This may be a problem
1569 related to locating shared libraries.  Check the file 'config.log'
1570 for the exact reason.]])],
1571 [AC_MSG_RESULT([cross-compiling])])
1572
1573 # --------------------
1574 # Run tests below here
1575 # --------------------
1576
1577 # Force use of our snprintf if system's doesn't do arg control
1578 # See comment above at snprintf test for details.
1579 if test "$enable_nls" = yes -a "$pgac_need_repl_snprintf" = no; then
1580   PGAC_FUNC_PRINTF_ARG_CONTROL
1581   if test $pgac_cv_printf_arg_control != yes ; then
1582     pgac_need_repl_snprintf=yes
1583   fi
1584 fi
1585
1586
1587 dnl Check to see if we have a working 64-bit integer type.
1588 dnl This breaks down into two steps:
1589 dnl (1) figure out if the compiler has a 64-bit int type with working
1590 dnl arithmetic, and if so
1591 dnl (2) see whether snprintf() can format the type correctly.  (Currently,
1592 dnl snprintf is the only library routine we really need for int8 support.)
1593 dnl It's entirely possible to have a compiler that handles a 64-bit type
1594 dnl when the C library doesn't; this is fairly likely when using gcc on
1595 dnl an older platform, for example.
1596 dnl If there is no native snprintf() or it does not handle the 64-bit type,
1597 dnl we force our own version of snprintf() to be used instead.
1598 dnl Note this test must be run after our initial check for snprintf/vsnprintf.
1599
1600 dnl As of Postgres 8.4, we no longer support compilers without a working
1601 dnl 64-bit type.  But we still handle the case of snprintf being broken.
1602
1603 PGAC_TYPE_64BIT_INT([long int])
1604
1605 if test x"$HAVE_LONG_INT_64" = x"no" ; then
1606   PGAC_TYPE_64BIT_INT([long long int])
1607   if test x"$HAVE_LONG_LONG_INT_64" = x"no" ; then
1608     AC_MSG_ERROR([Cannot find a working 64-bit integer type.])
1609   fi
1610 fi
1611
1612
1613 dnl If we need to use "long long int", figure out whether nnnLL notation works.
1614
1615 if test x"$HAVE_LONG_LONG_INT_64" = xyes ; then
1616   AC_TRY_COMPILE([
1617 #define INT64CONST(x)  x##LL
1618 long long int foo = INT64CONST(0x1234567890123456);
1619 ],
1620         [],
1621         [AC_DEFINE(HAVE_LL_CONSTANTS, 1, [Define to 1 if constants of type 'long long int' should have the suffix LL.])],
1622         [])
1623 fi
1624
1625
1626 # If we found "long int" is 64 bits, assume snprintf handles it.  If
1627 # we found we need to use "long long int", better check.  We cope with
1628 # snprintfs that use %lld, %qd, or %I64d as the format.  If none of these
1629 # work, fall back to our own snprintf emulation (which we know uses %lld).
1630
1631 if test "$HAVE_LONG_LONG_INT_64" = yes ; then
1632   if test $pgac_need_repl_snprintf = no; then
1633     PGAC_FUNC_SNPRINTF_LONG_LONG_INT_FORMAT
1634     if test "$LONG_LONG_INT_FORMAT" = ""; then
1635       # Force usage of our own snprintf, since system snprintf is broken
1636       pgac_need_repl_snprintf=yes
1637       LONG_LONG_INT_FORMAT='%lld'
1638     fi
1639   else
1640     # Here if we previously decided we needed to use our own snprintf
1641     LONG_LONG_INT_FORMAT='%lld'
1642   fi
1643   LONG_LONG_UINT_FORMAT=`echo "$LONG_LONG_INT_FORMAT" | sed 's/d$/u/'`
1644   INT64_FORMAT="\"$LONG_LONG_INT_FORMAT\""
1645   UINT64_FORMAT="\"$LONG_LONG_UINT_FORMAT\""
1646 else
1647   # Here if we are not using 'long long int' at all
1648   INT64_FORMAT='"%ld"'
1649   UINT64_FORMAT='"%lu"'
1650 fi
1651
1652 AC_DEFINE_UNQUOTED(INT64_FORMAT, $INT64_FORMAT,
1653                    [Define to the appropriate snprintf format for 64-bit ints.])
1654
1655 AC_DEFINE_UNQUOTED(UINT64_FORMAT, $UINT64_FORMAT,
1656                    [Define to the appropriate snprintf format for unsigned 64-bit ints.])
1657
1658 # Now we have checked all the reasons to replace snprintf
1659 if test $pgac_need_repl_snprintf = yes; then
1660   AC_DEFINE(USE_REPL_SNPRINTF, 1, [Use replacement snprintf() functions.])
1661   AC_LIBOBJ(snprintf)
1662 fi
1663
1664 # Check size of void *, size_t (enables tweaks for > 32bit address space)
1665 AC_CHECK_SIZEOF([void *])
1666 AC_CHECK_SIZEOF([size_t])
1667 AC_CHECK_SIZEOF([long])
1668
1669 # Decide whether float4 is passed by value: user-selectable, enabled by default
1670 AC_MSG_CHECKING([whether to build with float4 passed by value])
1671 PGAC_ARG_BOOL(enable, float4-byval, yes, [disable float4 passed by value],
1672               [AC_DEFINE([USE_FLOAT4_BYVAL], 1,
1673                          [Define to 1 if you want float4 values to be passed by value. (--enable-float4-byval)])
1674                float4passbyval=true],
1675               [float4passbyval=false])
1676 AC_MSG_RESULT([$enable_float4_byval])
1677 AC_DEFINE_UNQUOTED([FLOAT4PASSBYVAL], [$float4passbyval], [float4 values are passed by value if 'true', by reference if 'false'])
1678
1679 # Decide whether float8 is passed by value.
1680 # Note: this setting also controls int8 and related types such as timestamp.
1681 # If sizeof(Datum) >= 8, this is user-selectable, enabled by default.
1682 # If not, trying to select it is an error.
1683 AC_MSG_CHECKING([whether to build with float8 passed by value])
1684 if test $ac_cv_sizeof_void_p -ge 8 ; then
1685   PGAC_ARG_BOOL(enable, float8-byval, yes, [disable float8 passed by value])
1686 else
1687   PGAC_ARG_BOOL(enable, float8-byval, no, [disable float8 passed by value])
1688   if test "$enable_float8_byval" = yes ; then
1689     AC_MSG_ERROR([--enable-float8-byval is not supported on 32-bit platforms.])
1690   fi
1691 fi
1692 if test "$enable_float8_byval" = yes ; then
1693   AC_DEFINE([USE_FLOAT8_BYVAL], 1,
1694             [Define to 1 if you want float8, int8, etc values to be passed by value. (--enable-float8-byval)])
1695   float8passbyval=true
1696 else
1697   float8passbyval=false
1698 fi
1699 AC_MSG_RESULT([$enable_float8_byval])
1700 AC_DEFINE_UNQUOTED([FLOAT8PASSBYVAL], [$float8passbyval], [float8, int8, and related values are passed by value if 'true', by reference if 'false'])
1701
1702 # Determine memory alignment requirements for the basic C data types.
1703
1704 AC_CHECK_ALIGNOF(short)
1705 AC_CHECK_ALIGNOF(int)
1706 AC_CHECK_ALIGNOF(long)
1707 if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
1708   AC_CHECK_ALIGNOF(long long int)
1709 fi
1710 AC_CHECK_ALIGNOF(double)
1711
1712 # Compute maximum alignment of any basic type.
1713 # We assume long's alignment is at least as strong as char, short, or int;
1714 # but we must check long long (if it exists) and double.
1715
1716 MAX_ALIGNOF=$ac_cv_alignof_long
1717 if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
1718   MAX_ALIGNOF=$ac_cv_alignof_double
1719 fi
1720 if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
1721   MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
1722 fi
1723 AC_DEFINE_UNQUOTED(MAXIMUM_ALIGNOF, $MAX_ALIGNOF, [Define as the maximum alignment requirement of any C data type.])
1724
1725
1726 # Some platforms predefine the types int8, int16, etc.  Only check
1727 # a (hopefully) representative subset.
1728 AC_CHECK_TYPES([int8, uint8, int64, uint64], [], [],
1729 [#include <stdio.h>])
1730
1731 # We also check for sig_atomic_t, which *should* be defined per ANSI
1732 # C, but is missing on some old platforms.
1733 AC_CHECK_TYPES(sig_atomic_t, [], [], [#include <signal.h>])
1734
1735
1736 if test "$PORTNAME" != "win32"
1737 then
1738 PGAC_FUNC_POSIX_SIGNALS
1739 if test "$pgac_cv_func_posix_signals" != yes -a "$enable_thread_safety" = yes; then
1740   AC_MSG_ERROR([
1741 Thread-safety requires POSIX signals, which are not supported by this
1742 operating system;  use --disable-thread-safety to disable thread safety.])
1743 fi
1744 fi
1745
1746 # SunOS doesn't handle negative byte comparisons properly with +/- return
1747 AC_FUNC_MEMCMP
1748
1749
1750 # Select semaphore implementation type.
1751 if test "$PORTNAME" != "win32"; then
1752   if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
1753     AC_DEFINE(USE_NAMED_POSIX_SEMAPHORES, 1, [Define to select named POSIX semaphores.])
1754     SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
1755   else
1756     if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
1757       AC_DEFINE(USE_UNNAMED_POSIX_SEMAPHORES, 1, [Define to select unnamed POSIX semaphores.])
1758       SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
1759     else
1760       AC_DEFINE(USE_SYSV_SEMAPHORES, 1, [Define to select SysV-style semaphores.])
1761       SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
1762     fi
1763   fi
1764 else
1765   AC_DEFINE(USE_WIN32_SEMAPHORES, 1, [Define to select Win32-style semaphores.])
1766   SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
1767 fi
1768
1769
1770 # Select shared-memory implementation type.
1771 if test "$PORTNAME" != "win32"; then
1772   AC_DEFINE(USE_SYSV_SHARED_MEMORY, 1, [Define to select SysV-style shared memory.])
1773   SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
1774 else
1775   AC_DEFINE(USE_WIN32_SHARED_MEMORY, 1, [Define to select Win32-style shared memory.])
1776   SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
1777 fi
1778
1779 # Select latch implementation type.
1780 if test "$PORTNAME" != "win32"; then
1781   LATCH_IMPLEMENTATION="src/backend/port/unix_latch.c"
1782 else
1783   LATCH_IMPLEMENTATION="src/backend/port/win32_latch.c"
1784 fi
1785
1786 # If not set in template file, set bytes to use libc memset()
1787 if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
1788   MEMSET_LOOP_LIMIT=1024
1789 fi
1790 AC_DEFINE_UNQUOTED(MEMSET_LOOP_LIMIT, ${MEMSET_LOOP_LIMIT}, [Define bytes to use libc memset().])
1791
1792
1793 if test "$enable_nls" = yes ; then
1794   PGAC_CHECK_GETTEXT
1795 fi
1796
1797 # Check for Tcl configuration script tclConfig.sh
1798 if test "$with_tcl" = yes; then
1799     PGAC_PATH_TCLCONFIGSH([$with_tclconfig])
1800     PGAC_EVAL_TCLCONFIGSH([$TCL_CONFIG_SH],
1801                           [TCL_INCLUDE_SPEC,TCL_LIB_FILE,TCL_LIBS,TCL_LIB_SPEC,TCL_SHARED_BUILD])
1802     AC_SUBST(TCL_SHLIB_LD_LIBS)dnl don't want to double-evaluate that one
1803     # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
1804     ac_save_CPPFLAGS=$CPPFLAGS
1805     CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
1806     AC_CHECK_HEADER(tcl.h, [], [AC_MSG_ERROR([header file <tcl.h> is required for Tcl])])
1807     CPPFLAGS=$ac_save_CPPFLAGS
1808 fi
1809
1810 # check for <Python.h>
1811 if test "$with_python" = yes; then
1812   ac_save_CPPFLAGS=$CPPFLAGS
1813   CPPFLAGS="$python_includespec $CPPFLAGS"
1814   AC_CHECK_HEADER(Python.h, [], [AC_MSG_ERROR([header file <Python.h> is required for Python])])
1815   CPPFLAGS=$ac_save_CPPFLAGS
1816 fi
1817
1818 #
1819 # Check for DocBook and tools
1820 #
1821 PGAC_PROG_NSGMLS
1822 PGAC_PROG_JADE
1823 PGAC_CHECK_DOCBOOK(4.2)
1824 PGAC_PATH_DOCBOOK_STYLESHEETS
1825 PGAC_PATH_COLLATEINDEX
1826 AC_CHECK_PROGS(XSLTPROC, xsltproc)
1827 AC_CHECK_PROGS(OSX, [osx sgml2xml sx])
1828
1829 # Thread testing
1830
1831 # We have to run the thread test near the end so we have all our symbols
1832 # defined.  Cross compiling throws a warning.
1833 #
1834 if test "$enable_thread_safety" = yes; then
1835 if test "$PORTNAME" != "win32"
1836 then
1837 AC_MSG_CHECKING([thread safety of required library functions])
1838
1839 _CFLAGS="$CFLAGS"
1840 _LIBS="$LIBS"
1841 CFLAGS="$CFLAGS $PTHREAD_CFLAGS -DIN_CONFIGURE"
1842 LIBS="$LIBS $PTHREAD_LIBS"
1843 AC_TRY_RUN([#include "$srcdir/src/test/thread/thread_test.c"],
1844   [AC_MSG_RESULT(yes)],
1845   [AC_MSG_RESULT(no)
1846   AC_MSG_ERROR([thread test program failed
1847 This platform is not thread-safe.  Check the file 'config.log' or compile
1848 and run src/test/thread/thread_test for the exact reason.
1849 Use --disable-thread-safety to disable thread safety.])],
1850   [AC_MSG_RESULT(maybe)
1851   AC_MSG_WARN([
1852 *** Skipping thread test program because of cross-compile build.
1853 *** Run the program in src/test/thread on the target machine.
1854 ])])
1855 CFLAGS="$_CFLAGS"
1856 LIBS="$_LIBS"
1857 else
1858 AC_MSG_WARN([*** skipping thread test on Win32])
1859 fi
1860 fi
1861
1862 # If compiler will take -Wl,--as-needed (or various platform-specific
1863 # spellings thereof) then add that to LDFLAGS.  This is much easier than
1864 # trying to filter LIBS to the minimum for each executable.
1865 # On (at least) some Red-Hat-derived systems, this switch breaks linking to
1866 # libreadline; therefore we postpone testing it until we know what library
1867 # dependencies readline has.  The test code will try to link with $LIBS.
1868 if test "$with_readline" = yes; then
1869   link_test_func=readline
1870 else
1871   link_test_func=exit
1872 fi
1873
1874 if test "$PORTNAME" = "darwin"; then
1875   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-dead_strip_dylibs], $link_test_func)
1876 elif test "$PORTNAME" = "openbsd"; then
1877   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,-Bdynamic], $link_test_func)
1878 else
1879   PGAC_PROG_CC_LDFLAGS_OPT([-Wl,--as-needed], $link_test_func)
1880 fi
1881
1882 # Create compiler version string
1883 if test x"$GCC" = x"yes" ; then
1884   cc_string=`${CC} --version | sed q`
1885   case $cc_string in [[A-Za-z]]*) ;; *) cc_string="GCC $cc_string";; esac
1886 elif test x"$SUN_STUDIO_CC" = x"yes" ; then
1887   cc_string=`${CC} -V 2>&1 | sed q`
1888 else
1889   cc_string=$CC
1890 fi
1891
1892 AC_DEFINE_UNQUOTED(PG_VERSION_STR,
1893                    ["PostgreSQL $PACKAGE_VERSION on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"],
1894                    [A string containing the version number, platform, and C compiler])
1895
1896 # Supply a numeric version string for use by 3rd party add-ons
1897 # awk -F is a regex on some platforms, and not on others, so make "." a tab
1898 [PG_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
1899 tr '.' '        ' |
1900 $AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"]
1901 AC_DEFINE_UNQUOTED(PG_VERSION_NUM, $PG_VERSION_NUM, [PostgreSQL version as a number])
1902
1903
1904 # Begin output steps
1905
1906 AC_MSG_NOTICE([using compiler=$cc_string])
1907 AC_MSG_NOTICE([using CFLAGS=$CFLAGS])
1908 AC_MSG_NOTICE([using CPPFLAGS=$CPPFLAGS])
1909 AC_MSG_NOTICE([using LDFLAGS=$LDFLAGS])
1910
1911 # prepare build tree if outside source tree
1912 # Note 1: test -ef might not exist, but it's more reliable than `pwd`.
1913 # Note 2: /bin/pwd might be better than shell's built-in at getting
1914 #         a symlink-free name.
1915 if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
1916   vpath_build=no
1917 else
1918   vpath_build=yes
1919   if test "$no_create" != yes; then
1920     _AS_ECHO_N([preparing build tree... ])
1921     pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
1922     $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
1923       || AC_MSG_ERROR(failed)
1924     AC_MSG_RESULT(done)
1925   fi
1926 fi
1927 AC_SUBST(vpath_build)
1928
1929
1930 AC_CONFIG_FILES([GNUmakefile src/Makefile.global])
1931
1932 AC_CONFIG_LINKS([
1933   src/backend/port/dynloader.c:src/backend/port/dynloader/${template}.c
1934   src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}
1935   src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}
1936   src/backend/port/pg_latch.c:${LATCH_IMPLEMENTATION}
1937   src/include/dynloader.h:src/backend/port/dynloader/${template}.h
1938   src/include/pg_config_os.h:src/include/port/${template}.h
1939   src/Makefile.port:src/makefiles/Makefile.${template}
1940 ])
1941
1942 if test "$PORTNAME" = "win32"; then
1943 AC_CONFIG_COMMANDS([check_win32_symlinks],[
1944 # Links sometimes fail undetected on Mingw -
1945 # so here we detect it and warn the user
1946 for FILE in $CONFIG_LINKS
1947  do
1948         # test -e works for symlinks in the MinGW console
1949         test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE -- please fix by hand])
1950  done
1951 ])
1952 fi
1953
1954 AC_CONFIG_HEADERS([src/include/pg_config.h],
1955 [
1956 # Update timestamp for pg_config.h (see Makefile.global)
1957 echo >src/include/stamp-h
1958 ])
1959
1960 AC_CONFIG_HEADERS([src/interfaces/ecpg/include/ecpg_config.h],
1961                   [echo >src/interfaces/ecpg/include/stamp-h])
1962
1963 AC_OUTPUT