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