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