configure 224.0 KB
Newer Older
1
#! /bin/sh
B
Bruce Momjian 已提交
2

3
# Guess values for system-dependent variables and create Makefiles.
4
# Generated automatically using autoconf version 2.13 
5 6 7 8 9 10 11 12 13
# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.

# Defaults:
ac_help=
ac_default_prefix=/usr/local
# Any additions from configure.in:
14
ac_default_prefix=/usr/local/pgsql
15
ac_help="$ac_help
16
  --with-includes=DIRS    look for additional header files in DIRS"
17
ac_help="$ac_help
18
  --with-libraries=DIRS   look for additional libraries in DIRS"
19
ac_help="$ac_help
20
  --with-libs=DIRS        alternative spelling of --with-libraries"
21
ac_help="$ac_help
22
  --enable-locale         enable locale support"
23
ac_help="$ac_help
24
  --enable-recode         enable cyrillic recode support"
M
Marc G. Fournier 已提交
25
ac_help="$ac_help
26
  --enable-multibyte      enable multibyte character support"
27
ac_help="$ac_help
28
  --with-pgport=PORTNUM   change default port number [5432]"
29
ac_help="$ac_help
30
  --with-maxbackends=N    set default maximum number of connections [32]"
31 32
ac_help="$ac_help
  --enable-debug          build with debugging symbols (-g)"
33
ac_help="$ac_help
34
  --with-tcl              build Tcl interfaces and pgtclsh "
B
Bruce Momjian 已提交
35 36
ac_help="$ac_help
  --with-tclconfig=DIR    tclConfig.sh and tkConfig.sh are in DIR"
B
Bruce Momjian 已提交
37 38
ac_help="$ac_help
  --with-tkconfig=DIR     tkConfig.sh is in DIR"
39
ac_help="$ac_help
40 41 42
  --with-perl             build Perl interface and plperl"
ac_help="$ac_help
  --with-python           build Python interface module"
43 44 45 46 47 48 49 50
ac_help="$ac_help
  --with-krb4[=DIR]       use Kerberos 4 [/usr/athena]"
ac_help="$ac_help
  --with-krb5[=DIR]       use Kerberos 5 [/usr/athena]"
ac_help="$ac_help
  --with-krb-srvnam=NAME  name of the Postgres service principal in Kerberos"
ac_help="$ac_help
  --with-krb-srvtab=FILE  location of Kerberos server's keytab file"
51 52
ac_help="$ac_help
  --with-openssl[=DIR]    build with OpenSSL support [/usr/local/ssl]"
53
ac_help="$ac_help
54
  --enable-odbc           build the ODBC driver package"
B
Bruce Momjian 已提交
55
ac_help="$ac_help
56
  --with-odbcinst=DIR     default directory for odbcinst.ini [sysconfdir]"
57 58
ac_help="$ac_help
  --enable-cassert        enable assertion checks (for debugging) "
B
Bruce Momjian 已提交
59
ac_help="$ac_help
60
  --with-CXX              build C++ modules (libpq++)"
61 62
ac_help="$ac_help
  --enable-syslog         enable logging to syslog"
63 64
ac_help="$ac_help
  --with-x                use the X Window System"
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102

# Initialize some variables set by options.
# The variables have the same names as the options, with
# dashes changed to underlines.
build=NONE
cache_file=./config.cache
exec_prefix=NONE
host=NONE
no_create=
nonopt=NONE
no_recursion=
prefix=NONE
program_prefix=NONE
program_suffix=NONE
program_transform_name=s,x,x,
silent=
site=
srcdir=
target=NONE
verbose=
x_includes=NONE
x_libraries=NONE
bindir='${exec_prefix}/bin'
sbindir='${exec_prefix}/sbin'
libexecdir='${exec_prefix}/libexec'
datadir='${prefix}/share'
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
libdir='${exec_prefix}/lib'
includedir='${prefix}/include'
oldincludedir='/usr/include'
infodir='${prefix}/info'
mandir='${prefix}/man'

# Initialize some other variables.
subdirs=
MFLAGS= MAKEFLAGS=
103
SHELL=${CONFIG_SHELL-/bin/sh}
104 105
# Maximum number of lines to put in a shell here document.
ac_max_here_lines=12
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

ac_prev=
for ac_option
do

  # If the previous option needs an argument, assign it.
  if test -n "$ac_prev"; then
    eval "$ac_prev=\$ac_option"
    ac_prev=
    continue
  fi

  case "$ac_option" in
  -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) ac_optarg= ;;
  esac

  # Accept the important Cygnus configure options, so we can diagnose typos.

  case "$ac_option" in

  -bindir | --bindir | --bindi | --bind | --bin | --bi)
    ac_prev=bindir ;;
  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
    bindir="$ac_optarg" ;;

  -build | --build | --buil | --bui | --bu)
    ac_prev=build ;;
  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
    build="$ac_optarg" ;;

  -cache-file | --cache-file | --cache-fil | --cache-fi \
  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
    ac_prev=cache_file ;;
  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
    cache_file="$ac_optarg" ;;

  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
    ac_prev=datadir ;;
  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
  | --da=*)
    datadir="$ac_optarg" ;;

  -disable-* | --disable-*)
    ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
    # Reject names that are not valid shell variable names.
    if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
    fi
    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
    eval "enable_${ac_feature}=no" ;;

  -enable-* | --enable-*)
    ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
    # Reject names that are not valid shell variable names.
    if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
    fi
    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
    case "$ac_option" in
      *=*) ;;
      *) ac_optarg=yes ;;
    esac
    eval "enable_${ac_feature}='$ac_optarg'" ;;

  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  | --exec | --exe | --ex)
    ac_prev=exec_prefix ;;
  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  | --exec=* | --exe=* | --ex=*)
    exec_prefix="$ac_optarg" ;;

  -gas | --gas | --ga | --g)
    # Obsolete; use --with-gas.
    with_gas=yes ;;

  -help | --help | --hel | --he)
    # Omit some internal or obsolete options to make the list less imposing.
    # This message is too long to be a string in the A/UX 3.1 sh.
    cat << EOF
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE       cache test results in FILE
  --help                  print this message
  --no-create             do not create output files
  --quiet, --silent       do not print \`checking...' messages
  --version               print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [$ac_default_prefix]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  --datadir=DIR           read-only architecture-independent data in DIR
                          [PREFIX/share]
  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
                          [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  --includedir=DIR        C header files in DIR [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR           info documentation in DIR [PREFIX/info]
  --mandir=DIR            man documentation in DIR [PREFIX/man]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
                          run sed PROGRAM on installed program names
EOF
    cat << EOF
Host type:
  --build=BUILD           configure for building on BUILD [BUILD=HOST]
  --host=HOST             configure for HOST [guessed]
  --target=TARGET         configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIR        X include files are in DIR
  --x-libraries=DIR       X library files are in DIR
EOF
    if test -n "$ac_help"; then
      echo "--enable and --with options recognized:$ac_help"
    fi
    exit 0 ;;

  -host | --host | --hos | --ho)
    ac_prev=host ;;
  -host=* | --host=* | --hos=* | --ho=*)
    host="$ac_optarg" ;;

  -includedir | --includedir | --includedi | --included | --include \
  | --includ | --inclu | --incl | --inc)
    ac_prev=includedir ;;
  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  | --includ=* | --inclu=* | --incl=* | --inc=*)
    includedir="$ac_optarg" ;;

  -infodir | --infodir | --infodi | --infod | --info | --inf)
    ac_prev=infodir ;;
  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
    infodir="$ac_optarg" ;;

  -libdir | --libdir | --libdi | --libd)
    ac_prev=libdir ;;
  -libdir=* | --libdir=* | --libdi=* | --libd=*)
    libdir="$ac_optarg" ;;

  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  | --libexe | --libex | --libe)
    ac_prev=libexecdir ;;
  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  | --libexe=* | --libex=* | --libe=*)
    libexecdir="$ac_optarg" ;;

  -localstatedir | --localstatedir | --localstatedi | --localstated \
  | --localstate | --localstat | --localsta | --localst \
  | --locals | --local | --loca | --loc | --lo)
    ac_prev=localstatedir ;;
  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
    localstatedir="$ac_optarg" ;;

  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
    ac_prev=mandir ;;
  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
    mandir="$ac_optarg" ;;

  -nfp | --nfp | --nf)
    # Obsolete; use --without-fp.
    with_fp=no ;;

  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  | --no-cr | --no-c)
    no_create=yes ;;

  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
    no_recursion=yes ;;

  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  | --oldin | --oldi | --old | --ol | --o)
    ac_prev=oldincludedir ;;
  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
    oldincludedir="$ac_optarg" ;;

  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
    ac_prev=prefix ;;
  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
    prefix="$ac_optarg" ;;

  -program-prefix | --program-prefix | --program-prefi | --program-pref \
  | --program-pre | --program-pr | --program-p)
    ac_prev=program_prefix ;;
  -program-prefix=* | --program-prefix=* | --program-prefi=* \
  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
    program_prefix="$ac_optarg" ;;

  -program-suffix | --program-suffix | --program-suffi | --program-suff \
  | --program-suf | --program-su | --program-s)
    ac_prev=program_suffix ;;
  -program-suffix=* | --program-suffix=* | --program-suffi=* \
  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
    program_suffix="$ac_optarg" ;;

  -program-transform-name | --program-transform-name \
  | --program-transform-nam | --program-transform-na \
  | --program-transform-n | --program-transform- \
  | --program-transform | --program-transfor \
  | --program-transfo | --program-transf \
  | --program-trans | --program-tran \
  | --progr-tra | --program-tr | --program-t)
    ac_prev=program_transform_name ;;
  -program-transform-name=* | --program-transform-name=* \
  | --program-transform-nam=* | --program-transform-na=* \
  | --program-transform-n=* | --program-transform-=* \
  | --program-transform=* | --program-transfor=* \
  | --program-transfo=* | --program-transf=* \
  | --program-trans=* | --program-tran=* \
  | --progr-tra=* | --program-tr=* | --program-t=*)
    program_transform_name="$ac_optarg" ;;

  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  | -silent | --silent | --silen | --sile | --sil)
    silent=yes ;;

  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
    ac_prev=sbindir ;;
  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  | --sbi=* | --sb=*)
    sbindir="$ac_optarg" ;;

  -sharedstatedir | --sharedstatedir | --sharedstatedi \
  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  | --sharedst | --shareds | --shared | --share | --shar \
  | --sha | --sh)
    ac_prev=sharedstatedir ;;
  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  | --sha=* | --sh=*)
    sharedstatedir="$ac_optarg" ;;

  -site | --site | --sit)
    ac_prev=site ;;
  -site=* | --site=* | --sit=*)
    site="$ac_optarg" ;;

  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
    ac_prev=srcdir ;;
  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
    srcdir="$ac_optarg" ;;

  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  | --syscon | --sysco | --sysc | --sys | --sy)
    ac_prev=sysconfdir ;;
  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
    sysconfdir="$ac_optarg" ;;

  -target | --target | --targe | --targ | --tar | --ta | --t)
    ac_prev=target ;;
  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
    target="$ac_optarg" ;;

  -v | -verbose | --verbose | --verbos | --verbo | --verb)
    verbose=yes ;;

  -version | --version | --versio | --versi | --vers)
387
    echo "configure generated by autoconf version 2.13"
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
    exit 0 ;;

  -with-* | --with-*)
    ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
    # Reject names that are not valid shell variable names.
    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
    fi
    ac_package=`echo $ac_package| sed 's/-/_/g'`
    case "$ac_option" in
      *=*) ;;
      *) ac_optarg=yes ;;
    esac
    eval "with_${ac_package}='$ac_optarg'" ;;

  -without-* | --without-*)
    ac_package=`echo $ac_option|sed -e 's/-*without-//'`
    # Reject names that are not valid shell variable names.
    if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
    fi
    ac_package=`echo $ac_package| sed 's/-/_/g'`
    eval "with_${ac_package}=no" ;;

  --x)
    # Obsolete; use --with-x.
    with_x=yes ;;

  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  | --x-incl | --x-inc | --x-in | --x-i)
    ac_prev=x_includes ;;
  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
    x_includes="$ac_optarg" ;;

  -x-libraries | --x-libraries | --x-librarie | --x-librari \
  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
    ac_prev=x_libraries ;;
  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
    x_libraries="$ac_optarg" ;;

  -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
    ;;

  *)
    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
      echo "configure: warning: $ac_option: invalid host type" 1>&2
    fi
    if test "x$nonopt" != xNONE; then
      { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
    fi
    nonopt="$ac_option"
    ;;

  esac
done

if test -n "$ac_prev"; then
  { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
fi

trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15

# File descriptor usage:
# 0 standard input
# 1 file creation
# 2 errors and warnings
# 3 some systems may open it to /dev/tty
# 4 used on the Kubota Titan
# 6 checking for... messages and results
# 5 compiler messages saved in config.log
if test "$silent" = yes; then
  exec 6>/dev/null
else
  exec 6>&1
fi
exec 5>./config.log

echo "\
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
" 1>&5

# Strip out --no-create and --no-recursion so they do not pile up.
# Also quote any args containing shell metacharacters.
ac_configure_args=
for ac_arg
do
  case "$ac_arg" in
  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  | --no-cr | --no-c) ;;
  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
  ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  esac
done

# NLS nuisances.
489 490 491 492
# Only set these to C if already set.  These must not be set unconditionally
# because not all systems understand e.g. LANG=C (notably SCO).
# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
# Non-C LC_CTYPE values break the ctype check.
M
Marc G. Fournier 已提交
493
if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
494 495 496
if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
497 498 499 500 501 502 503 504

# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -rf conftest* confdefs.h
# AIX cpp loses on an empty file, so make sure it contains at least a newline.
echo > confdefs.h

# A filename unique to this package, relative to the directory that
# configure is in, which we can look for to find out if srcdir is correct.
505
ac_unique_file=src/backend/access/common/heaptuple.c
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556

# Find the source files, if location was not specified.
if test -z "$srcdir"; then
  ac_srcdir_defaulted=yes
  # Try the directory containing this script, then its parent.
  ac_prog=$0
  ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  srcdir=$ac_confdir
  if test ! -r $srcdir/$ac_unique_file; then
    srcdir=..
  fi
else
  ac_srcdir_defaulted=no
fi
if test ! -r $srcdir/$ac_unique_file; then
  if test "$ac_srcdir_defaulted" = yes; then
    { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  else
    { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  fi
fi
srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`

# Prefer explicitly selected file to automatically selected ones.
if test -z "$CONFIG_SITE"; then
  if test "x$prefix" != xNONE; then
    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  else
    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  fi
fi
for ac_site_file in $CONFIG_SITE; do
  if test -r "$ac_site_file"; then
    echo "loading site script $ac_site_file"
    . "$ac_site_file"
  fi
done

if test -r "$cache_file"; then
  echo "loading cache $cache_file"
  . $cache_file
else
  echo "creating cache $cache_file"
  > $cache_file
fi

ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
557
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
558
cross_compiling=$ac_cv_prog_cc_cross
559

560 561
ac_exeext=
ac_objext=o
562 563 564 565 566 567 568 569 570 571 572 573 574
if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
  # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
    ac_n= ac_c='
' ac_t='	'
  else
    ac_n=-n ac_c= ac_t=
  fi
else
  ac_n= ac_c='\c' ac_t=
fi


575 576


T
Tom Lane 已提交
577

578

579
ac_aux_dir=
580
for ac_dir in config $srcdir/config; do
581 582 583 584 585 586 587 588 589 590 591
  if test -f $ac_dir/install-sh; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install-sh -c"
    break
  elif test -f $ac_dir/install.sh; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/install.sh -c"
    break
  fi
done
if test -z "$ac_aux_dir"; then
592
  { echo "configure: error: can not find install-sh or install.sh in config $srcdir/config" 1>&2; exit 1; }
593 594 595 596 597 598
fi
ac_config_guess=$ac_aux_dir/config.guess
ac_config_sub=$ac_aux_dir/config.sub
ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.


599 600 601 602 603 604 605
VERSION='7.1devel'

cat >> confdefs.h <<EOF
#define PG_VERSION "$VERSION"
EOF


606

607
# Make sure we can run config.sub.
608
if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
609 610 611 612
else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
fi

echo $ac_n "checking host system type""... $ac_c" 1>&6
613
echo "configure:614: checking host system type" >&5
614 615 616 617 618 619

host_alias=$host
case "$host_alias" in
NONE)
  case $nonopt in
  NONE)
620
    if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
621 622 623 624 625 626
    else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
    fi ;;
  *) host_alias=$nonopt ;;
  esac ;;
esac

627
host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
628 629 630
host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
631 632
echo "$ac_t""$host" 1>&6

633

634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666
template=
echo $ac_n "checking which template to use""... $ac_c" 1>&6
echo "configure:637: checking which template to use" >&5

# check if --with-template was given
if test x"${with_template+set}" = xset ; then
  case $with_template in
    yes|no) { echo "configure: error: You must supply an argument to the --with-template option." 1>&2; exit 1; };;
    list)   echo; ls "$srcdir/src/template"; exit;;
    *)      if test -f "$srcdir/src/template/$with_template" ; then
              template=$with_template
            else
              { echo "configure: error: \`$with_template' is not a valid template name. Use \`list' for a list." 1>&2; exit 1; }
            fi;;
  esac

else # --with-template not given

case $host_os in
     aix*) template=aix ;;
    bsdi*) template=bsdi ;;
  cygwin*) template=win ;;
    dgux*) template=dgux ;;
 freebsd*) template=freebsd ;;
    hpux*) template=hpux ;;
    irix*) template=irix5 ;;
   linux*) template=linux ;;
  netbsd*) template=netbsd ;;
nextstep*) template=nextstep ;;
 openbsd*) template=openbsd ;;
     osf*) template=osf ;;
     qnx*) template=qnx4 ;;
     sco*) template=sco ;;
667
 solaris*)
668 669 670
	case $host_cpu in
	  sparc) template=solaris_sparc ;;
	   i?86) template=solaris_i386 ;;
B
Bruce Momjian 已提交
671
	esac ;;
672
   sunos*) template=sunos4 ;;
B
Bruce Momjian 已提交
673
 sysv4.2*)
674 675 676 677 678 679
        case $host_vendor in
          univel) template=univel ;;
        esac ;;
   sysv4*) template=svr4 ;;
 sysv5uw*) template=unixware ;;
  ultrix*) template=ultrix4 ;;
680 681
esac

682 683 684 685 686 687 688 689 690 691 692 693 694
  if test x"$template" = x"" ; then
    { echo "configure: error: 
*******************************************************************
PostgreSQL has apparently not been ported to your platform yet.
To try a manual configuration, look info the src/template directory
for a similar platform and use the \`--with-template=' option.

Please also contact <pgsql-ports@postgresql.org> to see about
rectifying this.  Include the above \`checking host system type...'
line.
*******************************************************************
" 1>&2; exit 1; }
  fi
695

696
fi # --with-template not given
697

698
echo "$ac_t""$template" 1>&6
699

700 701
PORTNAME=$template
CPU=$host_cpu
702

M
 
Marc G. Fournier 已提交
703

704

705

B
Bruce Momjian 已提交
706

707

708

709 710 711 712 713 714 715 716 717 718 719 720 721 722 723

# Pick right test-and-set (TAS) code. Most platforms have inline
# assembler code in their port include file, so we just use a dummy
# file here.
tas_file=dummy.s
need_tas=no
case $template in
  hpux)           need_tas=yes; tas_file=hpux.s ;;
  solaris_sparc)  need_tas=yes; tas_file=solaris_sparc.s ;;
  solaris_i386)   need_tas=yes; tas_file=solaris_i386.s ;;
esac

if test "$need_tas" = yes ; then
  
  TAS=tas.o
724 725
fi

726 727


728 729 730 731

##
## Command line options
##
732

733

734 735 736
#
# Add non-standard directories to the include path
#
737 738 739
# Check whether --with-includes or --without-includes was given.
if test "${with_includes+set}" = set; then
  withval="$with_includes"
740 741 742 743
  
  case $withval in
    yes | no) { echo "configure: error: You must supply an argument to the --with-includes option." 1>&2; exit 1; };;
  esac
744

745
fi
746 747


748

749 750 751
#
# Add non-standard directories to the library search path
#
752 753 754
# Check whether --with-libraries or --without-libraries was given.
if test "${with_libraries+set}" = set; then
  withval="$with_libraries"
755
  
756 757 758 759 760
  case $withval in
    yes | no) { echo "configure: error: You must supply an argument to the --with-libraries option." 1>&2; exit 1; };;
  esac
  LIBRARY_DIRS=$withval

761 762 763
fi


764 765 766
# Check whether --with-libs or --without-libs was given.
if test "${with_libs+set}" = set; then
  withval="$with_libs"
767
  
768 769 770 771
  case $withval in
    yes | no) { echo "configure: error: You must supply an argument to the --with-libs option." 1>&2; exit 1; };;
  esac
  LIBRARY_DIRS=$withval
772

773 774
fi

775

776

777 778 779 780
#
# Locale (--enable-locale)
#
echo $ac_n "checking whether to build with locale support""... $ac_c" 1>&6
781
echo "configure:782: checking whether to build with locale support" >&5
782 783 784
# Check whether --enable-locale or --disable-locale was given.
if test "${enable_locale+set}" = set; then
  enableval="$enable_locale"
785 786
  if test x"$enable_locale" != x"no" ; then
  enable_locale=yes
787
  cat >> confdefs.h <<\EOF
788
#define USE_LOCALE 1
789 790
EOF

791
fi
792 793 794 795 796
else
  enable_locale=no
fi

echo "$ac_t""$enable_locale" 1>&6
797

798

799 800 801 802
#
# Cyrillic recode (--enable-recode)
#
echo $ac_n "checking whether to build with Cyrillic recode support""... $ac_c" 1>&6
803
echo "configure:804: checking whether to build with Cyrillic recode support" >&5
804 805 806
# Check whether --enable-recode or --disable-recode was given.
if test "${enable_recode+set}" = set; then
  enableval="$enable_recode"
807 808
  if test x"$enable_recode" != x"no" ; then
  enable_recode=yes
809
  cat >> confdefs.h <<\EOF
810
#define CYR_RECODE 1
811 812
EOF

813
fi
814 815 816
else
  enable_recode=no
fi
817

818
echo "$ac_t""$enable_recode" 1>&6
819

P
Peter Eisentraut 已提交
820

821 822 823 824 825
#
# Multibyte support
#
MULTIBYTE=
echo $ac_n "checking whether to build with multibyte character support""... $ac_c" 1>&6
826
echo "configure:827: checking whether to build with multibyte character support" >&5
P
Peter Eisentraut 已提交
827 828 829
# Check whether --enable-multibyte or --disable-multibyte was given.
if test "${enable_multibyte+set}" = set; then
  enableval="$enable_multibyte"
M
Marc G. Fournier 已提交
830
  
831 832 833 834 835 836
  case $enableval in
    no)         enable_multibyte=no;;
    yes)        enable_multibyte=yes; MULTIBYTE=SQL_ASCII;;
    SQL_ASCII|EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
                enable_multibyte=yes; MULTIBYTE=$enableval;;
    *)          { echo "configure: error: argument to --enable-multibyte must be one of:
P
Peter Eisentraut 已提交
837 838 839
  SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW,
  UNICODE, MULE_INTERNAL,
  LATIN1, LATIN2, LATIN3, LATIN4, LATIN5,
840
  KOI8, WIN, ALT
841 842
Or do not specify an argument to the option to use the default." 1>&2; exit 1; } ;;
  esac
P
Peter Eisentraut 已提交
843

M
Marc G. Fournier 已提交
844
else
845
  enable_multibyte=no
M
Marc G. Fournier 已提交
846 847 848
fi


849 850 851 852


if test "$enable_multibyte" = yes ; then
  cat >> confdefs.h <<\EOF
853
#define MULTIBYTE 1
854 855 856 857 858
EOF

  echo "$ac_t""yes, default $MULTIBYTE" 1>&6
else
  echo "$ac_t""no" 1>&6
859
fi
T
Tatsuo Ishii 已提交
860

P
Peter Eisentraut 已提交
861

862 863 864 865
#
# Default port number (--with-pgport), default 5432
#
echo $ac_n "checking for default port number""... $ac_c" 1>&6
866
echo "configure:867: checking for default port number" >&5
867 868 869
# Check whether --with-pgport or --without-pgport was given.
if test "${with_pgport+set}" = set; then
  withval="$with_pgport"
870 871 872 873 874
  case $withval in
  yes|no)       { echo "configure: error: You must supply an argument to the --with-pgport option" 1>&2; exit 1; };;
  *)            default_port=$withval;;
esac

875
else
876
  default_port=5432
877 878
fi

879
# Need both of these because backend wants an integer and frontend a string
880 881 882 883 884 885 886 887
cat >> confdefs.h <<EOF
#define DEF_PGPORT ${default_port}
EOF

cat >> confdefs.h <<EOF
#define DEF_PGPORT_STR "${default_port}"
EOF

888
echo "$ac_t""$default_port" 1>&6
889

890

891 892 893 894
#
# Maximum number of allowed connections (--with-maxbackends), default 32
#
echo $ac_n "checking for default soft limit on number of connections""... $ac_c" 1>&6
895
echo "configure:896: checking for default soft limit on number of connections" >&5
896 897 898
# Check whether --with-maxbackends or --without-maxbackends was given.
if test "${with_maxbackends+set}" = set; then
  withval="$with_maxbackends"
899 900 901
  case $withval in
  yes|no)       { echo "configure: error: You must supply an argument to the --with-maxbackends option" 1>&2; exit 1; };;
esac
902
else
903
  with_maxbackends=32
904 905
fi

906 907 908 909 910
echo "$ac_t""$with_maxbackends" 1>&6
cat >> confdefs.h <<EOF
#define DEF_MAXBACKENDS $with_maxbackends
EOF

911

912

913
#
914 915 916
# C compiler
#

917 918 919
# For historical reasons you can also use --with-CC to specify the C compiler
# to use, although the standard way to do this is to set the CC environment
# variable.
B
Bruce Momjian 已提交
920
if test "${with_CC+set}" = set; then
921 922 923 924
  case $with_CC in
    yes | no)   { echo "configure: error: You must supply an argument to the --with-CC option." 1>&2; exit 1; };;
    *)          CC=$with_CC;;
  esac
925 926
fi

927 928
# On AIX, default compiler to xlc.
if test "$template" = aix && test -z "$CC" ; then CC=xlc; fi
929 930

# Extract the first word of "gcc", so it can be a program name with args.
931 932
set dummy gcc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
933
echo "configure:934: checking for $ac_word" >&5
934 935 936 937 938 939
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$CC"; then
  ac_cv_prog_CC="$CC" # Let the user override the test.
else
940 941 942
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_CC="gcc"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
CC="$ac_cv_prog_CC"
if test -n "$CC"; then
  echo "$ac_t""$CC" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

if test -z "$CC"; then
  # Extract the first word of "cc", so it can be a program name with args.
set dummy cc; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
963
echo "configure:964: checking for $ac_word" >&5
964 965 966 967 968 969
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$CC"; then
  ac_cv_prog_CC="$CC" # Let the user override the test.
else
970
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
971
  ac_prog_rejected=no
972 973
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
        ac_prog_rejected=yes
	continue
      fi
      ac_cv_prog_CC="cc"
      break
    fi
  done
  IFS="$ac_save_ifs"
if test $ac_prog_rejected = yes; then
  # We found a bogon in the path, so make sure we never use it.
  set dummy $ac_cv_prog_CC
  shift
  if test $# -gt 0; then
    # We chose a different compiler from the bogus one.
    # However, it has the same basename, so the bogon will be chosen
    # first if we set CC to just the basename; use the full file name.
    shift
    set dummy "$ac_dir/$ac_word" "$@"
    shift
    ac_cv_prog_CC="$@"
  fi
fi
fi
fi
CC="$ac_cv_prog_CC"
if test -n "$CC"; then
  echo "$ac_t""$CC" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

1008 1009 1010 1011 1012 1013
  if test -z "$CC"; then
    case "`uname -s`" in
    *win32* | *WIN32*)
      # Extract the first word of "cl", so it can be a program name with args.
set dummy cl; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1014
echo "configure:1015: checking for $ac_word" >&5
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$CC"; then
  ac_cv_prog_CC="$CC" # Let the user override the test.
else
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_CC="cl"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
CC="$ac_cv_prog_CC"
if test -n "$CC"; then
  echo "$ac_t""$CC" 1>&6
else
  echo "$ac_t""no" 1>&6
fi
 ;;
    esac
  fi
1042 1043 1044
  test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; }
fi

1045
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
1046
echo "configure:1047: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
1047 1048 1049 1050 1051

ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
1052
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
1053 1054
cross_compiling=$ac_cv_prog_cc_cross

1055 1056
cat > conftest.$ac_ext << EOF

1057
#line 1058 "configure"
1058
#include "confdefs.h"
1059

1060 1061
main(){return(0);}
EOF
1062
if { (eval echo configure:1063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
  ac_cv_prog_cc_works=yes
  # If we can't run a trivial program, we are probably using a cross compiler.
  if (./conftest; exit) 2>/dev/null; then
    ac_cv_prog_cc_cross=no
  else
    ac_cv_prog_cc_cross=yes
  fi
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  ac_cv_prog_cc_works=no
fi
rm -fr conftest*
1076 1077 1078 1079 1080 1081
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross
1082 1083 1084 1085 1086 1087

echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
if test $ac_cv_prog_cc_works = no; then
  { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
1088
echo "configure:1089: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
1089 1090 1091
echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
cross_compiling=$ac_cv_prog_cc_cross

1092
echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
1093
echo "configure:1094: checking whether we are using GNU C" >&5
1094 1095 1096 1097 1098 1099 1100 1101
if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.c <<EOF
#ifdef __GNUC__
  yes;
#endif
EOF
1102
if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1103: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
1103 1104 1105 1106 1107 1108 1109
  ac_cv_prog_gcc=yes
else
  ac_cv_prog_gcc=no
fi
fi

echo "$ac_t""$ac_cv_prog_gcc" 1>&6
1110

1111
if test $ac_cv_prog_gcc = yes; then
1112
  GCC=yes
1113 1114 1115 1116 1117 1118 1119 1120
else
  GCC=
fi

ac_test_CFLAGS="${CFLAGS+set}"
ac_save_CFLAGS="$CFLAGS"
CFLAGS=
echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
1121
echo "configure:1122: checking whether ${CC-cc} accepts -g" >&5
1122
if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
1123 1124 1125 1126
  echo $ac_n "(cached) $ac_c" 1>&6
else
  echo 'void f(){}' > conftest.c
if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
1127
  ac_cv_prog_cc_g=yes
1128
else
1129
  ac_cv_prog_cc_g=no
1130 1131 1132 1133 1134
fi
rm -f conftest*

fi

1135
echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
1136 1137 1138 1139
if test "$ac_test_CFLAGS" = set; then
  CFLAGS="$ac_save_CFLAGS"
elif test $ac_cv_prog_cc_g = yes; then
  if test "$GCC" = yes; then
1140 1141
    CFLAGS="-g -O2"
  else
1142
    CFLAGS="-g"
M
 
Marc G. Fournier 已提交
1143
  fi
1144
else
1145 1146 1147 1148 1149
  if test "$GCC" = yes; then
    CFLAGS="-O2"
  else
    CFLAGS=
  fi
1150 1151
fi

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
# Read the template
. "$srcdir/src/template/$template" || exit
echo "using CFLAGS=$CFLAGS"
# Check if the compiler still works with the template settings
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
echo "configure:1158: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5

ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross

cat > conftest.$ac_ext << EOF

#line 1169 "configure"
#include "confdefs.h"

main(){return(0);}
EOF
if { (eval echo configure:1174: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  ac_cv_prog_cc_works=yes
  # If we can't run a trivial program, we are probably using a cross compiler.
  if (./conftest; exit) 2>/dev/null; then
    ac_cv_prog_cc_cross=no
  else
    ac_cv_prog_cc_cross=yes
  fi
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  ac_cv_prog_cc_works=no
fi
rm -fr conftest*
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross

echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
if test $ac_cv_prog_cc_works = no; then
  { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
fi
echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
echo "configure:1200: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
cross_compiling=$ac_cv_prog_cc_cross

1203
echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
1204
echo "configure:1205: checking how to run the C preprocessor" >&5
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
  CPP=
fi
if test -z "$CPP"; then
if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
    # This must be in double quotes, not single quotes, because CPP may get
  # substituted into the Makefile and "${CC-cc}" will confuse make.
  CPP="${CC-cc} -E"
  # On the NeXT, cc -E runs the code through the compiler's parser,
  # not just through cpp.
  cat > conftest.$ac_ext <<EOF
1219
#line 1220 "configure"
1220 1221 1222 1223 1224
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1225
{ (eval echo configure:1226: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1226
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1227 1228 1229 1230 1231 1232 1233 1234 1235
if test -z "$ac_err"; then
  :
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  CPP="${CC-cc} -E -traditional-cpp"
  cat > conftest.$ac_ext <<EOF
1236
#line 1237 "configure"
M
 
Marc G. Fournier 已提交
1237 1238 1239 1240 1241
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1242
{ (eval echo configure:1243: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
  :
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  CPP="${CC-cc} -nologo -E"
  cat > conftest.$ac_ext <<EOF
1253
#line 1254 "configure"
1254 1255 1256 1257 1258
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1259
{ (eval echo configure:1260: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1260
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271
if test -z "$ac_err"; then
  :
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  CPP=/lib/cpp
fi
rm -f conftest*
fi
1272 1273
rm -f conftest*
fi
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
rm -f conftest*
  ac_cv_prog_CPP="$CPP"
fi
  CPP="$ac_cv_prog_CPP"
else
  ac_cv_prog_CPP="$CPP"
fi
echo "$ac_t""$CPP" 1>&6

if test $ac_cv_prog_gcc = yes; then
T
Tom Lane 已提交
1284
    echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6
1285
echo "configure:1286: checking whether ${CC-cc} needs -traditional" >&5
T
Tom Lane 已提交
1286 1287 1288 1289 1290
if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
    ac_pattern="Autoconf.*'x'"
  cat > conftest.$ac_ext <<EOF
1291
#line 1292 "configure"
T
Tom Lane 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308
#include "confdefs.h"
#include <sgtty.h>
Autoconf TIOCGETP
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "$ac_pattern" >/dev/null 2>&1; then
  rm -rf conftest*
  ac_cv_prog_gcc_traditional=yes
else
  rm -rf conftest*
  ac_cv_prog_gcc_traditional=no
fi
rm -f conftest*


  if test $ac_cv_prog_gcc_traditional = no; then
    cat > conftest.$ac_ext <<EOF
1309
#line 1310 "configure"
T
Tom Lane 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
#include "confdefs.h"
#include <termio.h>
Autoconf TCGETA
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "$ac_pattern" >/dev/null 2>&1; then
  rm -rf conftest*
  ac_cv_prog_gcc_traditional=yes
fi
rm -f conftest*

  fi
fi

echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&6
  if test $ac_cv_prog_gcc_traditional = yes; then
    CC="$CC -traditional"
  fi
fi


1331

1332 1333 1334 1335 1336





1337
# Create compiler version string
1338 1339
if test x"$GCC" = x"yes" ; then
  cc_string="GCC `${CC} --version`"
1340
else
1341
  cc_string=$CC
1342
fi
1343 1344 1345 1346
cat >> confdefs.h <<EOF
#define PG_VERSION_STR "PostgreSQL $VERSION on $host, compiled by $cc_string"
EOF

1347 1348


1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
# --enable-debug adds -g to compiler flags
# --disable-debug will forcefully remove it
echo $ac_n "checking setting debug compiler flag""... $ac_c" 1>&6
echo "configure:1353: checking setting debug compiler flag" >&5
# Check whether --enable-debug or --disable-debug was given.
if test "${enable_debug+set}" = set; then
  enableval="$enable_debug"
  
  case $enableval in
    yes)  CFLAGS="$CFLAGS -g"
          echo "$ac_t""yes" 1>&6
          ;;
    *)    CFLAGS=`echo "$CFLAGS" | sed -e 's/ -g/ /g' -e 's/^-g//'`
          echo "$ac_t""no" 1>&6
          ;;
  esac

else
  echo "$ac_t""using default" 1>&6
fi



#
# Include directories
#
ac_save_IFS=$IFS
IFS=':'
# SRCH_INC comes from the template file
for dir in $with_includes $SRCH_INC; do
  if test -d "$dir"; then
    INCLUDES="$INCLUDES -I$dir"
  else
    echo "configure: warning: *** Include directory $dir does not exist." 1>&2
  fi
done
IFS=$ac_save_IFS



#
# Library directories
#
ac_save_IFS=$IFS
IFS=':'
# LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
for dir in $LIBRARY_DIRS $SRCH_LIB; do
  if test -d "$dir"; then
    PGSQL_LDFLAGS="$PGSQL_LDFLAGS -L$dir"
  else
    echo "configure: warning: *** Library directory $dir does not exist." 1>&2
  fi
done
IFS=$ac_save_IFS


1405 1406

echo $ac_n "checking setting USE_TCL""... $ac_c" 1>&6
1407
echo "configure:1408: checking setting USE_TCL" >&5
1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
# Check whether --with-tcl or --without-tcl was given.
if test "${with_tcl+set}" = set; then
  withval="$with_tcl"
  
	case "$withval" in
	y | ye | yes)		USE_TCL=true; USE_TK=true; echo "$ac_t""enabled" 1>&6 ;;
	*)			USE_TCL=; USE_TK=; echo "$ac_t""disabled" 1>&6 ;;
	esac
   
else
   USE_TCL=; USE_TK=; echo "$ac_t""disabled" 1>&6 

fi


1423 1424


1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457


# Check whether --with-tclconfig or --without-tclconfig was given.
if test "${with_tclconfig+set}" = set; then
  withval="$with_tclconfig"
  
	case "$withval" in
	"" | y | ye | yes | n | no)
	    { echo "configure: error: *** You must supply an argument to the --with-tclconfig option." 1>&2; exit 1; }
	  ;;
	esac
	TCL_DIRS="$withval"
    

fi



# Check whether --with-tkconfig or --without-tkconfig was given.
if test "${with_tkconfig+set}" = set; then
  withval="$with_tkconfig"
  
	case "$withval" in
	"" | y | ye | yes | n | no)
	    { echo "configure: error: *** You must supply an argument to the --with-tkconfig option." 1>&2; exit 1; }
	  ;;
	esac
	TK_DIRS="$withval"
    

fi


1458 1459

echo $ac_n "checking whether to build Perl modules""... $ac_c" 1>&6
1460
echo "configure:1461: checking whether to build Perl modules" >&5
1461 1462 1463
# Check whether --with-perl or --without-perl was given.
if test "${with_perl+set}" = set; then
  withval="$with_perl"
1464 1465
  if test x"${withval}" = x"yes" ; then
  echo "$ac_t""yes" 1>&6
1466
else
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
  echo "$ac_t""no" 1>&6
fi
else
  echo "$ac_t""no" 1>&6
fi




echo $ac_n "checking whether to build Python modules""... $ac_c" 1>&6
1477
echo "configure:1478: checking whether to build Python modules" >&5
1478 1479 1480 1481 1482 1483 1484 1485
# Check whether --with-python or --without-python was given.
if test "${with_python+set}" = set; then
  withval="$with_python"
  if test x"${withval}" = x"yes" ; then
  echo "$ac_t""yes" 1>&6
  # Extract the first word of "python", so it can be a program name with args.
set dummy python; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1486
echo "configure:1487: checking for $ac_word" >&5
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
if eval "test \"`echo '$''{'ac_cv_prog_PYTHON'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$PYTHON"; then
  ac_cv_prog_PYTHON="$PYTHON" # Let the user override the test.
else
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_PYTHON="python"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
PYTHON="$ac_cv_prog_PYTHON"
if test -n "$PYTHON"; then
  echo "$ac_t""$PYTHON" 1>&6
else
  echo "$ac_t""no" 1>&6
fi
1511

1512 1513 1514 1515 1516 1517 1518 1519 1520 1521
  
if test "${PYTHON+set}" = set ; then
  python_version=`${PYTHON} -c "import sys; print sys.version[:3]"`
  python_prefix=`${PYTHON} -c "import sys; print sys.prefix"`
  python_execprefix=`${PYTHON} -c "import sys; print sys.exec_prefix"`
  python_configdir="${python_execprefix}/lib/python${python_version}/config"
  python_moduledir="${python_prefix}/lib/python${python_version}"
  python_extmakefile="${python_configdir}/Makefile.pre.in"

  echo $ac_n "checking for Python extension makefile""... $ac_c" 1>&6
1522
echo "configure:1523: checking for Python extension makefile" >&5
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544
  if test -f "${python_extmakefile}" ; then
    echo "$ac_t""found" 1>&6
  else
    echo "$ac_t""no" 1>&6
    { echo "configure: error: The Python extension makefile was expected at \`${python_extmakefile}\'
but does not exist. This means the Python module cannot be built automatically." 1>&2; exit 1; }
  fi

  
  
  
  
  
  
else
  { echo "configure: error: Python not found" 1>&2; exit 1; }
fi
else
  echo "$ac_t""no" 1>&6
fi
else
  echo "$ac_t""no" 1>&6
1545 1546 1547
fi


1548

1549

1550 1551 1552 1553

#
# Kerberos 4
#
1554 1555 1556 1557
# Check whether --with-krb4 or --without-krb4 was given.
if test "${with_krb4+set}" = set; then
  withval="$with_krb4"
  if test x"$withval" != x"no"; then
1558 1559
  if test x"$withval" != x"yes"; then
    krb4_prefix=$withval
1560
  else
1561
    krb4_prefix=/usr/athena
1562 1563 1564
  fi
  with_krb4=yes
else
1565
  with_krb4=no
1566 1567
fi
else
1568
  with_krb4=no
1569 1570 1571 1572
fi



1573 1574
if test "$with_krb4" = yes ; then
  echo "$ac_t""building with Kerberos 4 support" 1>&6
1575 1576 1577 1578 1579
  cat >> confdefs.h <<\EOF
#define KRB4 
EOF


1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
  if test -d "$krb4_prefix"; then
    if test -d "$krb4_prefix/include"; then
      INCLUDES="$INCLUDES -I$krb4_prefix/include"
    fi
    if test -d "$krb4_prefix/lib"; then
      krb_libdir="-L$krb4_prefix/lib"
      LIBS="$krb_libdir $LIBS"
    fi
  fi
    KRB_LIBS="$krb_libdir -lkrb -ldes"
fi
1591 1592


1593 1594 1595
#
# Kerberos 5
#
1596 1597 1598 1599
# Check whether --with-krb5 or --without-krb5 was given.
if test "${with_krb5+set}" = set; then
  withval="$with_krb5"
  if test x"$withval" != x"no"; then
1600 1601
  if test x"$withval" != x"yes"; then
    krb5_prefix=$withval
1602
  else
1603
    krb5_prefix=/usr/athena
1604 1605 1606
  fi
  with_krb5=yes
else
1607
  with_krb5=no
1608 1609
fi
else
1610
  with_krb5=no
1611 1612 1613 1614
fi



1615 1616 1617 1618
if test "$with_krb5" = yes ; then
  echo "$ac_t""building with Kerberos 5 support" 1>&6
  cat >> confdefs.h <<\EOF
#define KRB5 
1619 1620 1621
EOF


1622 1623 1624 1625 1626 1627 1628 1629 1630
  if test -d $krb5_prefix; then
    if test -d "$krb5_prefix/include"; then
      INCLUDES="$INCLUDES -I$krb5_prefix/include"
    fi
    if test -d "$krb5_prefix/lib"; then
      krb_libdir="-L$krb5_prefix/lib"
      LIBS="$krb_libdir $LIBS"
    fi
  fi
1631

1632
    KRB_LIBS="$krb_libdir -lkrb5 -lcrypto -lcom_err"
1633 1634 1635
fi


1636 1637 1638
# Using both Kerberos 4 and Kerberos 5 at the same time isn't going to work.
if test "$with_krb4" = yes && test "$with_krb5" = yes ; then
  { echo "configure: error: Kerberos 4 and Kerberos 5 support cannot be combined" 1>&2; exit 1; }
1639 1640 1641 1642 1643
fi




1644 1645 1646
#
# Kerberos configuration parameters
#
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
# Check whether --with-krb-srvnam or --without-krb-srvnam was given.
if test "${with_krb_srvnam+set}" = set; then
  withval="$with_krb_srvnam"
  if test x"$withval" = x"yes"; then
  { echo "configure: error: argument required for --with-krb-srvnam" 1>&2; exit 1; }
else
  krb_srvnam=$withval
fi
else
  krb_srvnam="postgres"
fi

cat >> confdefs.h <<EOF
#define PG_KRB_SRVNAM "$krb_srvnam"
EOF


# Check whether --with-krb-srvtab or --without-krb-srvtab was given.
if test "${with_krb_srvtab+set}" = set; then
  withval="$with_krb_srvtab"
  if test x"$withval" = x"yes"; then
  { echo "configure: error: argument required for --with-krb-srvtab" 1>&2; exit 1; }
else
  krb_srvtab=$withval
fi
else
1673 1674 1675 1676
  if test "$with_krb5" = yes ; then
  krb_srvtab='FILE:${sysconfdir}/krb5.keytab'
elif test "$with_krb4" = yes ; then
  krb_srvtab='/etc/srvtab'
1677
else
1678
  krb_srvtab=
1679 1680 1681
fi
fi

1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710



#
# OpenSSL
#
# Check whether --with-openssl or --without-openssl was given.
if test "${with_openssl+set}" = set; then
  withval="$with_openssl"
  if test x"$withval" != x"no" ; then
  if test x"$withval" != x"yes" ; then
    openssl_prefix=$withval
  else
    openssl_prefix=/usr/local/ssl
  fi
  with_openssl=yes
else
  with_openssl=no
fi
else
  with_openssl=no
fi



if test "$with_openssl" = yes ; then
  echo "$ac_t""building with OpenSSL support" 1>&6
  cat >> confdefs.h <<\EOF
#define USE_SSL 
1711 1712 1713
EOF


1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
  if test -d "${openssl_prefix}/include" ; then
    INCLUDES="$INCLUDES -I${openssl_prefix}/include"
  fi
  if test -d "${openssl_prefix}/lib" ; then
    openssl_libdir="${openssl_prefix}/lib"
    LIBS="$LIBS -L${openssl_prefix}/lib"
  fi
fi


# OpenSSL and Kerberos 5 both have a `crypto' library, so if you want to
# use both of them you'll have to figure it out yourself.
if test "$with_openssl" = yes && test "$with_krb5" = yes ; then
  { echo "configure: error: OpenSSL and Kerberos 5 support cannot be combined" 1>&2; exit 1; }
fi
1729 1730


1731 1732 1733
 
if test "x${with_odbc+set}" = xset && test "x${enable_odbc+set}" != xset; then
  enable_odbc=$with_odbc
1734
fi
1735 1736
 
echo $ac_n "checking whether to build the ODBC driver""... $ac_c" 1>&6
1737
echo "configure:1738: checking whether to build the ODBC driver" >&5
1738 1739 1740 1741 1742
# Check whether --enable-odbc or --disable-odbc was given.
if test "${enable_odbc+set}" = set; then
  enableval="$enable_odbc"
  if test x"$enableval" = x"yes" ; then
  echo "$ac_t""yes" 1>&6
B
Bruce Momjian 已提交
1743
else
1744
  echo "$ac_t""no" 1>&6
B
Bruce Momjian 已提交
1745
fi
1746
else
1747
  echo "$ac_t""no" 1>&6
1748 1749 1750 1751
fi



B
Bruce Momjian 已提交
1752

1753 1754 1755 1756 1757 1758
if test x"$enable_odbc" = x"yes" ; then
# Check whether --with-odbcinst or --without-odbcinst was given.
if test "${with_odbcinst+set}" = set; then
  withval="$with_odbcinst"
  if test x"$with_odbcinst" = x"yes" || test x"$with_odbcinst" = x"no" ; then
  { echo "configure: error: You must supply an argument to the --with-odbcinst option." 1>&2; exit 1; }
B
Bruce Momjian 已提交
1759
fi
1760
odbcinst_ini_dir=$withval
B
Bruce Momjian 已提交
1761
else
1762
  odbcinst_ini_dir='${sysconfdir}'
B
Bruce Momjian 已提交
1763 1764 1765
fi

else
1766
  odbcinst_ini_dir='${sysconfdir}'
B
Bruce Momjian 已提交
1767 1768 1769
fi


1770

B
Bruce Momjian 已提交
1771

1772
echo $ac_n "checking setting ASSERT CHECKING""... $ac_c" 1>&6
1773
echo "configure:1774: checking setting ASSERT CHECKING" >&5
1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786
# Check whether --enable-cassert or --disable-cassert was given.
if test "${enable_cassert+set}" = set; then
  enableval="$enable_cassert"
  cat >> confdefs.h <<\EOF
#define USE_ASSERT_CHECKING 1
EOF
 echo "$ac_t""enabled" 1>&6
else
  echo "$ac_t""disabled" 1>&6

fi


B
Bruce Momjian 已提交
1787

1788
# Assume system is ELF if it predefines __ELF__ as 1,
1789 1790 1791 1792 1793
# otherwise believe host_os based default.
case $host_os in
  freebsd1*|freebsd2*) elf=yes;;
esac

1794
cat > conftest.$ac_ext <<EOF
1795
#line 1796 "configure"
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
#include "confdefs.h"
#if __ELF__
  yes
#endif

EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "yes" >/dev/null 2>&1; then
  rm -rf conftest*
  ELF_SYS=true
else
  rm -rf conftest*
1808 1809
  if test "X$elf" = "Xyes" ; then
  ELF_SYS=true
1810
else
1811
  ELF_SYS=
1812 1813 1814 1815 1816
fi
fi
rm -f conftest*


M
Marc G. Fournier 已提交
1817 1818 1819



1820
echo $ac_n "checking whether to build C++ modules""... $ac_c" 1>&6
1821
echo "configure:1822: checking whether to build C++ modules" >&5
B
Bruce Momjian 已提交
1822 1823 1824
# Check whether --with-CXX or --without-CXX was given.
if test "${with_CXX+set}" = set; then
  withval="$with_CXX"
1825 1826 1827 1828 1829 1830
  if test "x${withval+set}" = xset; then
  echo "$ac_t""yes" 1>&6
  if test x"$withval" != xyes ; then
    CXX=$withval
  fi
  for ac_prog in $CCC c++ g++ gcc CC cxx cc++ cl
B
Bruce Momjian 已提交
1831 1832 1833 1834
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
1835
echo "configure:1836: checking for $ac_word" >&5
B
Bruce Momjian 已提交
1836 1837 1838 1839 1840 1841
if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$CXX"; then
  ac_cv_prog_CXX="$CXX" # Let the user override the test.
else
1842 1843 1844
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
B
Bruce Momjian 已提交
1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_CXX="$ac_prog"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
CXX="$ac_cv_prog_CXX"
if test -n "$CXX"; then
  echo "$ac_t""$CXX" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

test -n "$CXX" && break
done
test -n "$CXX" || CXX="gcc"


echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
1867
echo "configure:1868: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
B
Bruce Momjian 已提交
1868 1869 1870 1871 1872

ac_ext=C
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
1873
ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
B
Bruce Momjian 已提交
1874 1875
cross_compiling=$ac_cv_prog_cxx_cross

1876 1877
cat > conftest.$ac_ext << EOF

1878
#line 1879 "configure"
B
Bruce Momjian 已提交
1879
#include "confdefs.h"
1880 1881

int main(){return(0);}
B
Bruce Momjian 已提交
1882
EOF
1883
if { (eval echo configure:1884: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
B
Bruce Momjian 已提交
1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
  ac_cv_prog_cxx_works=yes
  # If we can't run a trivial program, we are probably using a cross compiler.
  if (./conftest; exit) 2>/dev/null; then
    ac_cv_prog_cxx_cross=no
  else
    ac_cv_prog_cxx_cross=yes
  fi
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  ac_cv_prog_cxx_works=no
fi
rm -fr conftest*
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
1901
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
B
Bruce Momjian 已提交
1902 1903 1904 1905 1906 1907 1908
cross_compiling=$ac_cv_prog_cc_cross

echo "$ac_t""$ac_cv_prog_cxx_works" 1>&6
if test $ac_cv_prog_cxx_works = no; then
  { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; }
fi
echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
1909
echo "configure:1910: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
B
Bruce Momjian 已提交
1910 1911 1912 1913
echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
cross_compiling=$ac_cv_prog_cxx_cross

echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
1914
echo "configure:1915: checking whether we are using GNU C++" >&5
B
Bruce Momjian 已提交
1915 1916 1917 1918 1919 1920 1921 1922
if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.C <<EOF
#ifdef __GNUC__
  yes;
#endif
EOF
1923
if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1924: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
B
Bruce Momjian 已提交
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
  ac_cv_prog_gxx=yes
else
  ac_cv_prog_gxx=no
fi
fi

echo "$ac_t""$ac_cv_prog_gxx" 1>&6

if test $ac_cv_prog_gxx = yes; then
  GXX=yes
1934 1935 1936 1937 1938 1939 1940 1941
else
  GXX=
fi

ac_test_CXXFLAGS="${CXXFLAGS+set}"
ac_save_CXXFLAGS="$CXXFLAGS"
CXXFLAGS=
echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
1942
echo "configure:1943: checking whether ${CXX-g++} accepts -g" >&5
B
Bruce Momjian 已提交
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  echo 'void f(){}' > conftest.cc
if test -z "`${CXX-g++} -g -c conftest.cc 2>&1`"; then
  ac_cv_prog_cxx_g=yes
else
  ac_cv_prog_cxx_g=no
fi
rm -f conftest*

fi

echo "$ac_t""$ac_cv_prog_cxx_g" 1>&6
1957 1958 1959 1960
if test "$ac_test_CXXFLAGS" = set; then
  CXXFLAGS="$ac_save_CXXFLAGS"
elif test $ac_cv_prog_cxx_g = yes; then
  if test "$GXX" = yes; then
B
Bruce Momjian 已提交
1961 1962
    CXXFLAGS="-g -O2"
  else
1963
    CXXFLAGS="-g"
M
 
Marc G. Fournier 已提交
1964
  fi
1965
else
1966 1967 1968 1969 1970
  if test "$GXX" = yes; then
    CXXFLAGS="-O2"
  else
    CXXFLAGS=
  fi
B
Bruce Momjian 已提交
1971 1972
fi

1973
  echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6
1974
echo "configure:1975: checking how to run the C++ preprocessor" >&5
1975 1976 1977 1978 1979
if test -z "$CXXCPP"; then
if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_ext=C
T
Tom Lane 已提交
1980 1981 1982 1983 1984
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cxx_cross
1985 1986
  CXXCPP="${CXX-g++} -E"
  cat > conftest.$ac_ext <<EOF
1987
#line 1988 "configure"
T
Tom Lane 已提交
1988 1989
#include "confdefs.h"
#include <stdlib.h>
1990 1991
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
1992
{ (eval echo configure:1993: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
  :
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  CXXCPP=/lib/cpp
fi
rm -f conftest*
  ac_cv_prog_CXXCPP="$CXXCPP"
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross
fi
fi
CXXCPP="$ac_cv_prog_CXXCPP"
echo "$ac_t""$CXXCPP" 1>&6
T
Tom Lane 已提交
2015

2016 2017 2018 2019 2020 2021 2022
  
ac_ext=C
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cxx_cross
T
Tom Lane 已提交
2023

2024 2025
ac_safe=`echo "string" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for string""... $ac_c" 1>&6
2026
echo "configure:2027: checking for string" >&5
2027 2028 2029 2030
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
2031
#line 2032 "configure"
2032 2033
#include "confdefs.h"
#include <string>
T
Tom Lane 已提交
2034
EOF
2035
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
2036
{ (eval echo configure:2037: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
2037 2038
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
T
Tom Lane 已提交
2039
  rm -rf conftest*
2040
  eval "ac_cv_header_$ac_safe=yes"
T
Tom Lane 已提交
2041
else
2042
  echo "$ac_err" >&5
T
Tom Lane 已提交
2043 2044 2045
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_CXX_STRING_HEADER 1
EOF

else
T
Tom Lane 已提交
2057
  echo "$ac_t""no" 1>&6
2058
fi
2059

2060 2061 2062

if test x"$ac_cv_header_string" != xyes ; then
  echo $ac_n "checking for class string in <string.h>""... $ac_c" 1>&6
2063
echo "configure:2064: checking for class string in <string.h>" >&5
2064 2065 2066 2067
if eval "test \"`echo '$''{'pgac_cv_class_string_in_string_h'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
2068
#line 2069 "configure"
2069 2070 2071 2072 2073 2074 2075 2076 2077
#include "confdefs.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main() {
string foo = "test"
; return 0; }
EOF
2078
if { (eval echo configure:2079: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
2079
  rm -rf conftest*
2080
  pgac_cv_class_string_in_string_h=yes
2081 2082 2083 2084
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
2085
  pgac_cv_class_string_in_string_h=no
2086 2087
fi
rm -f conftest*
T
Tom Lane 已提交
2088
fi
2089 2090 2091 2092 2093 2094

echo "$ac_t""$pgac_cv_class_string_in_string_h" 1>&6

  if test x"$pgac_cv_class_string_in_string_h" != xyes ; then
    { echo "configure: error: neither <string> nor <string.h> seem to define the C++ class \`string\'" 1>&2; exit 1; }
  fi
2095
fi
2096 2097 2098 2099 2100 2101
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross
2102

2103 2104
  
echo $ac_n "checking for namespace std in C++""... $ac_c" 1>&6
2105
echo "configure:2106: checking for namespace std in C++" >&5
2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
if eval "test \"`echo '$''{'pgac_cv_cxx_namespace_std'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  

ac_ext=C
# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cxx_cross

cat > conftest.$ac_ext <<EOF
2119
#line 2120 "configure"
2120 2121 2122 2123 2124 2125 2126 2127 2128
#include "confdefs.h"
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_CXX_STRING_HEADER
#include <string>
#endif
using namespace std;

int main() {
T
Tom Lane 已提交
2129

2130 2131
; return 0; }
EOF
2132
if { (eval echo configure:2133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
2133
  rm -rf conftest*
2134
  pgac_cv_cxx_namespace_std=yes
2135 2136 2137 2138
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
2139
  pgac_cv_cxx_namespace_std=no
2140 2141
fi
rm -f conftest*
2142 2143 2144 2145 2146 2147 2148
ac_ext=c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
ac_cpp='$CPP $CPPFLAGS'
ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
cross_compiling=$ac_cv_prog_cc_cross

2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168
fi

echo "$ac_t""$pgac_cv_cxx_namespace_std" 1>&6

if test $pgac_cv_cxx_namespace_std = yes ; then
    cat >> confdefs.h <<\EOF
#define HAVE_NAMESPACE_STD 1
EOF

fi
else
  echo "$ac_t""no" 1>&6
fi
else
  echo "$ac_t""no" 1>&6
fi




2169 2170 2171 2172 2173 2174 2175
CPPFLAGS="$CPPFLAGS $INCLUDES"
LDFLAGS="$LDFLAGS $PGSQL_LDFLAGS"

echo "using CPPFLAGS=$CPPFLAGS"
echo "using LDFLAGS=$LDFLAGS"


2176
# Figure out how to invoke "install" and what install options to use.
2177 2178 2179 2180 2181 2182 2183 2184

# Find a good install program.  We prefer a C program (faster),
# so one script is as good as another.  But avoid the broken or
# incompatible versions:
# SysV /etc/install, /usr/sbin/install
# SunOS /usr/etc/install
# IRIX /sbin/install
# AIX /bin/install
2185
# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
2186 2187 2188 2189
# AFS /usr/afsws/bin/install, which mishandles nonexistent args
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6
2190
echo "configure:2191: checking for a BSD compatible install" >&5
2191 2192
if test -z "$INSTALL"; then
if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
2193 2194
  echo $ac_n "(cached) $ac_c" 1>&6
else
2195
    IFS="${IFS= 	}"; ac_save_IFS="$IFS"; IFS=":"
2196 2197 2198 2199 2200 2201
  for ac_dir in $PATH; do
    # Account for people who put trailing slashes in PATH elements.
    case "$ac_dir/" in
    /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
    *)
      # OSF1 and SCO ODT 3.0 have their own names for install.
2202 2203 2204
      # Don't use installbsd from OSF since it installs stuff as root
      # by default.
      for ac_prog in ginstall scoinst install; do
2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
        if test -f $ac_dir/$ac_prog; then
	  if test $ac_prog = install &&
            grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
	    # AIX install.  It has an incompatible calling convention.
	    :
	  else
	    ac_cv_path_install="$ac_dir/$ac_prog -c"
	    break 2
	  fi
	fi
      done
      ;;
    esac
2218
  done
2219 2220
  IFS="$ac_save_IFS"

2221
fi
2222 2223 2224 2225 2226 2227 2228 2229 2230
  if test "${ac_cv_path_install+set}" = set; then
    INSTALL="$ac_cv_path_install"
  else
    # As a last resort, use the slow shell script.  We don't cache a
    # path for INSTALL within a source directory, because that will
    # break other packages using the cache if that directory is
    # removed, or if the path is relative.
    INSTALL="$ac_install_sh"
  fi
2231
fi
2232
echo "$ac_t""$INSTALL" 1>&6
2233

2234 2235 2236 2237
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
# It thinks the first close brace ends the variable substitution.
test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'

2238 2239
test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'

2240
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2241

2242 2243 2244 2245 2246 2247
# When Autoconf chooses install-sh as install program it tries to generate
# a relative path to it in each makefile where it subsitutes it. This clashes
# with our Makefile.global concept. This workaround helps.
case $INSTALL in
  *install-sh*) INSTALL='\${SHELL} \${top_srcdir}/config/install-sh -c';;
esac
2248

2249 2250
# Fix Autoconf's brain-dead defaults for script installs.
INSTALL_SCRIPT="\${INSTALL} -m 755"
2251

2252 2253 2254 2255 2256
# HPUX wants shared libs to be mode 555. Add your platform's special
# needs here if necessary.
case $host_os in
    hpux*)      INSTL_SHLIB_OPTS="-m 555" ;;
    *)          INSTL_SHLIB_OPTS="-m 644" ;;
2257
esac
2258

2259
INSTALL_SHLIB="\${INSTALL} $INSTL_SHLIB_OPTS"
2260 2261 2262



2263
mkinstalldirs="\$(SHELL) \$(top_srcdir)/config/mkinstalldirs"
2264

2265

2266

2267
for ac_prog in gawk mawk nawk awk
2268 2269 2270 2271
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2272
echo "configure:2273: checking for $ac_word" >&5
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301
if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$AWK"; then
  ac_cv_prog_AWK="$AWK" # Let the user override the test.
else
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_AWK="$ac_prog"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
AWK="$ac_cv_prog_AWK"
if test -n "$AWK"; then
  echo "$ac_t""$AWK" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

test -n "$AWK" && break
done


2302 2303 2304
# Extract the first word of "flex", so it can be a program name with args.
set dummy flex; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2305
echo "configure:2306: checking for $ac_word" >&5
2306 2307 2308 2309 2310 2311
if eval "test \"`echo '$''{'ac_cv_prog_LEX'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$LEX"; then
  ac_cv_prog_LEX="$LEX" # Let the user override the test.
else
2312 2313 2314
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_LEX="flex"
      break
    fi
  done
  IFS="$ac_save_ifs"
  test -z "$ac_cv_prog_LEX" && ac_cv_prog_LEX="lex"
fi
fi
LEX="$ac_cv_prog_LEX"
if test -n "$LEX"; then
  echo "$ac_t""$LEX" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

if test -z "$LEXLIB"
then
  case "$LEX" in
  flex*) ac_lib=fl ;;
  *) ac_lib=l ;;
  esac
2338
  echo $ac_n "checking for yywrap in -l$ac_lib""... $ac_c" 1>&6
2339
echo "configure:2340: checking for yywrap in -l$ac_lib" >&5
2340
ac_lib_var=`echo $ac_lib'_'yywrap | sed 'y%./+-%__p_%'`
2341 2342 2343 2344 2345 2346
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-l$ac_lib  $LIBS"
cat > conftest.$ac_ext <<EOF
2347
#line 2348 "configure"
2348 2349 2350 2351 2352 2353
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char yywrap();

2354
int main() {
2355 2356 2357
yywrap()
; return 0; }
EOF
2358
if { (eval echo configure:2359: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2359 2360 2361
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2362 2363
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  LEXLIB="-l$ac_lib"
else
  echo "$ac_t""no" 1>&6
fi

fi

2380
if test "$LEX" = "flex"; then
B
Bruce Momjian 已提交
2381
        $LEX --version 2> /dev/null | grep -s '2\.5\.3' > /dev/null 2>&1
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393
        if test $? -eq 0 ; then
                echo "configure: warning: 
***
You have flex version 2.5.3, which is broken. Get version 2.5.4 or
a different lex.
(If you are using the official distribution of PostgreSQL then you
do not need to worry about this because the lexer files are
pre-generated. However, other software using flex is likely to be
broken as well.)
***" 1>&2
        fi
fi
2394
echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
2395
echo "configure:2396: checking whether ln -s works" >&5
2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417
if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  rm -f conftestdata
if ln -s X conftestdata 2>/dev/null
then
  rm -f conftestdata
  ac_cv_prog_LN_S="ln -s"
else
  ac_cv_prog_LN_S=ln
fi
fi
LN_S="$ac_cv_prog_LN_S"
if test "$ac_cv_prog_LN_S" = "ln -s"; then
  echo "$ac_t""yes" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

# Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2418
echo "configure:2419: checking for $ac_word" >&5
2419 2420 2421 2422 2423 2424
if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$RANLIB"; then
  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
else
2425 2426 2427
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_RANLIB="ranlib"
      break
    fi
  done
  IFS="$ac_save_ifs"
  test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
fi
fi
RANLIB="$ac_cv_prog_RANLIB"
if test -n "$RANLIB"; then
  echo "$ac_t""$RANLIB" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

# Extract the first word of "tar", so it can be a program name with args.
set dummy tar; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2448
echo "configure:2449: checking for $ac_word" >&5
2449 2450 2451 2452 2453 2454 2455
if eval "test \"`echo '$''{'ac_cv_path_tar'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  case "$tar" in
  /*)
  ac_cv_path_tar="$tar" # Let the user override the test with a path.
  ;;
2456 2457 2458
  ?:/*)			 
  ac_cv_path_tar="$tar" # Let the user override the test with a dos path.
  ;;
2459
  *)
2460 2461 2462
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do 
2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_path_tar="$ac_dir/$ac_word"
      break
    fi
  done
  IFS="$ac_save_ifs"
  ;;
esac
fi
tar="$ac_cv_path_tar"
if test -n "$tar"; then
  echo "$ac_t""$tar" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

2480 2481 2482 2483 2484
for ac_prog in perl
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2485
echo "configure:2486: checking for $ac_word" >&5
2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
if eval "test \"`echo '$''{'ac_cv_prog_PERL'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test -n "$PERL"; then
  ac_cv_prog_PERL="$PERL" # Let the user override the test.
else
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_prog_PERL="$ac_prog"
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
fi
PERL="$ac_cv_prog_PERL"
if test -n "$PERL"; then
  echo "$ac_t""$PERL" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

test -n "$PERL" && break
done

2514 2515 2516 2517
for ac_prog in 'bison -y' byacc
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
2518
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
2519
echo "configure:2520: checking for $ac_word" >&5
2520
if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
2521 2522
  echo $ac_n "(cached) $ac_c" 1>&6
else
2523 2524
  if test -n "$YACC"; then
  ac_cv_prog_YACC="$YACC" # Let the user override the test.
2525
else
2526 2527
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
2528
  for ac_dir in $ac_dummy; do
2529 2530
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
2531
      ac_cv_prog_YACC="$ac_prog"
2532 2533 2534 2535 2536
      break
    fi
  done
  IFS="$ac_save_ifs"
fi
2537 2538 2539 2540
fi
YACC="$ac_cv_prog_YACC"
if test -n "$YACC"; then
  echo "$ac_t""$YACC" 1>&6
2541 2542 2543 2544
else
  echo "$ac_t""no" 1>&6
fi

2545 2546 2547 2548
test -n "$YACC" && break
done
test -n "$YACC" || YACC="yacc"

2549

T
Tom Lane 已提交
2550

2551

2552 2553 2554 2555
##
## Libraries
##

M
Marc G. Fournier 已提交
2556
echo $ac_n "checking for main in -lsfio""... $ac_c" 1>&6
2557
echo "configure:2558: checking for main in -lsfio" >&5
M
Marc G. Fournier 已提交
2558 2559 2560 2561 2562 2563 2564
ac_lib_var=`echo sfio'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lsfio  $LIBS"
cat > conftest.$ac_ext <<EOF
2565
#line 2566 "configure"
M
Marc G. Fournier 已提交
2566 2567 2568 2569 2570 2571
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
2572
if { (eval echo configure:2573: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
Marc G. Fournier 已提交
2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo sfio | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lsfio $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

2599
echo $ac_n "checking for main in -lncurses""... $ac_c" 1>&6
2600
echo "configure:2601: checking for main in -lncurses" >&5
2601 2602 2603 2604 2605 2606 2607
ac_lib_var=`echo ncurses'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lncurses  $LIBS"
cat > conftest.$ac_ext <<EOF
2608
#line 2609 "configure"
2609 2610 2611 2612 2613 2614
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
2615
if { (eval echo configure:2616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo ncurses | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lncurses $LIBS"

else
  echo "$ac_t""no" 1>&6
echo $ac_n "checking for main in -lcurses""... $ac_c" 1>&6
2641
echo "configure:2642: checking for main in -lcurses" >&5
2642
ac_lib_var=`echo curses'_'main | sed 'y%./+-%__p_%'`
2643 2644 2645 2646
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
2647
LIBS="-lcurses  $LIBS"
2648
cat > conftest.$ac_ext <<EOF
2649
#line 2650 "configure"
2650 2651
#include "confdefs.h"

2652
int main() {
2653 2654 2655
main()
; return 0; }
EOF
2656
if { (eval echo configure:2657: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2657 2658 2659
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2660 2661
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2662 2663 2664 2665 2666 2667 2668 2669 2670
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
2671 2672 2673 2674 2675 2676 2677 2678
    ac_tr_lib=HAVE_LIB`echo curses | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lcurses $LIBS"

2679 2680 2681 2682
else
  echo "$ac_t""no" 1>&6
fi

2683 2684
fi

2685
echo $ac_n "checking for main in -ltermcap""... $ac_c" 1>&6
2686
echo "configure:2687: checking for main in -ltermcap" >&5
2687
ac_lib_var=`echo termcap'_'main | sed 'y%./+-%__p_%'`
2688 2689 2690 2691
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
M
Marc G. Fournier 已提交
2692
LIBS="-ltermcap  $LIBS"
2693
cat > conftest.$ac_ext <<EOF
2694
#line 2695 "configure"
2695 2696
#include "confdefs.h"

2697
int main() {
M
Marc G. Fournier 已提交
2698
main()
2699 2700
; return 0; }
EOF
2701
if { (eval echo configure:2702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2702 2703 2704
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2705 2706
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2707 2708 2709 2710 2711 2712 2713 2714 2715
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
2716 2717
    ac_tr_lib=HAVE_LIB`echo termcap | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
M
Marc G. Fournier 已提交
2718 2719
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
2720 2721
EOF

M
Marc G. Fournier 已提交
2722 2723
  LIBS="-ltermcap $LIBS"

2724 2725 2726 2727
else
  echo "$ac_t""no" 1>&6
fi

B
Bruce Momjian 已提交
2728
echo $ac_n "checking for main in -lreadline""... $ac_c" 1>&6
2729
echo "configure:2730: checking for main in -lreadline" >&5
B
Bruce Momjian 已提交
2730
ac_lib_var=`echo readline'_'main | sed 'y%./+-%__p_%'`
2731 2732 2733 2734
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
B
Bruce Momjian 已提交
2735
LIBS="-lreadline  $LIBS"
2736
cat > conftest.$ac_ext <<EOF
2737
#line 2738 "configure"
2738 2739
#include "confdefs.h"

2740
int main() {
2741 2742 2743
main()
; return 0; }
EOF
2744
if { (eval echo configure:2745: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2745 2746 2747
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2748 2749
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2750 2751 2752 2753 2754 2755 2756 2757 2758
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
B
Bruce Momjian 已提交
2759
    ac_tr_lib=HAVE_LIB`echo readline | sed -e 's/[^a-zA-Z0-9_]/_/g' \
2760
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
2761 2762 2763 2764
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

B
Bruce Momjian 已提交
2765
  LIBS="-lreadline $LIBS"
2766 2767 2768 2769 2770

else
  echo "$ac_t""no" 1>&6
fi

B
Bruce Momjian 已提交
2771
echo $ac_n "checking for using_history in -lreadline""... $ac_c" 1>&6
2772
echo "configure:2773: checking for using_history in -lreadline" >&5
B
Bruce Momjian 已提交
2773
ac_lib_var=`echo readline'_'using_history | sed 'y%./+-%__p_%'`
2774 2775 2776 2777
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
M
Marc G. Fournier 已提交
2778
LIBS="-lreadline  $LIBS"
2779
cat > conftest.$ac_ext <<EOF
2780
#line 2781 "configure"
2781
#include "confdefs.h"
B
Bruce Momjian 已提交
2782 2783 2784 2785
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char using_history();
2786

2787
int main() {
B
Bruce Momjian 已提交
2788
using_history()
2789 2790
; return 0; }
EOF
2791
if { (eval echo configure:2792: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2792 2793 2794
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2795 2796
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2797 2798 2799 2800 2801 2802 2803 2804 2805
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
B
Bruce Momjian 已提交
2806 2807
  cat >> confdefs.h <<\EOF
#define HAVE_HISTORY_IN_READLINE 1
2808 2809 2810 2811
EOF

else
  echo "$ac_t""no" 1>&6
B
Bruce Momjian 已提交
2812
echo $ac_n "checking for main in -lhistory""... $ac_c" 1>&6
2813
echo "configure:2814: checking for main in -lhistory" >&5
B
Bruce Momjian 已提交
2814
ac_lib_var=`echo history'_'main | sed 'y%./+-%__p_%'`
2815 2816 2817 2818
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
B
Bruce Momjian 已提交
2819
LIBS="-lhistory  $LIBS"
2820
cat > conftest.$ac_ext <<EOF
2821
#line 2822 "configure"
2822 2823
#include "confdefs.h"

2824
int main() {
B
Bruce Momjian 已提交
2825
main()
2826 2827
; return 0; }
EOF
2828
if { (eval echo configure:2829: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2829 2830 2831
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2832 2833
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2834 2835 2836 2837 2838 2839 2840 2841 2842
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
B
Bruce Momjian 已提交
2843 2844 2845 2846
    ac_tr_lib=HAVE_LIB`echo history | sed -e 's/^a-zA-Z0-9_/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
2847 2848
EOF

B
Bruce Momjian 已提交
2849 2850
  LIBS="-lhistory $LIBS"

2851 2852 2853
else
  echo "$ac_t""no" 1>&6
fi
B
Bruce Momjian 已提交
2854 2855 2856
 
fi

2857

B
Bruce Momjian 已提交
2858
if test "$PORTNAME" != "aix" -a "$PORTNAME" != "alpha"
2859 2860
then
	echo $ac_n "checking for main in -lbsd""... $ac_c" 1>&6
2861
echo "configure:2862: checking for main in -lbsd" >&5
2862
ac_lib_var=`echo bsd'_'main | sed 'y%./+-%__p_%'`
2863 2864 2865 2866
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
2867
LIBS="-lbsd  $LIBS"
2868
cat > conftest.$ac_ext <<EOF
2869
#line 2870 "configure"
2870 2871
#include "confdefs.h"

2872
int main() {
2873 2874 2875
main()
; return 0; }
EOF
2876
if { (eval echo configure:2877: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2877 2878 2879
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2880 2881
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2882 2883 2884 2885 2886 2887 2888 2889 2890
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
2891
    ac_tr_lib=HAVE_LIB`echo bsd | sed -e 's/[^a-zA-Z0-9_]/_/g' \
2892
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
2893 2894 2895 2896
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

2897
  LIBS="-lbsd $LIBS"
2898 2899 2900 2901 2902

else
  echo "$ac_t""no" 1>&6
fi

2903
fi
2904
echo $ac_n "checking for setproctitle in -lutil""... $ac_c" 1>&6
2905
echo "configure:2906: checking for setproctitle in -lutil" >&5
2906
ac_lib_var=`echo util'_'setproctitle | sed 'y%./+-%__p_%'`
M
 
Marc G. Fournier 已提交
2907 2908 2909 2910 2911 2912
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lutil  $LIBS"
cat > conftest.$ac_ext <<EOF
2913
#line 2914 "configure"
M
 
Marc G. Fournier 已提交
2914
#include "confdefs.h"
2915 2916 2917 2918
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char setproctitle();
M
 
Marc G. Fournier 已提交
2919 2920

int main() {
2921
setproctitle()
M
 
Marc G. Fournier 已提交
2922 2923
; return 0; }
EOF
2924
if { (eval echo configure:2925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
 
Marc G. Fournier 已提交
2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo util | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lutil $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

2951
echo $ac_n "checking for main in -lm""... $ac_c" 1>&6
2952
echo "configure:2953: checking for main in -lm" >&5
2953
ac_lib_var=`echo m'_'main | sed 'y%./+-%__p_%'`
2954 2955 2956 2957
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
2958
LIBS="-lm  $LIBS"
2959
cat > conftest.$ac_ext <<EOF
2960
#line 2961 "configure"
2961 2962
#include "confdefs.h"

2963
int main() {
2964 2965 2966
main()
; return 0; }
EOF
2967
if { (eval echo configure:2968: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2968 2969 2970
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
2971 2972
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
2973 2974 2975 2976 2977 2978 2979 2980 2981
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
2982
    ac_tr_lib=HAVE_LIB`echo m | sed -e 's/[^a-zA-Z0-9_]/_/g' \
2983
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
2984 2985 2986 2987
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

2988
  LIBS="-lm $LIBS"
2989 2990 2991 2992 2993

else
  echo "$ac_t""no" 1>&6
fi

2994
echo $ac_n "checking for main in -ldl""... $ac_c" 1>&6
2995
echo "configure:2996: checking for main in -ldl" >&5
2996
ac_lib_var=`echo dl'_'main | sed 'y%./+-%__p_%'`
2997 2998 2999 3000
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3001
LIBS="-ldl  $LIBS"
3002
cat > conftest.$ac_ext <<EOF
3003
#line 3004 "configure"
3004 3005
#include "confdefs.h"

3006
int main() {
3007 3008 3009
main()
; return 0; }
EOF
3010
if { (eval echo configure:3011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3011 3012 3013
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3014 3015
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3016 3017 3018 3019 3020 3021 3022 3023 3024
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3025
    ac_tr_lib=HAVE_LIB`echo dl | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3026
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3027 3028 3029 3030
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3031
  LIBS="-ldl $LIBS"
3032 3033 3034 3035 3036

else
  echo "$ac_t""no" 1>&6
fi

3037
echo $ac_n "checking for main in -lsocket""... $ac_c" 1>&6
3038
echo "configure:3039: checking for main in -lsocket" >&5
3039
ac_lib_var=`echo socket'_'main | sed 'y%./+-%__p_%'`
3040 3041 3042 3043
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3044
LIBS="-lsocket  $LIBS"
3045
cat > conftest.$ac_ext <<EOF
3046
#line 3047 "configure"
3047 3048
#include "confdefs.h"

3049
int main() {
3050 3051 3052
main()
; return 0; }
EOF
3053
if { (eval echo configure:3054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3054 3055 3056
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3057 3058
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3059 3060 3061 3062 3063 3064 3065 3066 3067
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3068
    ac_tr_lib=HAVE_LIB`echo socket | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3069
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3070 3071 3072 3073
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3074
  LIBS="-lsocket $LIBS"
3075 3076 3077 3078 3079

else
  echo "$ac_t""no" 1>&6
fi

3080
echo $ac_n "checking for main in -lnsl""... $ac_c" 1>&6
3081
echo "configure:3082: checking for main in -lnsl" >&5
3082
ac_lib_var=`echo nsl'_'main | sed 'y%./+-%__p_%'`
3083 3084 3085 3086
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3087
LIBS="-lnsl  $LIBS"
3088
cat > conftest.$ac_ext <<EOF
3089
#line 3090 "configure"
3090 3091
#include "confdefs.h"

3092
int main() {
3093 3094 3095
main()
; return 0; }
EOF
3096
if { (eval echo configure:3097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3097 3098 3099
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3100 3101
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3102 3103 3104 3105 3106 3107 3108 3109 3110
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3111
    ac_tr_lib=HAVE_LIB`echo nsl | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3112
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3113 3114 3115 3116
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3117
  LIBS="-lnsl $LIBS"
3118 3119 3120 3121 3122

else
  echo "$ac_t""no" 1>&6
fi

3123
echo $ac_n "checking for main in -lipc""... $ac_c" 1>&6
3124
echo "configure:3125: checking for main in -lipc" >&5
3125
ac_lib_var=`echo ipc'_'main | sed 'y%./+-%__p_%'`
3126 3127 3128 3129
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3130
LIBS="-lipc  $LIBS"
3131
cat > conftest.$ac_ext <<EOF
3132
#line 3133 "configure"
3133 3134
#include "confdefs.h"

3135
int main() {
3136 3137 3138
main()
; return 0; }
EOF
3139
if { (eval echo configure:3140: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3140 3141 3142
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3143 3144
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3145 3146 3147 3148 3149 3150 3151 3152 3153
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3154
    ac_tr_lib=HAVE_LIB`echo ipc | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3155
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3156 3157 3158 3159
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3160
  LIBS="-lipc $LIBS"
3161 3162 3163 3164 3165

else
  echo "$ac_t""no" 1>&6
fi

3166
echo $ac_n "checking for main in -lIPC""... $ac_c" 1>&6
3167
echo "configure:3168: checking for main in -lIPC" >&5
3168
ac_lib_var=`echo IPC'_'main | sed 'y%./+-%__p_%'`
3169 3170 3171 3172
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3173
LIBS="-lIPC  $LIBS"
3174
cat > conftest.$ac_ext <<EOF
3175
#line 3176 "configure"
3176 3177
#include "confdefs.h"

3178
int main() {
3179 3180 3181
main()
; return 0; }
EOF
3182
if { (eval echo configure:3183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3183 3184 3185
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3186 3187
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3188 3189 3190 3191 3192 3193 3194 3195 3196
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3197
    ac_tr_lib=HAVE_LIB`echo IPC | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3198
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3199 3200 3201 3202
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3203
  LIBS="-lIPC $LIBS"
3204 3205 3206 3207 3208

else
  echo "$ac_t""no" 1>&6
fi

3209
echo $ac_n "checking for main in -llc""... $ac_c" 1>&6
3210
echo "configure:3211: checking for main in -llc" >&5
3211
ac_lib_var=`echo lc'_'main | sed 'y%./+-%__p_%'`
3212 3213 3214 3215
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3216
LIBS="-llc  $LIBS"
3217
cat > conftest.$ac_ext <<EOF
3218
#line 3219 "configure"
3219 3220
#include "confdefs.h"

3221
int main() {
3222 3223 3224
main()
; return 0; }
EOF
3225
if { (eval echo configure:3226: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3226 3227 3228
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3229 3230
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3231 3232 3233 3234 3235 3236 3237 3238 3239
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3240
    ac_tr_lib=HAVE_LIB`echo lc | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3241
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3242 3243 3244 3245
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3246
  LIBS="-llc $LIBS"
3247 3248 3249 3250 3251

else
  echo "$ac_t""no" 1>&6
fi

3252
echo $ac_n "checking for main in -ldld""... $ac_c" 1>&6
3253
echo "configure:3254: checking for main in -ldld" >&5
3254
ac_lib_var=`echo dld'_'main | sed 'y%./+-%__p_%'`
3255 3256 3257 3258
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3259
LIBS="-ldld  $LIBS"
3260
cat > conftest.$ac_ext <<EOF
3261
#line 3262 "configure"
3262 3263
#include "confdefs.h"

3264
int main() {
3265 3266 3267
main()
; return 0; }
EOF
3268
if { (eval echo configure:3269: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3269 3270 3271
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3272 3273
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3274 3275 3276 3277 3278 3279 3280 3281 3282
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3283
    ac_tr_lib=HAVE_LIB`echo dld | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3284
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3285 3286 3287 3288
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3289
  LIBS="-ldld $LIBS"
3290 3291 3292 3293 3294

else
  echo "$ac_t""no" 1>&6
fi

3295
echo $ac_n "checking for main in -lln""... $ac_c" 1>&6
3296
echo "configure:3297: checking for main in -lln" >&5
3297
ac_lib_var=`echo ln'_'main | sed 'y%./+-%__p_%'`
3298 3299 3300 3301
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3302
LIBS="-lln  $LIBS"
3303
cat > conftest.$ac_ext <<EOF
3304
#line 3305 "configure"
3305 3306
#include "confdefs.h"

3307
int main() {
3308 3309 3310
main()
; return 0; }
EOF
3311
if { (eval echo configure:3312: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3312 3313 3314
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3315 3316
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3317 3318 3319 3320 3321 3322 3323 3324 3325
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3326
    ac_tr_lib=HAVE_LIB`echo ln | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3327
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3328 3329 3330 3331
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3332
  LIBS="-lln $LIBS"
3333 3334 3335 3336 3337

else
  echo "$ac_t""no" 1>&6
fi

3338
echo $ac_n "checking for main in -lld""... $ac_c" 1>&6
3339
echo "configure:3340: checking for main in -lld" >&5
3340
ac_lib_var=`echo ld'_'main | sed 'y%./+-%__p_%'`
3341 3342 3343 3344 3345 3346
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lld  $LIBS"
cat > conftest.$ac_ext <<EOF
3347
#line 3348 "configure"
3348 3349
#include "confdefs.h"

3350
int main() {
3351 3352 3353
main()
; return 0; }
EOF
3354
if { (eval echo configure:3355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3355 3356 3357
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3358 3359
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3360 3361 3362 3363 3364 3365 3366 3367 3368
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3369 3370
    ac_tr_lib=HAVE_LIB`echo ld | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3371 3372 3373 3374 3375 3376 3377 3378 3379 3380
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lld $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

3381
echo $ac_n "checking for main in -lcompat""... $ac_c" 1>&6
3382
echo "configure:3383: checking for main in -lcompat" >&5
3383 3384 3385 3386 3387 3388 3389
ac_lib_var=`echo compat'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lcompat  $LIBS"
cat > conftest.$ac_ext <<EOF
3390
#line 3391 "configure"
3391 3392 3393 3394 3395 3396
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
3397
if { (eval echo configure:3398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo compat | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lcompat $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

echo $ac_n "checking for main in -lBSD""... $ac_c" 1>&6
3425
echo "configure:3426: checking for main in -lBSD" >&5
3426 3427 3428 3429 3430 3431 3432
ac_lib_var=`echo BSD'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lBSD  $LIBS"
cat > conftest.$ac_ext <<EOF
3433
#line 3434 "configure"
3434 3435 3436 3437 3438 3439
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
3440
if { (eval echo configure:3441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo BSD | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lBSD $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

echo $ac_n "checking for main in -lgen""... $ac_c" 1>&6
3468
echo "configure:3469: checking for main in -lgen" >&5
3469 3470 3471 3472 3473 3474 3475
ac_lib_var=`echo gen'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lgen  $LIBS"
cat > conftest.$ac_ext <<EOF
3476
#line 3477 "configure"
3477 3478 3479 3480 3481 3482
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
3483
if { (eval echo configure:3484: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo gen | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lgen $LIBS"

else
  echo "$ac_t""no" 1>&6
fi

echo $ac_n "checking for main in -lPW""... $ac_c" 1>&6
3511
echo "configure:3512: checking for main in -lPW" >&5
3512 3513 3514 3515 3516 3517 3518
ac_lib_var=`echo PW'_'main | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lPW  $LIBS"
cat > conftest.$ac_ext <<EOF
3519
#line 3520 "configure"
3520 3521 3522 3523 3524 3525
#include "confdefs.h"

int main() {
main()
; return 0; }
EOF
3526
if { (eval echo configure:3527: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo PW | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lPW $LIBS"

else
  echo "$ac_t""no" 1>&6
fi


echo $ac_n "checking for library containing crypt""... $ac_c" 1>&6
3555
echo "configure:3556: checking for library containing crypt" >&5
3556 3557 3558 3559 3560 3561
if eval "test \"`echo '$''{'ac_cv_search_crypt'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_func_search_save_LIBS="$LIBS"
ac_cv_search_crypt="no"
cat > conftest.$ac_ext <<EOF
3562
#line 3563 "configure"
3563 3564 3565 3566 3567 3568 3569 3570 3571 3572
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char crypt();

int main() {
crypt()
; return 0; }
EOF
3573
if { (eval echo configure:3574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3574 3575 3576 3577 3578 3579 3580 3581 3582 3583
  rm -rf conftest*
  ac_cv_search_crypt="none required"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
fi
rm -f conftest*
test "$ac_cv_search_crypt" = "no" && for i in crypt; do
LIBS="-l$i  $ac_func_search_save_LIBS"
cat > conftest.$ac_ext <<EOF
3584
#line 3585 "configure"
3585 3586 3587 3588 3589 3590 3591 3592 3593 3594
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char crypt();

int main() {
crypt()
; return 0; }
EOF
3595
if { (eval echo configure:3596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615
  rm -rf conftest*
  ac_cv_search_crypt="-l$i"
break
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
fi
rm -f conftest*
done
LIBS="$ac_func_search_save_LIBS"
fi

echo "$ac_t""$ac_cv_search_crypt" 1>&6
if test "$ac_cv_search_crypt" != "no"; then
  test "$ac_cv_search_crypt" = "none required" || LIBS="$ac_cv_search_crypt $LIBS"
  
else :
  
fi
echo $ac_n "checking for inflate in -lz""... $ac_c" 1>&6
3616
echo "configure:3617: checking for inflate in -lz" >&5
3617 3618 3619 3620 3621 3622 3623
ac_lib_var=`echo z'_'inflate | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lz  $LIBS"
cat > conftest.$ac_ext <<EOF
3624
#line 3625 "configure"
3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char inflate();

int main() {
inflate()
; return 0; }
EOF
3635
if { (eval echo configure:3636: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo z | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lz $LIBS"

else
  echo "$ac_t""no" 1>&6
fi


if test "$with_krb4" = yes ; then
  echo $ac_n "checking for des_encrypt in -ldes""... $ac_c" 1>&6
3665
echo "configure:3666: checking for des_encrypt in -ldes" >&5
3666 3667 3668 3669 3670 3671 3672
ac_lib_var=`echo des'_'des_encrypt | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-ldes  $LIBS"
cat > conftest.$ac_ext <<EOF
3673
#line 3674 "configure"
3674 3675 3676 3677 3678 3679 3680 3681 3682 3683
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char des_encrypt();

int main() {
des_encrypt()
; return 0; }
EOF
3684
if { (eval echo configure:3685: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo des | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-ldes $LIBS"

else
  echo "$ac_t""no" 1>&6
{ echo "configure: error: library \`des' is required for Kerberos 4" 1>&2; exit 1; }
fi

  echo $ac_n "checking for krb_sendauth in -lkrb""... $ac_c" 1>&6
3713
echo "configure:3714: checking for krb_sendauth in -lkrb" >&5
3714 3715 3716 3717 3718 3719 3720
ac_lib_var=`echo krb'_'krb_sendauth | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lkrb  $LIBS"
cat > conftest.$ac_ext <<EOF
3721
#line 3722 "configure"
3722 3723 3724 3725 3726 3727 3728 3729 3730 3731
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char krb_sendauth();

int main() {
krb_sendauth()
; return 0; }
EOF
3732
if { (eval echo configure:3733: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo krb | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

  LIBS="-lkrb $LIBS"

else
  echo "$ac_t""no" 1>&6
{ echo "configure: error: library \`krb' is required for Kerberos 4" 1>&2; exit 1; }
fi

fi

if test "$with_krb5" = yes ; then
  echo $ac_n "checking for main in -lcom_err""... $ac_c" 1>&6
3764
echo "configure:3765: checking for main in -lcom_err" >&5
3765
ac_lib_var=`echo com_err'_'main | sed 'y%./+-%__p_%'`
3766 3767 3768 3769
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3770
LIBS="-lcom_err  $LIBS"
3771
cat > conftest.$ac_ext <<EOF
3772
#line 3773 "configure"
3773 3774
#include "confdefs.h"

3775
int main() {
3776 3777 3778
main()
; return 0; }
EOF
3779
if { (eval echo configure:3780: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3780 3781 3782
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3783 3784
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3785 3786 3787 3788 3789 3790 3791 3792 3793
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3794
    ac_tr_lib=HAVE_LIB`echo com_err | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3795
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3796 3797 3798 3799
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3800
  LIBS="-lcom_err $LIBS"
3801 3802 3803

else
  echo "$ac_t""no" 1>&6
3804
{ echo "configure: error: library \`com_err' is required for Kerberos 5" 1>&2; exit 1; }
3805 3806
fi

3807
  echo $ac_n "checking for main in -lcrypto""... $ac_c" 1>&6
3808
echo "configure:3809: checking for main in -lcrypto" >&5
3809
ac_lib_var=`echo crypto'_'main | sed 'y%./+-%__p_%'`
3810 3811 3812 3813
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3814
LIBS="-lcrypto  $LIBS"
3815
cat > conftest.$ac_ext <<EOF
3816
#line 3817 "configure"
3817 3818
#include "confdefs.h"

3819
int main() {
3820 3821 3822
main()
; return 0; }
EOF
3823
if { (eval echo configure:3824: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3824 3825 3826
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3827 3828
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3829 3830 3831 3832 3833 3834 3835 3836 3837
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3838
    ac_tr_lib=HAVE_LIB`echo crypto | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3839
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
3840 3841 3842 3843
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3844
  LIBS="-lcrypto $LIBS"
3845 3846 3847

else
  echo "$ac_t""no" 1>&6
3848
{ echo "configure: error: library \`crypto' is required for Kerberos 5" 1>&2; exit 1; }
3849 3850
fi

3851
  echo $ac_n "checking for main in -lkrb5""... $ac_c" 1>&6
3852
echo "configure:3853: checking for main in -lkrb5" >&5
3853
ac_lib_var=`echo krb5'_'main | sed 'y%./+-%__p_%'`
M
Marc G. Fournier 已提交
3854 3855 3856 3857
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3858
LIBS="-lkrb5  $LIBS"
M
Marc G. Fournier 已提交
3859
cat > conftest.$ac_ext <<EOF
3860
#line 3861 "configure"
M
Marc G. Fournier 已提交
3861 3862
#include "confdefs.h"

3863
int main() {
M
Marc G. Fournier 已提交
3864 3865 3866
main()
; return 0; }
EOF
3867
if { (eval echo configure:3868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
Marc G. Fournier 已提交
3868 3869 3870
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
3871 3872
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
M
Marc G. Fournier 已提交
3873 3874 3875 3876 3877 3878 3879 3880 3881
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3882
    ac_tr_lib=HAVE_LIB`echo krb5 | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3883
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
M
Marc G. Fournier 已提交
3884 3885 3886 3887
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3888
  LIBS="-lkrb5 $LIBS"
M
Marc G. Fournier 已提交
3889 3890 3891

else
  echo "$ac_t""no" 1>&6
3892
{ echo "configure: error: library \`krb5' is required for Kerberos 5" 1>&2; exit 1; }
M
Marc G. Fournier 已提交
3893 3894
fi

3895 3896 3897 3898
fi

if test "$with_openssl" = yes ; then
    echo $ac_n "checking for CRYPTO_new_ex_data in -lcrypto""... $ac_c" 1>&6
3899
echo "configure:3900: checking for CRYPTO_new_ex_data in -lcrypto" >&5
3900
ac_lib_var=`echo crypto'_'CRYPTO_new_ex_data | sed 'y%./+-%__p_%'`
3901 3902 3903 3904
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
3905
LIBS="-lcrypto  $LIBS"
3906
cat > conftest.$ac_ext <<EOF
3907
#line 3908 "configure"
3908
#include "confdefs.h"
3909 3910 3911 3912
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char CRYPTO_new_ex_data();
3913 3914

int main() {
3915
CRYPTO_new_ex_data()
3916 3917
; return 0; }
EOF
3918
if { (eval echo configure:3919: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
3933
    ac_tr_lib=HAVE_LIB`echo crypto | sed -e 's/[^a-zA-Z0-9_]/_/g' \
3934 3935 3936 3937 3938
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
EOF

3939
  LIBS="-lcrypto $LIBS"
3940 3941 3942

else
  echo "$ac_t""no" 1>&6
3943
{ echo "configure: error: library \`ssl' is required for OpenSSL" 1>&2; exit 1; }
3944 3945
fi

3946
  echo $ac_n "checking for SSL_library_init in -lssl""... $ac_c" 1>&6
3947
echo "configure:3948: checking for SSL_library_init in -lssl" >&5
3948 3949
ac_lib_var=`echo ssl'_'SSL_library_init | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
3950 3951
  echo $ac_n "(cached) $ac_c" 1>&6
else
3952 3953
  ac_save_LIBS="$LIBS"
LIBS="-lssl  $LIBS"
3954
cat > conftest.$ac_ext <<EOF
3955
#line 3956 "configure"
3956
#include "confdefs.h"
3957 3958 3959
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
3960
char SSL_library_init();
3961 3962

int main() {
3963
SSL_library_init()
3964 3965
; return 0; }
EOF
3966
if { (eval echo configure:3967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
3967
  rm -rf conftest*
3968
  eval "ac_cv_lib_$ac_lib_var=yes"
3969 3970 3971
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
3972 3973
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
3974 3975
fi
rm -f conftest*
3976
LIBS="$ac_save_LIBS"
3977

3978 3979 3980 3981 3982 3983 3984
fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_lib=HAVE_LIB`echo ssl | sed -e 's/[^a-zA-Z0-9_]/_/g' \
    -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
  cat >> confdefs.h <<EOF
#define $ac_tr_lib 1
3985
EOF
3986 3987 3988

  LIBS="-lssl $LIBS"

3989
else
3990 3991
  echo "$ac_t""no" 1>&6
{ echo "configure: error: library \`ssl' is required for OpenSSL" 1>&2; exit 1; }
3992 3993
fi

3994
fi
M
Marc G. Fournier 已提交
3995

3996

3997 3998 3999 4000
##
## Header files
##
for ac_hdr in crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h pwd.h sys/pstat.h sys/select.h sys/socket.h sys/types.h termios.h values.h
4001
do
4002
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
4003
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
4004
echo "configure:4005: checking for $ac_hdr" >&5
4005 4006 4007 4008
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4009
#line 4010 "configure"
4010 4011 4012 4013
#include "confdefs.h"
#include <$ac_hdr>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4014
{ (eval echo configure:4015: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4015
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  cat >> confdefs.h <<EOF
#define $ac_tr_hdr 1
EOF
 
else
  echo "$ac_t""no" 1>&6
fi
done

4040 4041

for ac_hdr in readline/readline.h readline.h
4042 4043 4044
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
4045
echo "configure:4046: checking for $ac_hdr" >&5
4046 4047 4048 4049
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4050
#line 4051 "configure"
4051 4052 4053 4054
#include "confdefs.h"
#include <$ac_hdr>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4055
{ (eval echo configure:4056: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4056
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4057 4058 4059 4060 4061
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
4062 4063
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4064 4065 4066 4067 4068 4069 4070
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4071
    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
4072 4073 4074
  cat >> confdefs.h <<EOF
#define $ac_tr_hdr 1
EOF
4075
 break
4076 4077 4078 4079 4080
else
  echo "$ac_t""no" 1>&6
fi
done

4081
for ac_hdr in readline/history.h history.h
4082
do
4083
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
4084
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
4085
echo "configure:4086: checking for $ac_hdr" >&5
4086 4087 4088 4089
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4090
#line 4091 "configure"
4091 4092 4093 4094
#include "confdefs.h"
#include <$ac_hdr>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4095
{ (eval echo configure:4096: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4096
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4097 4098 4099 4100 4101
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
4102 4103
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4104 4105 4106 4107 4108 4109 4110
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4111
    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
4112 4113 4114
  cat >> confdefs.h <<EOF
#define $ac_tr_hdr 1
EOF
4115
 break
4116 4117 4118 4119 4120
else
  echo "$ac_t""no" 1>&6
fi
done

4121 4122 4123 4124

if test "$with_krb4" = yes ; then
  ac_safe=`echo "krb.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for krb.h""... $ac_c" 1>&6
4125
echo "configure:4126: checking for krb.h" >&5
4126 4127 4128 4129
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4130
#line 4131 "configure"
4131
#include "confdefs.h"
4132
#include <krb.h>
4133 4134
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4135
{ (eval echo configure:4136: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4136
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4151
  :
4152 4153
else
  echo "$ac_t""no" 1>&6
4154
{ echo "configure: error: header file <krb.h> is required for Kerberos 4" 1>&2; exit 1; }
4155 4156
fi

4157 4158 4159 4160 4161
fi

if test "$with_krb5" = yes ; then
  ac_safe=`echo "krb5.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for krb5.h""... $ac_c" 1>&6
4162
echo "configure:4163: checking for krb5.h" >&5
4163 4164 4165 4166
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4167
#line 4168 "configure"
4168
#include "confdefs.h"
4169
#include <krb5.h>
4170 4171
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4172
{ (eval echo configure:4173: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4173
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4188
  :
4189 4190
else
  echo "$ac_t""no" 1>&6
4191
{ echo "configure: error: header file <krb5.h> is required for Kerberos 5" 1>&2; exit 1; }
4192 4193
fi

4194 4195
  ac_safe=`echo "com_err.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for com_err.h""... $ac_c" 1>&6
4196
echo "configure:4197: checking for com_err.h" >&5
4197 4198 4199 4200
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4201
#line 4202 "configure"
4202
#include "confdefs.h"
4203
#include <com_err.h>
4204 4205
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4206
{ (eval echo configure:4207: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
4207
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4222
  :
4223 4224
else
  echo "$ac_t""no" 1>&6
4225
{ echo "configure: error: header file <com_err.h> is required for Kerberos 5" 1>&2; exit 1; }
4226 4227
fi

4228 4229 4230 4231 4232
fi

if test "$with_openssl" = yes ; then
  ac_safe=`echo "openssl/ssl.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for openssl/ssl.h""... $ac_c" 1>&6
4233
echo "configure:4234: checking for openssl/ssl.h" >&5
B
Bruce Momjian 已提交
4234 4235 4236 4237
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4238
#line 4239 "configure"
B
Bruce Momjian 已提交
4239
#include "confdefs.h"
4240
#include <openssl/ssl.h>
B
Bruce Momjian 已提交
4241 4242
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4243
{ (eval echo configure:4244: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
B
Bruce Momjian 已提交
4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4259
  :
B
Bruce Momjian 已提交
4260 4261
else
  echo "$ac_t""no" 1>&6
4262
{ echo "configure: error: header file <openssl/ssl.h> is required for OpenSSL" 1>&2; exit 1; }
B
Bruce Momjian 已提交
4263 4264
fi

4265 4266
  ac_safe=`echo "openssl/err.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for openssl/err.h""... $ac_c" 1>&6
4267
echo "configure:4268: checking for openssl/err.h" >&5
B
Bruce Momjian 已提交
4268 4269 4270 4271
if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4272
#line 4273 "configure"
B
Bruce Momjian 已提交
4273
#include "confdefs.h"
4274
#include <openssl/err.h>
B
Bruce Momjian 已提交
4275 4276
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
4277
{ (eval echo configure:4278: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
B
Bruce Momjian 已提交
4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
if test -z "$ac_err"; then
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=yes"
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_header_$ac_safe=no"
fi
rm -f conftest*
fi
if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
  echo "$ac_t""yes" 1>&6
4293
  :
B
Bruce Momjian 已提交
4294 4295
else
  echo "$ac_t""no" 1>&6
4296
{ echo "configure: error: header file <openssl/err.h> is required for OpenSSL" 1>&2; exit 1; }
B
Bruce Momjian 已提交
4297 4298
fi

4299 4300 4301 4302 4303 4304 4305
fi


##
## Types, structures, compiler characteristics
##
echo $ac_n "checking for working const""... $ac_c" 1>&6
4306
echo "configure:4307: checking for working const" >&5
4307
if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
B
Bruce Momjian 已提交
4308 4309 4310
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4311
#line 4312 "configure"
B
Bruce Momjian 已提交
4312
#include "confdefs.h"
4313

4314
int main() {
4315

4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335
/* Ultrix mips cc rejects this.  */
typedef int charset[2]; const charset x;
/* SunOS 4.1.1 cc rejects this.  */
char const *const *ccp;
char **p;
/* NEC SVR4.0.2 mips cc rejects this.  */
struct point {int x, y;};
static struct point const zero = {0,0};
/* AIX XL C 1.02.0.0 rejects this.
   It does not let you subtract one const X* pointer from another in an arm
   of an if-expression whose if-part is not a constant expression */
const char *g = "string";
ccp = &g + (g ? g-g : 0);
/* HPUX 7.0 cc rejects these. */
++ccp;
p = (char**) ccp;
ccp = (char const *const *) p;
{ /* SCO 3.2v4 cc rejects this.  */
  char *t;
  char const *s = 0 ? (char *) 0 : (char const *) 0;
4336

4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356
  *t++ = 0;
}
{ /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
  int x[] = {25, 17};
  const int *foo = &x[0];
  ++foo;
}
{ /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */
  typedef const int *iptr;
  iptr p = 0;
  ++p;
}
{ /* AIX XL C 1.02.0.0 rejects this saying
     "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  struct s { int j; const int *ap[3]; };
  struct s *b; b->j = 5;
}
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  const int foo = 10;
}
4357 4358 4359

; return 0; }
EOF
4360
if { (eval echo configure:4361: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4361
  rm -rf conftest*
4362
  ac_cv_c_const=yes
4363
else
4364 4365
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4366
  rm -rf conftest*
4367
  ac_cv_c_const=no
4368 4369 4370 4371
fi
rm -f conftest*
fi

4372 4373
echo "$ac_t""$ac_cv_c_const" 1>&6
if test $ac_cv_c_const = no; then
4374
  cat >> confdefs.h <<\EOF
4375
#define const 
4376 4377 4378 4379
EOF

fi

4380
echo $ac_n "checking for inline""... $ac_c" 1>&6
4381
echo "configure:4382: checking for inline" >&5
4382
if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then
4383 4384
  echo $ac_n "(cached) $ac_c" 1>&6
else
4385 4386
  ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
4387
  cat > conftest.$ac_ext <<EOF
4388
#line 4389 "configure"
4389 4390 4391
#include "confdefs.h"

int main() {
4392
} $ac_kw foo() {
4393 4394
; return 0; }
EOF
4395
if { (eval echo configure:4396: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4396
  rm -rf conftest*
4397
  ac_cv_c_inline=$ac_kw; break
4398 4399 4400 4401 4402
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
fi
rm -f conftest*
4403
done
4404 4405 4406

fi

4407 4408 4409 4410 4411
echo "$ac_t""$ac_cv_c_inline" 1>&6
case "$ac_cv_c_inline" in
  inline | yes) ;;
  no) cat >> confdefs.h <<\EOF
#define inline 
4412
EOF
4413 4414 4415
 ;;
  *)  cat >> confdefs.h <<EOF
#define inline $ac_cv_c_inline
4416
EOF
4417 4418
 ;;
esac
4419

4420

4421

4422
echo $ac_n "checking for preprocessor stringizing operator""... $ac_c" 1>&6
4423
echo "configure:4424: checking for preprocessor stringizing operator" >&5
4424
if eval "test \"`echo '$''{'ac_cv_c_stringize'+set}'`\" = set"; then
4425 4426
  echo $ac_n "(cached) $ac_c" 1>&6
else
4427
  cat > conftest.$ac_ext <<EOF
4428
#line 4429 "configure"
4429
#include "confdefs.h"
4430

4431 4432 4433
#define x(y) #y

char *s = x(teststring);
4434 4435

EOF
4436 4437 4438 4439 4440 4441 4442 4443 4444
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "#teststring" >/dev/null 2>&1; then
  rm -rf conftest*
  ac_cv_c_stringize=no
else
  rm -rf conftest*
  ac_cv_c_stringize=yes
fi
rm -f conftest*
4445

4446
fi
4447

4448 4449 4450 4451 4452
if test "${ac_cv_c_stringize}" = yes
then
        cat >> confdefs.h <<\EOF
#define HAVE_STRINGIZE 1
EOF
4453

4454 4455
fi
echo "$ac_t""${ac_cv_c_stringize}" 1>&6
M
 
Marc G. Fournier 已提交
4456

4457
echo $ac_n "checking for signed types""... $ac_c" 1>&6
4458
echo "configure:4459: checking for signed types" >&5
4459
if eval "test \"`echo '$''{'pgac_cv_c_signed'+set}'`\" = set"; then
4460 4461 4462
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4463
#line 4464 "configure"
M
 
Marc G. Fournier 已提交
4464
#include "confdefs.h"
4465

4466
int main() {
4467
signed char c; signed short s; signed int i;
4468 4469
; return 0; }
EOF
4470
if { (eval echo configure:4471: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4471
  rm -rf conftest*
4472
  pgac_cv_c_signed=yes
4473
else
4474 4475
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4476
  rm -rf conftest*
4477
  pgac_cv_c_signed=no
4478 4479
fi
rm -f conftest*
4480
fi
4481

4482 4483
echo "$ac_t""$pgac_cv_c_signed" 1>&6
if test x"$pgac_cv_c_signed" = xno ; then
4484
  cat >> confdefs.h <<\EOF
4485
#define signed 
4486 4487 4488
EOF

fi
4489
echo $ac_n "checking for volatile""... $ac_c" 1>&6
4490
echo "configure:4491: checking for volatile" >&5
4491
if eval "test \"`echo '$''{'pgac_cv_c_volatile'+set}'`\" = set"; then
4492 4493 4494
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4495
#line 4496 "configure"
4496
#include "confdefs.h"
4497

4498
int main() {
4499
extern volatile int i;
4500 4501
; return 0; }
EOF
4502
if { (eval echo configure:4503: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4503
  rm -rf conftest*
4504
  pgac_cv_c_volatile=yes
4505 4506 4507 4508
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
4509
  pgac_cv_c_volatile=no
4510 4511
fi
rm -f conftest*
4512
fi
4513

4514 4515
echo "$ac_t""$pgac_cv_c_volatile" 1>&6
if test x"$pgac_cv_c_volatile" = xno ; then
4516
  cat >> confdefs.h <<\EOF
4517
#define volatile 
4518 4519 4520
EOF

fi
4521
echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
4522
echo "configure:4523: checking whether struct tm is in sys/time.h or time.h" >&5
4523
if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
4524 4525 4526
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4527
#line 4528 "configure"
4528
#include "confdefs.h"
4529
#include <sys/types.h>
4530
#include <time.h>
4531
int main() {
4532
struct tm *tp; tp->tm_sec;
4533 4534
; return 0; }
EOF
4535
if { (eval echo configure:4536: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4536
  rm -rf conftest*
4537
  ac_cv_struct_tm=time.h
4538 4539 4540 4541
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
4542
  ac_cv_struct_tm=sys/time.h
4543 4544
fi
rm -f conftest*
4545 4546
fi

4547 4548
echo "$ac_t""$ac_cv_struct_tm" 1>&6
if test $ac_cv_struct_tm = sys/time.h; then
4549
  cat >> confdefs.h <<\EOF
4550
#define TM_IN_SYS_TIME 1
4551 4552 4553 4554
EOF

fi

4555
echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6
4556
echo "configure:4557: checking for tm_zone in struct tm" >&5
4557 4558 4559 4560
if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4561
#line 4562 "configure"
4562
#include "confdefs.h"
4563 4564
#include <sys/types.h>
#include <$ac_cv_struct_tm>
4565
int main() {
4566
struct tm tm; tm.tm_zone;
4567 4568
; return 0; }
EOF
4569
if { (eval echo configure:4570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4570
  rm -rf conftest*
4571
  ac_cv_struct_tm_zone=yes
4572 4573 4574 4575
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
4576
  ac_cv_struct_tm_zone=no
4577 4578
fi
rm -f conftest*
4579
fi
4580

4581 4582 4583 4584 4585 4586
echo "$ac_t""$ac_cv_struct_tm_zone" 1>&6
if test "$ac_cv_struct_tm_zone" = yes; then
  cat >> confdefs.h <<\EOF
#define HAVE_TM_ZONE 1
EOF

4587
else
4588
  echo $ac_n "checking for tzname""... $ac_c" 1>&6
4589
echo "configure:4590: checking for tzname" >&5
4590 4591
if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
4592
else
4593
  cat > conftest.$ac_ext <<EOF
4594
#line 4595 "configure"
4595
#include "confdefs.h"
4596 4597 4598 4599 4600 4601 4602
#include <time.h>
#ifndef tzname /* For SGI.  */
extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
#endif
int main() {
atoi(*tzname);
; return 0; }
4603
EOF
4604
if { (eval echo configure:4605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4605 4606
  rm -rf conftest*
  ac_cv_var_tzname=yes
4607
else
4608 4609
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4610 4611
  rm -rf conftest*
  ac_cv_var_tzname=no
4612
fi
4613
rm -f conftest*
4614 4615
fi

4616 4617 4618 4619 4620
echo "$ac_t""$ac_cv_var_tzname" 1>&6
  if test $ac_cv_var_tzname = yes; then
    cat >> confdefs.h <<\EOF
#define HAVE_TZNAME 1
EOF
4621

4622 4623
  fi
fi
4624

4625
echo $ac_n "checking for union semun""... $ac_c" 1>&6
4626
echo "configure:4627: checking for union semun" >&5
4627
if eval "test \"`echo '$''{'pgac_cv_union_semun'+set}'`\" = set"; then
4628 4629 4630
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4631
#line 4632 "configure"
4632 4633
#include "confdefs.h"
#include <sys/types.h>
4634 4635
#include <sys/ipc.h>
#include <sys/sem.h>
4636
int main() {
4637
union semun semun;
4638 4639
; return 0; }
EOF
4640
if { (eval echo configure:4641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4641
  rm -rf conftest*
4642
  pgac_cv_union_semun=yes
4643
else
4644 4645
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4646
  rm -rf conftest*
4647
  pgac_cv_union_semun=no
4648 4649 4650 4651
fi
rm -f conftest*
fi

4652 4653 4654 4655
echo "$ac_t""$pgac_cv_union_semun" 1>&6
if test x"$pgac_cv_union_semun" = xyes ; then
  cat >> confdefs.h <<\EOF
#define HAVE_UNION_SEMUN 
4656 4657
EOF

4658 4659
fi

4660

4661 4662 4663 4664
##
## Functions, global variables
##
echo $ac_n "checking for int timezone""... $ac_c" 1>&6
4665
echo "configure:4666: checking for int timezone" >&5
4666
if eval "test \"`echo '$''{'pgac_cv_var_int_timezone'+set}'`\" = set"; then
4667 4668 4669
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4670
#line 4671 "configure"
4671
#include "confdefs.h"
4672
#include <time.h>
4673
int main() {
4674
int res = timezone / 60;
4675 4676
; return 0; }
EOF
4677
if { (eval echo configure:4678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4678
  rm -rf conftest*
4679
  pgac_cv_var_int_timezone=yes
4680
else
4681 4682
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4683
  rm -rf conftest*
4684
  pgac_cv_var_int_timezone=no
4685 4686
fi
rm -f conftest*
M
Marc G. Fournier 已提交
4687
fi
4688

4689 4690
echo "$ac_t""$pgac_cv_var_int_timezone" 1>&6
if test x"$pgac_cv_var_int_timezone" = xyes ; then
4691
  cat >> confdefs.h <<\EOF
4692
#define HAVE_INT_TIMEZONE 
4693 4694 4695
EOF

fi
4696
echo $ac_n "checking types of arguments for accept()""... $ac_c" 1>&6
4697
echo "configure:4698: checking types of arguments for accept()" >&5
4698
 if eval "test \"`echo '$''{'ac_cv_func_accept_arg1'+set}'`\" = set"; then
4699 4700
  echo $ac_n "(cached) $ac_c" 1>&6
else
4701 4702 4703 4704 4705 4706 4707 4708 4709 4710
   if eval "test \"`echo '$''{'ac_cv_func_accept_arg2'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
    if eval "test \"`echo '$''{'ac_cv_func_accept_arg3'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
     for ac_cv_func_accept_arg1 in 'int' 'unsigned int'; do
     for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'void *'; do
      for ac_cv_func_accept_arg3 in 'socklen_t' 'size_t' 'unsigned int' 'int'; do
       cat > conftest.$ac_ext <<EOF
4711
#line 4712 "configure"
4712
#include "confdefs.h"
4713 4714 4715 4716 4717
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
4718
#endif
4719 4720
extern accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);
int main() {
4721 4722 4723

; return 0; }
EOF
4724
if { (eval echo configure:4725: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4725
  rm -rf conftest*
4726
          ac_not_found=no ; break 3
4727
else
4728 4729
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4730
  rm -rf conftest*
4731
  ac_not_found=yes
4732 4733
fi
rm -f conftest*
4734 4735 4736 4737 4738 4739 4740 4741
      done
     done
    done
   
fi
  
fi
 
M
Marc G. Fournier 已提交
4742
fi
4743 4744 4745 4746 4747 4748 4749 4750 4751
 if test "$ac_not_found" = yes; then
  ac_cv_func_accept_arg1=int
  ac_cv_func_accept_arg2='struct sockaddr *'
  ac_cv_func_accept_arg3='socklen_t'
 fi
 echo "$ac_t""$ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *" 1>&6
 cat >> confdefs.h <<EOF
#define ACCEPT_TYPE_ARG1 $ac_cv_func_accept_arg1
EOF
4752

4753 4754
 cat >> confdefs.h <<EOF
#define ACCEPT_TYPE_ARG2 $ac_cv_func_accept_arg2
4755 4756
EOF

4757 4758 4759
 cat >> confdefs.h <<EOF
#define ACCEPT_TYPE_ARG3 $ac_cv_func_accept_arg3
EOF
4760 4761


4762
echo $ac_n "checking whether gettimeofday takes only one argument""... $ac_c" 1>&6
4763
echo "configure:4764: checking whether gettimeofday takes only one argument" >&5
4764
if eval "test \"`echo '$''{'pgac_cv_func_gettimeofday_1arg'+set}'`\" = set"; then
4765 4766 4767
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4768
#line 4769 "configure"
4769
#include "confdefs.h"
4770
#include <sys/time.h>
4771
int main() {
4772 4773 4774
struct timeval *tp;
struct timezone *tzp;
gettimeofday(tp,tzp);
4775 4776
; return 0; }
EOF
4777
if { (eval echo configure:4778: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
4778
  rm -rf conftest*
4779
  pgac_cv_func_gettimeofday_1arg=no
4780
else
4781 4782
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
4783
  rm -rf conftest*
4784
  pgac_cv_func_gettimeofday_1arg=yes
4785 4786
fi
rm -f conftest*
M
Marc G. Fournier 已提交
4787
fi
4788

4789 4790 4791 4792
echo "$ac_t""$pgac_cv_func_gettimeofday_1arg" 1>&6
if test x"$pgac_cv_func_gettimeofday_1arg" = xyes ; then
  cat >> confdefs.h <<\EOF
#define GETTIMEOFDAY_1ARG 
4793
EOF
4794

4795 4796
fi

4797
echo $ac_n "checking for fcntl(F_SETLK)""... $ac_c" 1>&6
4798 4799 4800 4801
echo "configure:4799: checking for fcntl(F_SETLK)" >&5
case $host_os in
  linux*)       echo "$ac_t""broken on Linux" 1>&6 ;;
  *)
4802
cat > conftest.$ac_ext <<EOF
4803
#line 4804 "configure"
4804
#include "confdefs.h"
4805 4806
#include <stdio.h>
#include <fcntl.h>
4807

4808
int main() {
4809
struct flock lck;
4810 4811 4812
lck.l_whence = SEEK_SET; lck.l_start = lck.l_len = 0;
lck.l_type = F_WRLCK;
fcntl(0, F_SETLK, &lck);
4813 4814
; return 0; }
EOF
4815
if { (eval echo configure:4816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
B
Bruce Momjian 已提交
4816
  rm -rf conftest*
4817 4818 4819 4820
  cat >> confdefs.h <<\EOF
#define HAVE_FCNTL_SETLK 1
EOF
 echo "$ac_t""yes" 1>&6
B
Bruce Momjian 已提交
4821 4822 4823 4824
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
4825
  echo "$ac_t""no" 1>&6
B
Bruce Momjian 已提交
4826 4827
fi
rm -f conftest*
4828 4829
        ;;
esac
B
Bruce Momjian 已提交
4830

4831
for ac_func in fcvt getopt_long memmove pstat setproctitle setsid sigprocmask sysconf waitpid
M
 
Marc G. Fournier 已提交
4832 4833
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
4834
echo "configure:4835: checking for $ac_func" >&5
M
 
Marc G. Fournier 已提交
4835 4836 4837 4838
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4839
#line 4840 "configure"
M
 
Marc G. Fournier 已提交
4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char $ac_func(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char $ac_func();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
$ac_func();
#endif

; return 0; }
EOF
4862
if { (eval echo configure:4863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
 
Marc G. Fournier 已提交
4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  cat >> confdefs.h <<EOF
#define $ac_tr_func 1
EOF
 
else
  echo "$ac_t""no" 1>&6
fi
done

4886 4887

echo $ac_n "checking for PS_STRINGS""... $ac_c" 1>&6
4888
echo "configure:4889: checking for PS_STRINGS" >&5
4889 4890 4891 4892
if eval "test \"`echo '$''{'pgac_cv_var_PS_STRINGS'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4893
#line 4894 "configure"
4894
#include "confdefs.h"
4895 4896 4897
#include <machine/vmparam.h>
#include <sys/exec.h>

4898 4899 4900 4901 4902
int main() {
PS_STRINGS->ps_nargvstr = 1;
PS_STRINGS->ps_argvstr = "foo";
; return 0; }
EOF
4903
if { (eval echo configure:4904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
4904
  rm -rf conftest*
4905
  pgac_cv_var_PS_STRINGS=yes
4906 4907 4908 4909
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
4910
  pgac_cv_var_PS_STRINGS=no
M
 
Marc G. Fournier 已提交
4911
fi
4912
rm -f conftest*
4913 4914 4915 4916 4917 4918 4919 4920 4921
fi

echo "$ac_t""$pgac_cv_var_PS_STRINGS" 1>&6
if test "$pgac_cv_var_PS_STRINGS" = yes ; then
  cat >> confdefs.h <<\EOF
#define HAVE_PS_STRINGS 
EOF

fi
M
 
Marc G. Fournier 已提交
4922

4923
SNPRINTF=''
M
 
Marc G. Fournier 已提交
4924
echo $ac_n "checking for snprintf""... $ac_c" 1>&6
4925
echo "configure:4926: checking for snprintf" >&5
M
 
Marc G. Fournier 已提交
4926 4927 4928 4929
if eval "test \"`echo '$''{'ac_cv_func_snprintf'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4930
#line 4931 "configure"
M
 
Marc G. Fournier 已提交
4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char snprintf(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char snprintf();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_snprintf) || defined (__stub___snprintf)
choke me
#else
snprintf();
#endif

; return 0; }
EOF
4953
if { (eval echo configure:4954: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
 
Marc G. Fournier 已提交
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972
  rm -rf conftest*
  eval "ac_cv_func_snprintf=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_snprintf=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'snprintf`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_SNPRINTF 1
EOF

else
  echo "$ac_t""no" 1>&6
M
 
Marc G. Fournier 已提交
4973
SNPRINTF='snprintf.o'
M
 
Marc G. Fournier 已提交
4974 4975
fi

4976
echo $ac_n "checking for vsnprintf""... $ac_c" 1>&6
4977
echo "configure:4978: checking for vsnprintf" >&5
4978 4979 4980 4981
if eval "test \"`echo '$''{'ac_cv_func_vsnprintf'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
4982
#line 4983 "configure"
4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char vsnprintf(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char vsnprintf();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_vsnprintf) || defined (__stub___vsnprintf)
choke me
#else
vsnprintf();
#endif

; return 0; }
EOF
5005
if { (eval echo configure:5006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027
  rm -rf conftest*
  eval "ac_cv_func_vsnprintf=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_vsnprintf=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'vsnprintf`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_VSNPRINTF 1
EOF

else
  echo "$ac_t""no" 1>&6
SNPRINTF='snprintf.o'
fi

M
 
Marc G. Fournier 已提交
5028

5029
cat > conftest.$ac_ext <<EOF
5030
#line 5031 "configure"
5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044
#include "confdefs.h"
#include <stdio.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "snprintf" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_SNPRINTF_DECL 1
EOF

fi
rm -f conftest*

cat > conftest.$ac_ext <<EOF
5045
#line 5046 "configure"
5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058
#include "confdefs.h"
#include <stdio.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "vsnprintf" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_VSNPRINTF_DECL 1
EOF

fi
rm -f conftest*

5059 5060

# do this one the hard way in case isinf() is a macro
5061
echo $ac_n "checking for isinf""... $ac_c" 1>&6
5062
echo "configure:5063: checking for isinf" >&5
5063
if eval "test \"`echo '$''{'ac_cv_func_isinf'+set}'`\" = set"; then
5064 5065 5066
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5067
#line 5068 "configure"
5068
#include "confdefs.h"
5069
#include <math.h>
5070

5071
int main() {
5072
double x = 0.0; int res = isinf(x);
5073 5074
; return 0; }
EOF
5075
if { (eval echo configure:5076: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5076
  rm -rf conftest*
5077
  ac_cv_func_isinf=yes
5078 5079 5080 5081
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
5082
  ac_cv_func_isinf=no
5083 5084 5085 5086
fi
rm -f conftest*
fi

5087 5088 5089
echo "$ac_t""$ac_cv_func_isinf" 1>&6

if test $ac_cv_func_isinf = yes ; then
5090 5091 5092 5093
  cat >> confdefs.h <<\EOF
#define HAVE_ISINF 1
EOF

5094
  ISINF=
5095
else
5096
  ISINF='isinf.o'
5097 5098 5099 5100
  # Look for a way to implement a substitute for isinf()
  for ac_func in fpclass fp_class fp_class_d class
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
5101
echo "configure:5102: checking for $ac_func" >&5
5102 5103 5104 5105
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5106
#line 5107 "configure"
5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char $ac_func(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char $ac_func();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
$ac_func();
#endif

; return 0; }
EOF
5129
if { (eval echo configure:5130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  cat >> confdefs.h <<EOF
#define $ac_tr_func 1
EOF
 break
else
  echo "$ac_t""no" 1>&6
fi
done

5153 5154
fi

5155

5156
echo $ac_n "checking for getrusage""... $ac_c" 1>&6
5157
echo "configure:5158: checking for getrusage" >&5
5158 5159 5160 5161
if eval "test \"`echo '$''{'ac_cv_func_getrusage'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5162
#line 5163 "configure"
5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char getrusage(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char getrusage();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_getrusage) || defined (__stub___getrusage)
choke me
#else
getrusage();
#endif

; return 0; }
EOF
5185
if { (eval echo configure:5186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207
  rm -rf conftest*
  eval "ac_cv_func_getrusage=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_getrusage=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'getrusage`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_GETRUSAGE 1
EOF

else
  echo "$ac_t""no" 1>&6
GETRUSAGE='getrusage.o'
fi

5208

5209
echo $ac_n "checking for srandom""... $ac_c" 1>&6
5210
echo "configure:5211: checking for srandom" >&5
5211 5212 5213 5214
if eval "test \"`echo '$''{'ac_cv_func_srandom'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5215
#line 5216 "configure"
5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char srandom(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char srandom();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_srandom) || defined (__stub___srandom)
choke me
#else
srandom();
#endif

; return 0; }
EOF
5238
if { (eval echo configure:5239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260
  rm -rf conftest*
  eval "ac_cv_func_srandom=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_srandom=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'srandom`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_SRANDOM 1
EOF

else
  echo "$ac_t""no" 1>&6
SRANDOM='srandom.o'
fi

5261

5262
echo $ac_n "checking for gethostname""... $ac_c" 1>&6
5263
echo "configure:5264: checking for gethostname" >&5
5264 5265 5266 5267
if eval "test \"`echo '$''{'ac_cv_func_gethostname'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5268
#line 5269 "configure"
5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char gethostname(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char gethostname();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_gethostname) || defined (__stub___gethostname)
choke me
#else
gethostname();
#endif

; return 0; }
EOF
5291
if { (eval echo configure:5292: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313
  rm -rf conftest*
  eval "ac_cv_func_gethostname=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_gethostname=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'gethostname`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_GETHOSTNAME 1
EOF

else
  echo "$ac_t""no" 1>&6
GETHOSTNAME='gethostname.o'
fi

5314

5315
echo $ac_n "checking for random""... $ac_c" 1>&6
5316
echo "configure:5317: checking for random" >&5
5317 5318 5319 5320
if eval "test \"`echo '$''{'ac_cv_func_random'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5321
#line 5322 "configure"
5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char random(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char random();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_random) || defined (__stub___random)
choke me
#else
random();
#endif

; return 0; }
EOF
5344
if { (eval echo configure:5345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363
  rm -rf conftest*
  eval "ac_cv_func_random=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_random=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'random`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_RANDOM 1
EOF

else
  echo "$ac_t""no" 1>&6
5364
MISSING_RANDOM='random.o'
5365 5366
fi

5367

5368
echo $ac_n "checking for inet_aton""... $ac_c" 1>&6
5369
echo "configure:5370: checking for inet_aton" >&5
5370 5371 5372 5373
if eval "test \"`echo '$''{'ac_cv_func_inet_aton'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5374
#line 5375 "configure"
5375 5376 5377 5378 5379 5380 5381 5382 5383
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char inet_aton(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char inet_aton();

5384
int main() {
5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_inet_aton) || defined (__stub___inet_aton)
choke me
#else
inet_aton();
#endif

; return 0; }
EOF
5397
if { (eval echo configure:5398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5398 5399 5400
  rm -rf conftest*
  eval "ac_cv_func_inet_aton=yes"
else
5401 5402
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5403 5404 5405 5406
  rm -rf conftest*
  eval "ac_cv_func_inet_aton=no"
fi
rm -f conftest*
M
Marc G. Fournier 已提交
5407
fi
5408

5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419
if eval "test \"`echo '$ac_cv_func_'inet_aton`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_INET_ATON 1
EOF

else
  echo "$ac_t""no" 1>&6
INET_ATON='inet_aton.o'
fi

5420

B
Bruce Momjian 已提交
5421
echo $ac_n "checking for strerror""... $ac_c" 1>&6
5422
echo "configure:5423: checking for strerror" >&5
B
Bruce Momjian 已提交
5423 5424 5425 5426
if eval "test \"`echo '$''{'ac_cv_func_strerror'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5427
#line 5428 "configure"
B
Bruce Momjian 已提交
5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strerror(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strerror();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_strerror) || defined (__stub___strerror)
choke me
#else
strerror();
#endif

; return 0; }
EOF
5450
if { (eval echo configure:5451: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
B
Bruce Momjian 已提交
5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474
  rm -rf conftest*
  eval "ac_cv_func_strerror=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_strerror=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'strerror`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_STRERROR 1
EOF

else
  echo "$ac_t""no" 1>&6
STRERROR='strerror.o' STRERROR2='../../backend/port/strerror.o'
fi



5475
echo $ac_n "checking for strdup""... $ac_c" 1>&6
5476
echo "configure:5477: checking for strdup" >&5
5477 5478 5479 5480
if eval "test \"`echo '$''{'ac_cv_func_strdup'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5481
#line 5482 "configure"
5482 5483 5484 5485 5486 5487 5488 5489 5490
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strdup(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strdup();

5491
int main() {
5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_strdup) || defined (__stub___strdup)
choke me
#else
strdup();
#endif

; return 0; }
EOF
5504
if { (eval echo configure:5505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5505 5506 5507
  rm -rf conftest*
  eval "ac_cv_func_strdup=yes"
else
5508 5509
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5510 5511 5512 5513
  rm -rf conftest*
  eval "ac_cv_func_strdup=no"
fi
rm -f conftest*
M
Marc G. Fournier 已提交
5514
fi
5515

5516 5517
if eval "test \"`echo '$ac_cv_func_'strdup`\" = yes"; then
  echo "$ac_t""yes" 1>&6
5518
  cat >> confdefs.h <<\EOF
5519 5520 5521
#define HAVE_STRDUP 1
EOF

5522 5523
else
  echo "$ac_t""no" 1>&6
5524
STRDUP='../../utils/strdup.o'
5525 5526
fi

5527

5528
echo $ac_n "checking for strtol""... $ac_c" 1>&6
5529
echo "configure:5530: checking for strtol" >&5
5530 5531 5532 5533
if eval "test \"`echo '$''{'ac_cv_func_strtol'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5534
#line 5535 "configure"
5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strtol(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strtol();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_strtol) || defined (__stub___strtol)
choke me
#else
strtol();
#endif

; return 0; }
EOF
5557
if { (eval echo configure:5558: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576
  rm -rf conftest*
  eval "ac_cv_func_strtol=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_strtol=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'strtol`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_STRTOL 1
EOF

else
  echo "$ac_t""no" 1>&6
M
Marc G. Fournier 已提交
5577
STRTOL='strtol.o'
5578 5579
fi

M
Marc G. Fournier 已提交
5580 5581

echo $ac_n "checking for strtoul""... $ac_c" 1>&6
5582
echo "configure:5583: checking for strtoul" >&5
M
Marc G. Fournier 已提交
5583 5584 5585 5586
if eval "test \"`echo '$''{'ac_cv_func_strtoul'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5587
#line 5588 "configure"
M
Marc G. Fournier 已提交
5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strtoul(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strtoul();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_strtoul) || defined (__stub___strtoul)
choke me
#else
strtoul();
#endif

; return 0; }
EOF
5610
if { (eval echo configure:5611: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
M
Marc G. Fournier 已提交
5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633
  rm -rf conftest*
  eval "ac_cv_func_strtoul=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_strtoul=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'strtoul`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_STRTOUL 1
EOF

else
  echo "$ac_t""no" 1>&6
STRTOL='strtoul.o'
fi


5634
echo $ac_n "checking for strcasecmp""... $ac_c" 1>&6
5635
echo "configure:5636: checking for strcasecmp" >&5
5636 5637 5638 5639
if eval "test \"`echo '$''{'ac_cv_func_strcasecmp'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5640
#line 5641 "configure"
5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strcasecmp(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strcasecmp();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_strcasecmp) || defined (__stub___strcasecmp)
choke me
#else
strcasecmp();
#endif

; return 0; }
EOF
5663
if { (eval echo configure:5664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685
  rm -rf conftest*
  eval "ac_cv_func_strcasecmp=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_strcasecmp=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'strcasecmp`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_STRCASECMP 1
EOF

else
  echo "$ac_t""no" 1>&6
STRCASECMP='strcasecmp.o'
fi

5686

5687
echo $ac_n "checking for cbrt""... $ac_c" 1>&6
5688
echo "configure:5689: checking for cbrt" >&5
5689 5690 5691 5692
if eval "test \"`echo '$''{'ac_cv_func_cbrt'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5693
#line 5694 "configure"
5694 5695 5696 5697 5698 5699 5700 5701 5702
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char cbrt(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char cbrt();

5703
int main() {
5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_cbrt) || defined (__stub___cbrt)
choke me
#else
cbrt();
#endif

; return 0; }
EOF
5716
if { (eval echo configure:5717: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5717 5718 5719
  rm -rf conftest*
  eval "ac_cv_func_cbrt=yes"
else
5720 5721
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5722 5723 5724 5725
  rm -rf conftest*
  eval "ac_cv_func_cbrt=no"
fi
rm -f conftest*
M
Marc G. Fournier 已提交
5726
fi
5727

5728 5729 5730 5731 5732 5733 5734 5735
if eval "test \"`echo '$ac_cv_func_'cbrt`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_CBRT 1
EOF

else
  echo "$ac_t""no" 1>&6
5736
echo $ac_n "checking for cbrt in -lm""... $ac_c" 1>&6
5737
echo "configure:5738: checking for cbrt in -lm" >&5
5738
ac_lib_var=`echo m'_'cbrt | sed 'y%./+-%__p_%'`
5739 5740 5741 5742 5743 5744
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lm  $LIBS"
cat > conftest.$ac_ext <<EOF
5745
#line 5746 "configure"
5746 5747 5748 5749 5750 5751
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char cbrt();

5752
int main() {
5753 5754 5755
cbrt()
; return 0; }
EOF
5756
if { (eval echo configure:5757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5757 5758 5759
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
5760 5761
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_CBRT 1
EOF

else
  echo "$ac_t""no" 1>&6
fi

fi

5781 5782 5783 5784

# On HPUX 9, rint() is not in regular libm.a but in /lib/pa1.1/libm.a;
# this hackery with HPUXMATHLIB allows us to cope.
HPUXMATHLIB=""
5785
case $host_cpu in
5786 5787 5788 5789 5790 5791 5792
  hppa1.1) 
	if [ -r /lib/pa1.1/libm.a ] ; then
	    HPUXMATHLIB="-L /lib/pa1.1 -lm"
	fi ;;
esac


5793
echo $ac_n "checking for rint""... $ac_c" 1>&6
5794
echo "configure:5795: checking for rint" >&5
5795 5796 5797 5798
if eval "test \"`echo '$''{'ac_cv_func_rint'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5799
#line 5800 "configure"
5800 5801 5802 5803 5804 5805 5806 5807 5808
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char rint(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char rint();

5809
int main() {
5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_rint) || defined (__stub___rint)
choke me
#else
rint();
#endif

; return 0; }
EOF
5822
if { (eval echo configure:5823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5823 5824 5825
  rm -rf conftest*
  eval "ac_cv_func_rint=yes"
else
5826 5827
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5828 5829 5830 5831
  rm -rf conftest*
  eval "ac_cv_func_rint=no"
fi
rm -f conftest*
M
Marc G. Fournier 已提交
5832
fi
5833

5834 5835 5836 5837 5838 5839 5840 5841
if eval "test \"`echo '$ac_cv_func_'rint`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_RINT 1
EOF

else
  echo "$ac_t""no" 1>&6
5842
echo $ac_n "checking for rint in -lm""... $ac_c" 1>&6
5843
echo "configure:5844: checking for rint in -lm" >&5
5844
ac_lib_var=`echo m'_'rint | sed 'y%./+-%__p_%'`
5845 5846 5847 5848
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
5849
LIBS="-lm $HPUXMATHLIB $LIBS"
5850
cat > conftest.$ac_ext <<EOF
5851
#line 5852 "configure"
5852 5853 5854 5855 5856 5857
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char rint();

5858
int main() {
5859 5860 5861
rint()
; return 0; }
EOF
5862
if { (eval echo configure:5863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
5863 5864 5865
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
5866 5867
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define HAVE_RINT 1
EOF

else
  echo "$ac_t""no" 1>&6
fi

fi


5888
cat > conftest.$ac_ext <<EOF
5889
#line 5890 "configure"
5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902
#include "confdefs.h"
#include <readline.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "rl_completion_append_character" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1
EOF

else
  rm -rf conftest*
  cat > conftest.$ac_ext <<EOF
5903
#line 5904 "configure"
5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920
#include "confdefs.h"
#include <readline/readline.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "rl_completion_append_character" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1
EOF

fi
rm -f conftest*

fi
rm -f conftest*


B
Bruce Momjian 已提交
5921

P
Peter Eisentraut 已提交
5922
for ac_func in filename_completion_function
B
Bruce Momjian 已提交
5923 5924
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
5925
echo "configure:5926: checking for $ac_func" >&5
B
Bruce Momjian 已提交
5926 5927 5928 5929
if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
5930
#line 5931 "configure"
B
Bruce Momjian 已提交
5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char $ac_func(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char $ac_func();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
choke me
#else
$ac_func();
#endif

; return 0; }
EOF
5953
if { (eval echo configure:5954: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
B
Bruce Momjian 已提交
5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_$ac_func=no"
fi
rm -f conftest*
fi

P
Peter Eisentraut 已提交
5965 5966 5967 5968 5969 5970 5971
if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
  echo "$ac_t""yes" 1>&6
    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  cat >> confdefs.h <<EOF
#define $ac_tr_func 1
EOF
 cat > conftest.$ac_ext <<EOF
5972
#line 5973 "configure"
P
Peter Eisentraut 已提交
5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985
#include "confdefs.h"
#include <readline.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "filename_completion_function" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_FILENAME_COMPLETION_FUNCTION_DECL 1
EOF

else
  rm -rf conftest*
  cat > conftest.$ac_ext <<EOF
5986
#line 5987 "configure"
P
Peter Eisentraut 已提交
5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011
#include "confdefs.h"
#include <readline/readline.h>
EOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  egrep "filename_completion_function" >/dev/null 2>&1; then
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_FILENAME_COMPLETION_FUNCTION_DECL 1
EOF

fi
rm -f conftest*

fi
rm -f conftest*


else
  echo "$ac_t""no" 1>&6
fi
done




B
Bruce Momjian 已提交
6012

6013
echo $ac_n "checking for finite""... $ac_c" 1>&6
6014
echo "configure:6015: checking for finite" >&5
6015
cat > conftest.$ac_ext <<EOF
6016
#line 6017 "configure"
6017 6018 6019 6020 6021 6022
#include "confdefs.h"
#include <math.h>
int main() {
int dummy=finite(1.0);
; return 0; }
EOF
6023
if { (eval echo configure:6024: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_FINITE 1
EOF
 echo "$ac_t""yes" 1>&6
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  echo "$ac_t""no" 1>&6
fi
rm -f conftest*

6037
echo $ac_n "checking for sigsetjmp""... $ac_c" 1>&6
6038
echo "configure:6039: checking for sigsetjmp" >&5
6039
cat > conftest.$ac_ext <<EOF
6040
#line 6041 "configure"
6041 6042 6043 6044 6045 6046
#include "confdefs.h"
#include <setjmp.h>
int main() {
sigjmp_buf x; sigsetjmp(x, 1);
; return 0; }
EOF
6047
if { (eval echo configure:6048: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060
  rm -rf conftest*
  cat >> confdefs.h <<\EOF
#define HAVE_SIGSETJMP 1
EOF
 echo "$ac_t""yes" 1>&6
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  echo "$ac_t""no" 1>&6
fi
rm -f conftest*

6061 6062 6063 6064 6065
# Check whether --enable-syslog or --disable-syslog was given.
if test "${enable_syslog+set}" = set; then
  enableval="$enable_syslog"
  case $enableval in y|ye|yes)
	echo $ac_n "checking for syslog""... $ac_c" 1>&6
6066
echo "configure:6067: checking for syslog" >&5
6067 6068 6069 6070
if eval "test \"`echo '$''{'ac_cv_func_syslog'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
6071
#line 6072 "configure"
6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char syslog(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char syslog();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_syslog) || defined (__stub___syslog)
choke me
#else
syslog();
#endif

; return 0; }
EOF
6094
if { (eval echo configure:6095: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122
  rm -rf conftest*
  eval "ac_cv_func_syslog=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_syslog=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'syslog`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  cat >> confdefs.h <<\EOF
#define ENABLE_SYSLOG 1
EOF

else
  echo "$ac_t""no" 1>&6
{ echo "configure: error: no syslog interface found" 1>&2; exit 1; }
fi

        ;;
     esac

fi


6123

6124
echo $ac_n "checking whether long int is 64 bits""... $ac_c" 1>&6
6125
echo "configure:6126: checking whether long int is 64 bits" >&5
6126 6127 6128 6129 6130 6131
if eval "test \"`echo '$''{'pgac_cv_type_long_int_64'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
  pgac_cv_type_long_int_64=no
echo "configure: warning: 64 bit arithmetic disabled when cross-compiling" 1>&2
6132 6133
else
  cat > conftest.$ac_ext <<EOF
6134
#line 6135 "configure"
6135 6136 6137
#include "confdefs.h"
typedef long int int64;

6138 6139
/*
 * These are globals to discourage the compiler from folding all the
6140 6141
 * arithmetic tests down to compile-time constants.
 */
6142 6143 6144 6145 6146 6147 6148 6149
int64 a = 20000001;
int64 b = 40000005;

int does_int64_work()
{
  int64 c,d;

  if (sizeof(int64) != 8)
6150
    return 0;			/* definitely not the right size */
6151

6152
  /* Do perfunctory checks to see if 64-bit arithmetic seems to work */
6153 6154 6155 6156 6157 6158 6159 6160 6161 6162
  c = a * b;
  d = (c + b) / b;
  if (d != a+1)
    return 0;
  return 1;
}
main() {
  exit(! does_int64_work());
}
EOF
6163
if { (eval echo configure:6164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6164
then
6165
  pgac_cv_type_long_int_64=yes
6166 6167 6168 6169
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6170
  pgac_cv_type_long_int_64=no
6171 6172 6173 6174
fi
rm -fr conftest*
fi

6175
fi
6176

6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189
echo "$ac_t""$pgac_cv_type_long_int_64" 1>&6

HAVE_LONG_INT_64=$pgac_cv_type_long_int_64
if test x"$pgac_cv_type_long_int_64" = xyes ; then
  cat >> confdefs.h <<\EOF
#define HAVE_LONG_INT_64 
EOF

fi


if test x"$HAVE_LONG_INT_64" = x"no" ; then
  echo $ac_n "checking whether long long int is 64 bits""... $ac_c" 1>&6
6190
echo "configure:6191: checking whether long long int is 64 bits" >&5
6191 6192 6193 6194 6195 6196
if eval "test \"`echo '$''{'pgac_cv_type_long_long_int_64'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
  pgac_cv_type_long_long_int_64=no
echo "configure: warning: 64 bit arithmetic disabled when cross-compiling" 1>&2
6197 6198
else
  cat > conftest.$ac_ext <<EOF
6199
#line 6200 "configure"
6200 6201 6202
#include "confdefs.h"
typedef long long int int64;

6203 6204
/*
 * These are globals to discourage the compiler from folding all the
6205 6206
 * arithmetic tests down to compile-time constants.
 */
6207 6208 6209 6210 6211 6212 6213 6214
int64 a = 20000001;
int64 b = 40000005;

int does_int64_work()
{
  int64 c,d;

  if (sizeof(int64) != 8)
6215
    return 0;			/* definitely not the right size */
6216

6217
  /* Do perfunctory checks to see if 64-bit arithmetic seems to work */
6218 6219 6220 6221 6222 6223 6224 6225 6226 6227
  c = a * b;
  d = (c + b) / b;
  if (d != a+1)
    return 0;
  return 1;
}
main() {
  exit(! does_int64_work());
}
EOF
6228
if { (eval echo configure:6229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6229
then
6230
  pgac_cv_type_long_long_int_64=yes
6231 6232 6233 6234
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6235
  pgac_cv_type_long_long_int_64=no
6236 6237 6238 6239
fi
rm -fr conftest*
fi

6240 6241
fi

6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254
echo "$ac_t""$pgac_cv_type_long_long_int_64" 1>&6

HAVE_LONG_LONG_INT_64=$pgac_cv_type_long_long_int_64
if test x"$pgac_cv_type_long_long_int_64" = xyes ; then
  cat >> confdefs.h <<\EOF
#define HAVE_LONG_LONG_INT_64 
EOF

fi

fi


6255

P
Peter Eisentraut 已提交
6256
if [ x"$HAVE_LONG_LONG_INT_64" = xyes ] ; then
6257
  if [ x$SNPRINTF = x ] ; then
M
 
Marc G. Fournier 已提交
6258
    echo $ac_n "checking whether snprintf handles 'long long int' as %lld""... $ac_c" 1>&6
6259
echo "configure:6260: checking whether snprintf handles 'long long int' as %lld" >&5
6260
    if test "$cross_compiling" = yes; then
6261 6262 6263 6264 6265
   echo "$ac_t""assuming not on target machine" 1>&6
	# Force usage of our own snprintf, since we cannot test foreign snprintf
	SNPRINTF='snprintf.o'
	INT64_FORMAT='"%lld"'
  
6266 6267
else
  cat > conftest.$ac_ext <<EOF
6268
#line 6269 "configure"
6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294
#include "confdefs.h"
#include <stdio.h>
typedef long long int int64;
#define INT64_FORMAT "%lld"

int64 a = 20000001;
int64 b = 40000005;

int does_int64_snprintf_work()
{
  int64 c;
  char buf[100];

  if (sizeof(int64) != 8)
    return 0;			/* doesn't look like the right size */

  c = a * b;
  snprintf(buf, 100, INT64_FORMAT, c);
  if (strcmp(buf, "800000140000005") != 0)
    return 0;			/* either multiply or snprintf is busted */
  return 1;
}
main() {
  exit(! does_int64_snprintf_work());
}
EOF
6295
if { (eval echo configure:6296: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6296
then
M
 
Marc G. Fournier 已提交
6297
   echo "$ac_t""yes" 1>&6
6298 6299
	  INT64_FORMAT='"%lld"'
	
6300 6301 6302 6303
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
M
 
Marc G. Fournier 已提交
6304 6305
   echo "$ac_t""no" 1>&6
    echo $ac_n "checking whether snprintf handles 'long long int' as %qd""... $ac_c" 1>&6
6306
echo "configure:6307: checking whether snprintf handles 'long long int' as %qd" >&5 
M
 
Marc G. Fournier 已提交
6307
    if test "$cross_compiling" = yes; then
6308 6309 6310 6311 6312
   echo "$ac_t""assuming not on target machine" 1>&6
	# Force usage of our own snprintf, since we cannot test foreign snprintf
	SNPRINTF='snprintf.o'
	INT64_FORMAT='"%lld"'
  
M
 
Marc G. Fournier 已提交
6313 6314
else
  cat > conftest.$ac_ext <<EOF
6315
#line 6316 "configure"
M
 
Marc G. Fournier 已提交
6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341
#include "confdefs.h"
#include <stdio.h>
typedef long long int int64;
#define INT64_FORMAT "%qd"
   
int64 a = 20000001;
int64 b = 40000005;
   
int does_int64_snprintf_work()
{  
  int64 c;
  char buf[100];

  if (sizeof(int64) != 8)
    return 0;     /* doesn't look like the right size */

  c = a * b;
  snprintf(buf, 100, INT64_FORMAT, c);
  if (strcmp(buf, "800000140000005") != 0)
    return 0;     /* either multiply or snprintf is busted */
  return 1;
}
main() {
  exit(! does_int64_snprintf_work());
}
EOF
6342
if { (eval echo configure:6343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
M
 
Marc G. Fournier 已提交
6343
then
6344 6345 6346
   echo "$ac_t""yes" 1>&6
    INT64_FORMAT='"%qd"'
  
M
 
Marc G. Fournier 已提交
6347 6348 6349 6350
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6351 6352 6353 6354 6355
   echo "$ac_t""no" 1>&6
	# Force usage of our own snprintf, since system snprintf is broken
	SNPRINTF='snprintf.o'
	INT64_FORMAT='"%lld"'
  
M
 
Marc G. Fournier 已提交
6356 6357 6358 6359
fi
rm -fr conftest*
fi
 
6360 6361 6362 6363
fi
rm -fr conftest*
fi

6364 6365 6366 6367 6368 6369 6370
  else
    # here if we previously decided we needed to use our own snprintf
    INT64_FORMAT='"%lld"'
  fi
else
  # Here if we are not using 'long long int' at all
  INT64_FORMAT='"%ld"'
6371 6372
fi

6373 6374 6375 6376 6377
cat >> confdefs.h <<EOF
#define INT64_FORMAT $INT64_FORMAT
EOF


6378 6379


6380
echo $ac_n "checking alignment of short""... $ac_c" 1>&6
6381
echo "configure:6382: checking alignment of short" >&5
6382
if eval "test \"`echo '$''{'pgac_cv_alignof_short'+set}'`\" = set"; then
6383 6384 6385
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
6386
  pgac_cv_alignof_short='sizeof(short)'
6387 6388
else
  cat > conftest.$ac_ext <<EOF
6389
#line 6390 "configure"
6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400
#include "confdefs.h"
#include <stdio.h>
struct { char filler; short field; } mystruct;
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", ((char*) & mystruct.field) - ((char*) & mystruct));
  exit(0);
}
EOF
6401
if { (eval echo configure:6402: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6402
then
6403
  pgac_cv_alignof_short=`cat conftestval`
6404 6405 6406 6407
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6408
  pgac_cv_alignof_short='sizeof(short)'
6409 6410 6411 6412 6413
fi
rm -fr conftest*
fi

fi
6414
echo "$ac_t""$pgac_cv_alignof_short" 1>&6
6415
cat >> confdefs.h <<EOF
6416
#define ALIGNOF_SHORT $pgac_cv_alignof_short
6417 6418 6419 6420
EOF


echo $ac_n "checking alignment of int""... $ac_c" 1>&6
6421
echo "configure:6422: checking alignment of int" >&5
6422
if eval "test \"`echo '$''{'pgac_cv_alignof_int'+set}'`\" = set"; then
6423 6424 6425
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
6426
  pgac_cv_alignof_int='sizeof(int)'
6427 6428
else
  cat > conftest.$ac_ext <<EOF
6429
#line 6430 "configure"
6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440
#include "confdefs.h"
#include <stdio.h>
struct { char filler; int field; } mystruct;
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", ((char*) & mystruct.field) - ((char*) & mystruct));
  exit(0);
}
EOF
6441
if { (eval echo configure:6442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6442
then
6443
  pgac_cv_alignof_int=`cat conftestval`
6444 6445 6446 6447
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6448
  pgac_cv_alignof_int='sizeof(int)'
6449 6450 6451 6452 6453
fi
rm -fr conftest*
fi

fi
6454
echo "$ac_t""$pgac_cv_alignof_int" 1>&6
6455
cat >> confdefs.h <<EOF
6456
#define ALIGNOF_INT $pgac_cv_alignof_int
6457 6458 6459 6460
EOF


echo $ac_n "checking alignment of long""... $ac_c" 1>&6
6461
echo "configure:6462: checking alignment of long" >&5
6462
if eval "test \"`echo '$''{'pgac_cv_alignof_long'+set}'`\" = set"; then
6463 6464 6465
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
6466
  pgac_cv_alignof_long='sizeof(long)'
6467 6468
else
  cat > conftest.$ac_ext <<EOF
6469
#line 6470 "configure"
6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480
#include "confdefs.h"
#include <stdio.h>
struct { char filler; long field; } mystruct;
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", ((char*) & mystruct.field) - ((char*) & mystruct));
  exit(0);
}
EOF
6481
if { (eval echo configure:6482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6482
then
6483
  pgac_cv_alignof_long=`cat conftestval`
6484 6485 6486 6487
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6488
  pgac_cv_alignof_long='sizeof(long)'
6489 6490 6491 6492 6493
fi
rm -fr conftest*
fi

fi
6494
echo "$ac_t""$pgac_cv_alignof_long" 1>&6
6495
cat >> confdefs.h <<EOF
6496
#define ALIGNOF_LONG $pgac_cv_alignof_long
6497 6498 6499
EOF


P
Peter Eisentraut 已提交
6500
if [ x"$HAVE_LONG_LONG_INT_64" = xyes ] ; then
6501
  echo $ac_n "checking alignment of long long int""... $ac_c" 1>&6
6502
echo "configure:6503: checking alignment of long long int" >&5
6503
if eval "test \"`echo '$''{'pgac_cv_alignof_long_long_int'+set}'`\" = set"; then
6504 6505 6506
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
6507
  pgac_cv_alignof_long_long_int='sizeof(long long int)'
6508 6509
else
  cat > conftest.$ac_ext <<EOF
6510
#line 6511 "configure"
6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521
#include "confdefs.h"
#include <stdio.h>
struct { char filler; long long int field; } mystruct;
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", ((char*) & mystruct.field) - ((char*) & mystruct));
  exit(0);
}
EOF
6522
if { (eval echo configure:6523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6523
then
6524
  pgac_cv_alignof_long_long_int=`cat conftestval`
6525 6526 6527 6528
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6529
  pgac_cv_alignof_long_long_int='sizeof(long long int)'
6530 6531 6532 6533 6534
fi
rm -fr conftest*
fi

fi
6535
echo "$ac_t""$pgac_cv_alignof_long_long_int" 1>&6
6536
cat >> confdefs.h <<EOF
6537
#define ALIGNOF_LONG_LONG_INT $pgac_cv_alignof_long_long_int
6538 6539 6540 6541 6542
EOF


fi
echo $ac_n "checking alignment of double""... $ac_c" 1>&6
6543
echo "configure:6544: checking alignment of double" >&5
6544
if eval "test \"`echo '$''{'pgac_cv_alignof_double'+set}'`\" = set"; then
6545 6546 6547
  echo $ac_n "(cached) $ac_c" 1>&6
else
  if test "$cross_compiling" = yes; then
6548
  pgac_cv_alignof_double='sizeof(double)'
6549 6550
else
  cat > conftest.$ac_ext <<EOF
6551
#line 6552 "configure"
6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562
#include "confdefs.h"
#include <stdio.h>
struct { char filler; double field; } mystruct;
main()
{
  FILE *f=fopen("conftestval", "w");
  if (!f) exit(1);
  fprintf(f, "%d\n", ((char*) & mystruct.field) - ((char*) & mystruct));
  exit(0);
}
EOF
6563
if { (eval echo configure:6564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
6564
then
6565
  pgac_cv_alignof_double=`cat conftestval`
6566 6567 6568 6569
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -fr conftest*
6570
  pgac_cv_alignof_double='sizeof(double)'
6571 6572 6573 6574 6575
fi
rm -fr conftest*
fi

fi
6576
echo "$ac_t""$pgac_cv_alignof_double" 1>&6
6577
cat >> confdefs.h <<EOF
6578
#define ALIGNOF_DOUBLE $pgac_cv_alignof_double
6579 6580 6581 6582 6583
EOF




6584 6585 6586 6587
if test $pgac_cv_alignof_double != 'sizeof(double)' ; then
  MAX_ALIGNOF=$pgac_cv_alignof_long
  if test $MAX_ALIGNOF -lt $pgac_cv_alignof_double ; then
    MAX_ALIGNOF=$pgac_cv_alignof_double
6588
  fi
P
Peter Eisentraut 已提交
6589
  if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $pgac_cv_alignof_long_long_int ; then
6590
    MAX_ALIGNOF="$pgac_cv_alignof_long_long_int"
6591 6592
  fi
else
6593
    MAX_ALIGNOF="$pgac_cv_alignof_double"
6594 6595 6596 6597 6598 6599
fi
cat >> confdefs.h <<EOF
#define MAXIMUM_ALIGNOF $MAX_ALIGNOF
EOF


6600
echo $ac_n "checking for POSIX signal interface""... $ac_c" 1>&6
6601
echo "configure:6602: checking for POSIX signal interface" >&5
6602 6603 6604 6605
if eval "test \"`echo '$''{'pgac_cv_func_posix_signals'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
6606
#line 6607 "configure"
6607 6608
#include "confdefs.h"
#include <signal.h>
6609

6610 6611 6612 6613 6614 6615 6616
int main() {
struct sigaction act, oact;
sigemptyset(&act.sa_mask);
act.sa_flags = SA_RESTART;
sigaction(0, &act, &oact);
; return 0; }
EOF
6617
if { (eval echo configure:6618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6618
  rm -rf conftest*
6619
  pgac_cv_func_posix_signals=yes
6620 6621 6622 6623
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
6624
  pgac_cv_func_posix_signals=no
6625 6626
fi
rm -f conftest*
6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637
fi

echo "$ac_t""$pgac_cv_func_posix_signals" 1>&6
if test x"$pgac_cv_func_posix_signals" = xyes ; then
  cat >> confdefs.h <<\EOF
#define HAVE_POSIX_SIGNALS 
EOF

fi
HAVE_POSIX_SIGNALS=$pgac_cv_func_posix_signals

6638 6639 6640



B
Bruce Momjian 已提交
6641 6642 6643
if test -z "$TCL_DIRS"
then
	# Extract the first word of "tclsh", so it can be a program name with args.
B
Bruce Momjian 已提交
6644 6645
set dummy tclsh; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
6646
echo "configure:6647: checking for $ac_word" >&5
B
Bruce Momjian 已提交
6647 6648 6649 6650 6651 6652 6653
if eval "test \"`echo '$''{'ac_cv_path_TCLSH'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  case "$TCLSH" in
  /*)
  ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a path.
  ;;
6654 6655 6656
  ?:/*)			 
  ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a dos path.
  ;;
B
Bruce Momjian 已提交
6657
  *)
6658 6659 6660
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do 
B
Bruce Momjian 已提交
6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_path_TCLSH="$ac_dir/$ac_word"
      break
    fi
  done
  IFS="$ac_save_ifs"
  ;;
esac
fi
TCLSH="$ac_cv_path_TCLSH"
if test -n "$TCLSH"; then
  echo "$ac_t""$TCLSH" 1>&6
else
  echo "$ac_t""no" 1>&6
fi

B
Bruce Momjian 已提交
6678 6679 6680 6681 6682
	if test -z "$TCLSH"
	then
		# Extract the first word of "tcl", so it can be a program name with args.
set dummy tcl; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
6683
echo "configure:6684: checking for $ac_word" >&5
B
Bruce Momjian 已提交
6684 6685 6686 6687 6688 6689 6690
if eval "test \"`echo '$''{'ac_cv_path_TCLSH'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  case "$TCLSH" in
  /*)
  ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a path.
  ;;
6691 6692 6693
  ?:/*)			 
  ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a dos path.
  ;;
B
Bruce Momjian 已提交
6694
  *)
6695 6696 6697
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do 
B
Bruce Momjian 已提交
6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
      ac_cv_path_TCLSH="$ac_dir/$ac_word"
      break
    fi
  done
  IFS="$ac_save_ifs"
  ;;
esac
fi
TCLSH="$ac_cv_path_TCLSH"
if test -n "$TCLSH"; then
  echo "$ac_t""$TCLSH" 1>&6
else
  echo "$ac_t""no" 1>&6
fi
B
Bruce Momjian 已提交
6714

B
Bruce Momjian 已提交
6715 6716 6717 6718 6719 6720
		if test -z "$TCLSH"
		then
			echo "configure: warning: TCL/TK support disabled; tcl shell is not in your path" 1>&2
			USE_TCL=
		fi
	fi
B
Bruce Momjian 已提交
6721 6722 6723 6724 6725
fi
	
if test "$USE_TCL" = true
then
	echo $ac_n "checking for tclConfig.sh""... $ac_c" 1>&6
6726
echo "configure:6727: checking for tclConfig.sh" >&5
B
Bruce Momjian 已提交
6727
	TCL_CONFIG_SH=
B
Bruce Momjian 已提交
6728 6729 6730 6731 6732
	library_dirs=
	if test -z "$TCL_DIRS"
	then
		library_dirs=`echo 'puts $auto_path' | $TCLSH`
	fi
B
Bruce Momjian 已提交
6733
	library_dirs="$TCL_DIRS $TK_DIRS $library_dirs"
B
Bruce Momjian 已提交
6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754
	for dir in $library_dirs; do
		if test -d "$dir" -a -r "$dir/tclConfig.sh"; then
			TCL_CONFIG_SH=$dir/tclConfig.sh
			break
		fi
	done
	if test -z "$TCL_CONFIG_SH"; then
		echo "$ac_t""no" 1>&6
		echo "configure: warning: TCL/TK support disabled; Tcl configuration script missing" 1>&2
		USE_TCL=
	else
		echo "$ac_t""$TCL_CONFIG_SH" 1>&6
		
	fi
fi

USE_TK=$USE_TCL		# If TCL is disabled, disable TK

if test "$USE_TK" = true
then
	echo $ac_n "checking for tkConfig.sh""... $ac_c" 1>&6
6755
echo "configure:6756: checking for tkConfig.sh" >&5
B
Bruce Momjian 已提交
6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773
	TK_CONFIG_SH=
	# library_dirs are set in the check for TCL
	for dir in $library_dirs
	do
		if test -d "$dir" -a -r "$dir/tkConfig.sh"
		then
			TK_CONFIG_SH=$dir/tkConfig.sh
			break
		fi
	done
	if test -z "$TK_CONFIG_SH"
	then
		echo "$ac_t""no" 1>&6
		echo "configure: warning: TK support disabled; Tk configuration script missing" 1>&2
		USE_TK=
	else
		echo "$ac_t""$TK_CONFIG_SH" 1>&6
		
B
Bruce Momjian 已提交
6774 6775 6776
		# Extract the first word of "wish", so it can be a program name with args.
set dummy wish; ac_word=$2
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
6777
echo "configure:6778: checking for $ac_word" >&5
B
Bruce Momjian 已提交
6778
if eval "test \"`echo '$''{'ac_cv_path_WISH'+set}'`\" = set"; then
B
Bruce Momjian 已提交
6779 6780
  echo $ac_n "(cached) $ac_c" 1>&6
else
B
Bruce Momjian 已提交
6781
  case "$WISH" in
B
Bruce Momjian 已提交
6782
  /*)
B
Bruce Momjian 已提交
6783
  ac_cv_path_WISH="$WISH" # Let the user override the test with a path.
B
Bruce Momjian 已提交
6784 6785
  ;;
  ?:/*)			 
B
Bruce Momjian 已提交
6786
  ac_cv_path_WISH="$WISH" # Let the user override the test with a dos path.
B
Bruce Momjian 已提交
6787 6788 6789 6790 6791 6792 6793
  ;;
  *)
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS=":"
  ac_dummy="$PATH"
  for ac_dir in $ac_dummy; do 
    test -z "$ac_dir" && ac_dir=.
    if test -f $ac_dir/$ac_word; then
B
Bruce Momjian 已提交
6794
      ac_cv_path_WISH="$ac_dir/$ac_word"
B
Bruce Momjian 已提交
6795 6796 6797 6798 6799 6800 6801
      break
    fi
  done
  IFS="$ac_save_ifs"
  ;;
esac
fi
B
Bruce Momjian 已提交
6802 6803 6804
WISH="$ac_cv_path_WISH"
if test -n "$WISH"; then
  echo "$ac_t""$WISH" 1>&6
B
Bruce Momjian 已提交
6805 6806 6807 6808
else
  echo "$ac_t""no" 1>&6
fi

B
Bruce Momjian 已提交
6809 6810 6811
	fi
fi

6812

B
Bruce Momjian 已提交
6813 6814 6815
USE_X=$USE_TK


6816 6817
if test "$USE_X" = true; then

B
Bruce Momjian 已提交
6818 6819 6820 6821
	ice_save_LIBS="$LIBS"
	ice_save_CFLAGS="$CFLAGS"
	ice_save_CPPFLAGS="$CPPFLAGS"
	ice_save_LDFLAGS="$LDFLAGS"
6822

B
Bruce Momjian 已提交
6823
	# If we find X, set shell vars x_includes and x_libraries to the
6824 6825 6826 6827
# paths, otherwise set no_x=yes.
# Uses ac_ vars as temps to allow command line to override cache and checks.
# --without-x overrides everything else, but does not touch the cache.
echo $ac_n "checking for X""... $ac_c" 1>&6
6828
echo "configure:6829: checking for X" >&5
6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889

# Check whether --with-x or --without-x was given.
if test "${with_x+set}" = set; then
  withval="$with_x"
  :
fi

# $have_x is `yes', `no', `disabled', or empty when we do not yet know.
if test "x$with_x" = xno; then
  # The user explicitly disabled X.
  have_x=disabled
else
  if test "x$x_includes" != xNONE && test "x$x_libraries" != xNONE; then
    # Both variables are already set.
    have_x=yes
  else
if eval "test \"`echo '$''{'ac_cv_have_x'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  # One or both of the vars are not set, and there is no cached value.
ac_x_includes=NO ac_x_libraries=NO
rm -fr conftestdir
if mkdir conftestdir; then
  cd conftestdir
  # Make sure to not put "make" in the Imakefile rules, since we grep it out.
  cat > Imakefile <<'EOF'
acfindx:
	@echo 'ac_im_incroot="${INCROOT}"; ac_im_usrlibdir="${USRLIBDIR}"; ac_im_libdir="${LIBDIR}"'
EOF
  if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
    # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
    eval `${MAKE-make} acfindx 2>/dev/null | grep -v make`
    # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
    for ac_extension in a so sl; do
      if test ! -f $ac_im_usrlibdir/libX11.$ac_extension &&
        test -f $ac_im_libdir/libX11.$ac_extension; then
        ac_im_usrlibdir=$ac_im_libdir; break
      fi
    done
    # Screen out bogus values from the imake configuration.  They are
    # bogus both because they are the default anyway, and because
    # using them would break gcc on systems where it needs fixed includes.
    case "$ac_im_incroot" in
	/usr/include) ;;
	*) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes="$ac_im_incroot" ;;
    esac
    case "$ac_im_usrlibdir" in
	/usr/lib | /lib) ;;
	*) test -d "$ac_im_usrlibdir" && ac_x_libraries="$ac_im_usrlibdir" ;;
    esac
  fi
  cd ..
  rm -fr conftestdir
fi

if test "$ac_x_includes" = NO; then
  # Guess where to find include files, by looking for this one X11 .h file.
  test -z "$x_direct_test_include" && x_direct_test_include=X11/Intrinsic.h

  # First, try using that file with no special directory specified.
cat > conftest.$ac_ext <<EOF
6890
#line 6891 "configure"
6891 6892 6893 6894
#include "confdefs.h"
#include <$x_direct_test_include>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
6895
{ (eval echo configure:6896: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
6896
ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963
if test -z "$ac_err"; then
  rm -rf conftest*
  # We can compile using X headers with no special include directory.
ac_x_includes=
else
  echo "$ac_err" >&5
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  # Look for the header file in a standard set of common directories.
# Check X11 before X11Rn because it is often a symlink to the current release.
  for ac_dir in               \
    /usr/X11/include          \
    /usr/X11R6/include        \
    /usr/X11R5/include        \
    /usr/X11R4/include        \
                              \
    /usr/include/X11          \
    /usr/include/X11R6        \
    /usr/include/X11R5        \
    /usr/include/X11R4        \
                              \
    /usr/local/X11/include    \
    /usr/local/X11R6/include  \
    /usr/local/X11R5/include  \
    /usr/local/X11R4/include  \
                              \
    /usr/local/include/X11    \
    /usr/local/include/X11R6  \
    /usr/local/include/X11R5  \
    /usr/local/include/X11R4  \
                              \
    /usr/X386/include         \
    /usr/x386/include         \
    /usr/XFree86/include/X11  \
                              \
    /usr/include              \
    /usr/local/include        \
    /usr/unsupported/include  \
    /usr/athena/include       \
    /usr/local/x11r5/include  \
    /usr/lpp/Xamples/include  \
                              \
    /usr/openwin/include      \
    /usr/openwin/share/include \
    ; \
  do
    if test -r "$ac_dir/$x_direct_test_include"; then
      ac_x_includes=$ac_dir
      break
    fi
  done
fi
rm -f conftest*
fi # $ac_x_includes = NO

if test "$ac_x_libraries" = NO; then
  # Check for the libraries.

  test -z "$x_direct_test_library" && x_direct_test_library=Xt
  test -z "$x_direct_test_function" && x_direct_test_function=XtMalloc

  # See if we find them without any special options.
  # Don't add to $LIBS permanently.
  ac_save_LIBS="$LIBS"
  LIBS="-l$x_direct_test_library $LIBS"
cat > conftest.$ac_ext <<EOF
6964
#line 6965 "configure"
6965 6966 6967 6968 6969 6970
#include "confdefs.h"

int main() {
${x_direct_test_function}()
; return 0; }
EOF
6971
if { (eval echo configure:6972: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076
  rm -rf conftest*
  LIBS="$ac_save_LIBS"
# We can link X programs with no special library path.
ac_x_libraries=
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  LIBS="$ac_save_LIBS"
# First see if replacing the include by lib works.
# Check X11 before X11Rn because it is often a symlink to the current release.
for ac_dir in `echo "$ac_x_includes" | sed s/include/lib/` \
    /usr/X11/lib          \
    /usr/X11R6/lib        \
    /usr/X11R5/lib        \
    /usr/X11R4/lib        \
                          \
    /usr/lib/X11          \
    /usr/lib/X11R6        \
    /usr/lib/X11R5        \
    /usr/lib/X11R4        \
                          \
    /usr/local/X11/lib    \
    /usr/local/X11R6/lib  \
    /usr/local/X11R5/lib  \
    /usr/local/X11R4/lib  \
                          \
    /usr/local/lib/X11    \
    /usr/local/lib/X11R6  \
    /usr/local/lib/X11R5  \
    /usr/local/lib/X11R4  \
                          \
    /usr/X386/lib         \
    /usr/x386/lib         \
    /usr/XFree86/lib/X11  \
                          \
    /usr/lib              \
    /usr/local/lib        \
    /usr/unsupported/lib  \
    /usr/athena/lib       \
    /usr/local/x11r5/lib  \
    /usr/lpp/Xamples/lib  \
    /lib/usr/lib/X11	  \
                          \
    /usr/openwin/lib      \
    /usr/openwin/share/lib \
    ; \
do
  for ac_extension in a so sl; do
    if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then
      ac_x_libraries=$ac_dir
      break 2
    fi
  done
done
fi
rm -f conftest*
fi # $ac_x_libraries = NO

if test "$ac_x_includes" = NO || test "$ac_x_libraries" = NO; then
  # Didn't find X anywhere.  Cache the known absence of X.
  ac_cv_have_x="have_x=no"
else
  # Record where we found X for the cache.
  ac_cv_have_x="have_x=yes \
	        ac_x_includes=$ac_x_includes ac_x_libraries=$ac_x_libraries"
fi
fi
  fi
  eval "$ac_cv_have_x"
fi # $with_x != no

if test "$have_x" != yes; then
  echo "$ac_t""$have_x" 1>&6
  no_x=yes
else
  # If each of the values was on the command line, it overrides each guess.
  test "x$x_includes" = xNONE && x_includes=$ac_x_includes
  test "x$x_libraries" = xNONE && x_libraries=$ac_x_libraries
  # Update the cache value to reflect the command line values.
  ac_cv_have_x="have_x=yes \
		ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
  echo "$ac_t""libraries $x_libraries, headers $x_includes" 1>&6
fi

if test "$no_x" = yes; then
  # Not all programs may use this symbol, but it does not hurt to define it.
  cat >> confdefs.h <<\EOF
#define X_DISPLAY_MISSING 1
EOF

  X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
else
  if test -n "$x_includes"; then
    X_CFLAGS="$X_CFLAGS -I$x_includes"
  fi

  # It would also be nice to do this for all -L options, not just this one.
  if test -n "$x_libraries"; then
    X_LIBS="$X_LIBS -L$x_libraries"
    # For Solaris; some versions of Sun CC require a space after -R and
    # others require no space.  Words are not sufficient . . . .
    case "`(uname -sr) 2>/dev/null`" in
    "SunOS 5"*)
      echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6
7077
echo "configure:7078: checking whether -R must be followed by a space" >&5
7078 7079
      ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries"
      cat > conftest.$ac_ext <<EOF
7080
#line 7081 "configure"
7081 7082 7083 7084 7085 7086
#include "confdefs.h"

int main() {

; return 0; }
EOF
7087
if { (eval echo configure:7088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102
  rm -rf conftest*
  ac_R_nospace=yes
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  ac_R_nospace=no
fi
rm -f conftest*
      if test $ac_R_nospace = yes; then
	echo "$ac_t""no" 1>&6
	X_LIBS="$X_LIBS -R$x_libraries"
      else
	LIBS="$ac_xsave_LIBS -R $x_libraries"
	cat > conftest.$ac_ext <<EOF
7103
#line 7104 "configure"
7104 7105 7106 7107 7108 7109
#include "confdefs.h"

int main() {

; return 0; }
EOF
7110
if { (eval echo configure:7111: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141
  rm -rf conftest*
  ac_R_space=yes
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  ac_R_space=no
fi
rm -f conftest*
	if test $ac_R_space = yes; then
	  echo "$ac_t""yes" 1>&6
	  X_LIBS="$X_LIBS -R $x_libraries"
	else
	  echo "$ac_t""neither works" 1>&6
	fi
      fi
      LIBS="$ac_xsave_LIBS"
    esac
  fi

  # Check for system-dependent libraries X programs must link with.
  # Do this before checking for the system-independent R6 libraries
  # (-lICE), since we may need -lsocket or whatever for X linking.

  if test "$ISC" = yes; then
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet"
  else
    # Martyn.Johnson@cl.cam.ac.uk says this is needed for Ultrix, if the X
    # libraries were built with DECnet support.  And karl@cs.umb.edu says
    # the Alpha needs dnet_stub (dnet does not exist).
    echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6
7142
echo "configure:7143: checking for dnet_ntoa in -ldnet" >&5
7143 7144 7145 7146 7147 7148 7149
ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-ldnet  $LIBS"
cat > conftest.$ac_ext <<EOF
7150
#line 7151 "configure"
7151 7152 7153 7154 7155 7156 7157 7158 7159 7160
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char dnet_ntoa();

int main() {
dnet_ntoa()
; return 0; }
EOF
7161
if { (eval echo configure:7162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
else
  echo "$ac_t""no" 1>&6
fi

    if test $ac_cv_lib_dnet_dnet_ntoa = no; then
      echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6
7183
echo "configure:7184: checking for dnet_ntoa in -ldnet_stub" >&5
7184 7185 7186 7187 7188 7189 7190
ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-ldnet_stub  $LIBS"
cat > conftest.$ac_ext <<EOF
7191
#line 7192 "configure"
7192 7193 7194 7195 7196 7197 7198 7199 7200 7201
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char dnet_ntoa();

int main() {
dnet_ntoa()
; return 0; }
EOF
7202
if { (eval echo configure:7203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
else
  echo "$ac_t""no" 1>&6
fi

    fi

    # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
    # to get the SysV transport functions.
    # chad@anasazi.com says the Pyramis MIS-ES running DC/OSx (SVR4)
    # needs -lnsl.
    # The nsl library prevents programs from opening the X display
    # on Irix 5.2, according to dickey@clark.net.
    echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6
7231
echo "configure:7232: checking for gethostbyname" >&5
7232 7233 7234 7235
if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
7236
#line 7237 "configure"
7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char gethostbyname(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char gethostbyname();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_gethostbyname) || defined (__stub___gethostbyname)
choke me
#else
gethostbyname();
#endif

; return 0; }
EOF
7259
if { (eval echo configure:7260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279
  rm -rf conftest*
  eval "ac_cv_func_gethostbyname=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_gethostbyname=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'gethostbyname`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  :
else
  echo "$ac_t""no" 1>&6
fi

    if test $ac_cv_func_gethostbyname = no; then
      echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
7280
echo "configure:7281: checking for gethostbyname in -lnsl" >&5
7281 7282 7283 7284 7285 7286 7287
ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lnsl  $LIBS"
cat > conftest.$ac_ext <<EOF
7288
#line 7289 "configure"
7289 7290 7291 7292 7293 7294 7295 7296 7297 7298
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char gethostbyname();

int main() {
gethostbyname()
; return 0; }
EOF
7299
if { (eval echo configure:7300: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
else
  echo "$ac_t""no" 1>&6
fi

    fi

    # lieder@skyler.mavd.honeywell.com says without -lsocket,
    # socket/setsockopt and other routines are undefined under SCO ODT
    # 2.0.  But -lsocket is broken on IRIX 5.2 (and is not necessary
    # on later versions), says simon@lia.di.epfl.ch: it contains
    # gethostby* variants that don't use the nameserver (or something).
    # -lsocket must be given before -lnsl if both are needed.
    # We assume that if connect needs -lnsl, so does gethostbyname.
    echo $ac_n "checking for connect""... $ac_c" 1>&6
7329
echo "configure:7330: checking for connect" >&5
7330 7331 7332 7333
if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
7334
#line 7335 "configure"
7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char connect(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char connect();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_connect) || defined (__stub___connect)
choke me
#else
connect();
#endif

; return 0; }
EOF
7357
if { (eval echo configure:7358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377
  rm -rf conftest*
  eval "ac_cv_func_connect=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_connect=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'connect`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  :
else
  echo "$ac_t""no" 1>&6
fi

    if test $ac_cv_func_connect = no; then
      echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6
7378
echo "configure:7379: checking for connect in -lsocket" >&5
7379 7380 7381 7382 7383 7384 7385
ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
cat > conftest.$ac_ext <<EOF
7386
#line 7387 "configure"
7387 7388 7389 7390 7391 7392 7393 7394 7395 7396
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char connect();

int main() {
connect()
; return 0; }
EOF
7397
if { (eval echo configure:7398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
else
  echo "$ac_t""no" 1>&6
fi

    fi

    # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX.
    echo $ac_n "checking for remove""... $ac_c" 1>&6
7421
echo "configure:7422: checking for remove" >&5
7422 7423 7424 7425
if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
7426
#line 7427 "configure"
7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char remove(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char remove();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_remove) || defined (__stub___remove)
choke me
#else
remove();
#endif

; return 0; }
EOF
7449
if { (eval echo configure:7450: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469
  rm -rf conftest*
  eval "ac_cv_func_remove=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_remove=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'remove`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  :
else
  echo "$ac_t""no" 1>&6
fi

    if test $ac_cv_func_remove = no; then
      echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6
7470
echo "configure:7471: checking for remove in -lposix" >&5
7471 7472 7473 7474 7475 7476 7477
ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lposix  $LIBS"
cat > conftest.$ac_ext <<EOF
7478
#line 7479 "configure"
7479 7480 7481 7482 7483 7484 7485 7486 7487 7488
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char remove();

int main() {
remove()
; return 0; }
EOF
7489
if { (eval echo configure:7490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
else
  echo "$ac_t""no" 1>&6
fi

    fi

    # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
    echo $ac_n "checking for shmat""... $ac_c" 1>&6
7513
echo "configure:7514: checking for shmat" >&5
7514 7515 7516 7517
if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  cat > conftest.$ac_ext <<EOF
7518
#line 7519 "configure"
7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char shmat(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char shmat();

int main() {

/* The GNU C library defines this for functions which it implements
    to always fail with ENOSYS.  Some functions are actually named
    something starting with __ and the normal name is an alias.  */
#if defined (__stub_shmat) || defined (__stub___shmat)
choke me
#else
shmat();
#endif

; return 0; }
EOF
7541
if { (eval echo configure:7542: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561
  rm -rf conftest*
  eval "ac_cv_func_shmat=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_func_shmat=no"
fi
rm -f conftest*
fi

if eval "test \"`echo '$ac_cv_func_'shmat`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  :
else
  echo "$ac_t""no" 1>&6
fi

    if test $ac_cv_func_shmat = no; then
      echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6
7562
echo "configure:7563: checking for shmat in -lipc" >&5
7563 7564 7565 7566 7567 7568 7569
ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lipc  $LIBS"
cat > conftest.$ac_ext <<EOF
7570
#line 7571 "configure"
7571 7572 7573 7574 7575 7576 7577 7578 7579 7580
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char shmat();

int main() {
shmat()
; return 0; }
EOF
7581
if { (eval echo configure:7582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
else
  echo "$ac_t""no" 1>&6
fi

    fi
  fi

  # Check for libraries that X11R6 Xt/Xaw programs need.
  ac_save_LDFLAGS="$LDFLAGS"
  test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries"
  # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
  # check for ICE first), but we must link in the order -lSM -lICE or
  # we get undefined symbols.  So assume we have SM if we have ICE.
  # These have to be linked with before -lX11, unlike the other
  # libraries we check for below, so use a different variable.
  #  --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
  echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6
7614
echo "configure:7615: checking for IceConnectionNumber in -lICE" >&5
7615 7616 7617 7618 7619
ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
7620
LIBS="-lICE $X_EXTRA_LIBS $LIBS"
7621
cat > conftest.$ac_ext <<EOF
7622
#line 7623 "configure"
7623 7624 7625 7626 7627 7628 7629 7630 7631 7632
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char IceConnectionNumber();

int main() {
IceConnectionNumber()
; return 0; }
EOF
7633
if { (eval echo configure:7634: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
else
  echo "$ac_t""no" 1>&6
fi

  LDFLAGS="$ac_save_LDFLAGS"

fi


B
Bruce Momjian 已提交
7658 7659 7660 7661
	LIBS="$LIBS $X_EXTRA_LIBS"
	CFLAGS="$CFLAGS $X_CFLAGS"
	CPPFLAGS="$CPPFLAGS $X_CFLAGS"
	LDFLAGS="$LDFLAGS $X_LIBS"
7662

B
Bruce Momjian 已提交
7663 7664 7665
	
	X11_LIBS=""
	echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6
7666
echo "configure:7667: checking for XOpenDisplay in -lX11" >&5
7667 7668 7669 7670 7671 7672 7673
ac_lib_var=`echo X11'_'XOpenDisplay | sed 'y%./+-%__p_%'`
if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
  echo $ac_n "(cached) $ac_c" 1>&6
else
  ac_save_LIBS="$LIBS"
LIBS="-lX11 ${X_PRE_LIBS} $LIBS"
cat > conftest.$ac_ext <<EOF
7674
#line 7675 "configure"
7675 7676 7677 7678 7679 7680 7681 7682 7683 7684
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char XOpenDisplay();

int main() {
XOpenDisplay()
; return 0; }
EOF
7685
if { (eval echo configure:7686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=yes"
else
  echo "configure: failed program was:" >&5
  cat conftest.$ac_ext >&5
  rm -rf conftest*
  eval "ac_cv_lib_$ac_lib_var=no"
fi
rm -f conftest*
LIBS="$ac_save_LIBS"

fi
if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
  echo "$ac_t""yes" 1>&6
  X11_LIBS="-lX11"
else
  echo "$ac_t""no" 1>&6
fi

B
Bruce Momjian 已提交
7705
	if test "$X11_LIBS" = ""; then
7706 7707 7708 7709 7710 7711
				echo "configure: warning: The X11 library '-lX11' could not be found,
so TK support will be disabled.  To enable TK support,
please use the configure options '--x-includes=DIR'
and '--x-libraries=DIR' to specify the X location.
See the file 'config.log' for further diagnostics." 1>&2
		USE_TK=
B
Bruce Momjian 已提交
7712 7713 7714 7715
	fi
	
	
	
7716

B
Bruce Momjian 已提交
7717 7718 7719 7720
	LIBS="$ice_save_LIBS"
	CFLAGS="$ice_save_CFLAGS"
	CPPFLAGS="$ice_save_CPPFLAGS"
	LDFLAGS="$ice_save_LDFLAGS"
7721 7722
fi

7723

7724 7725 7726 7727 7728 7729
# Wait with these until we're done so no tests fail because of too
# many warnings.
if test x"$GCC" = x"yes" ; then
  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wmissing-declarations"
fi

7730

7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747
trap '' 1 2 15
cat > confcache <<\EOF
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
# scripts and configure runs.  It is not useful on other systems.
# If it contains results you don't want to keep, you may remove or edit it.
#
# By default, configure uses ./config.cache as the cache file,
# creating it if it does not exist already.  You can give configure
# the --cache-file=FILE option to use a different cache file; that is
# what configure does when it calls configure scripts in
# subdirectories, so they share the cache.
# Giving --cache-file=/dev/null disables caching, for debugging configure.
# config.status only pays attention to the cache file if you give it the
# --recheck option to rerun configure.
#
EOF
7748 7749 7750
# The following way of writing the cache mishandles newlines in values,
# but we know of no workaround that is simple, portable, and efficient.
# So, don't put newlines in cache variables' values.
7751 7752 7753
# Ultrix sh set writes to stderr and can't be redirected directly,
# and sets the high bit in the cache file unless we assign to the vars.
(set) 2>&1 |
7754
  case `(ac_space=' '; set | grep ac_space) 2>&1` in
7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766
  *ac_space=\ *)
    # `set' does not quote correctly, so add quotes (double-quote substitution
    # turns \\\\ into \\, and sed turns \\ into \).
    sed -n \
      -e "s/'/'\\\\''/g" \
      -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
    ;;
  *)
    # `set' quotes correctly as required by POSIX, so do not add quotes.
    sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
    ;;
  esac >> confcache
7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820
if cmp -s $cache_file confcache; then
  :
else
  if test -w $cache_file; then
    echo "updating cache $cache_file"
    cat confcache > $cache_file
  else
    echo "not updating unwritable cache $cache_file"
  fi
fi
rm -f confcache

trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15

test "x$prefix" = xNONE && prefix=$ac_default_prefix
# Let make expand exec_prefix.
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'

# Any assignment to VPATH causes Sun make to only execute
# the first set of double-colon rules, so remove it if not needed.
# If there is a colon in the path, we need to keep it.
if test "x$srcdir" = x.; then
  ac_vpsub='/^[ 	]*VPATH[ 	]*=[^:]*$/d'
fi

trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15

DEFS=-DHAVE_CONFIG_H

# Without the "./", some shells look in PATH for config.status.
: ${CONFIG_STATUS=./config.status}

echo creating $CONFIG_STATUS
rm -f $CONFIG_STATUS
cat > $CONFIG_STATUS <<EOF
#! /bin/sh
# Generated automatically by configure.
# Run this file to recreate the current configuration.
# This directory was configured as follows,
# on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
#
# $0 $ac_configure_args
#
# Compiler output produced by configure, useful for debugging
# configure, is in ./config.log if it exists.

ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
for ac_option
do
  case "\$ac_option" in
  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
    echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
    exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
7821
    echo "$CONFIG_STATUS generated by autoconf version 2.13"
7822 7823 7824 7825 7826 7827 7828 7829
    exit 0 ;;
  -help | --help | --hel | --he | --h)
    echo "\$ac_cs_usage"; exit 0 ;;
  *) echo "\$ac_cs_usage"; exit 1 ;;
  esac
done

ac_given_srcdir=$srcdir
7830
ac_given_INSTALL="$INSTALL"
7831

B
 
Bruce Momjian 已提交
7832
trap 'rm -fr `echo "GNUmakefile
7833 7834 7835 7836 7837
	src/GNUmakefile
	src/Makefile.global
	src/backend/port/Makefile
	src/test/regress/GNUmakefile
 src/include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
7838 7839 7840 7841 7842 7843 7844 7845
EOF
cat >> $CONFIG_STATUS <<EOF

# Protect against being on the right side of a sed subst in config.status.
sed 's/%@/@@/; s/@%/@@/; s/%g\$/@g/; /@g\$/s/[\\\\&%]/\\\\&/g;
 s/@@/%@/; s/@@/@%/; s/@g\$/%g/' > conftest.subs <<\\CEOF
$ac_vpsub
$extrasub
7846
s%@SHELL@%$SHELL%g
7847 7848 7849
s%@CFLAGS@%$CFLAGS%g
s%@CPPFLAGS@%$CPPFLAGS%g
s%@CXXFLAGS@%$CXXFLAGS%g
7850
s%@FFLAGS@%$FFLAGS%g
7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868
s%@DEFS@%$DEFS%g
s%@LDFLAGS@%$LDFLAGS%g
s%@LIBS@%$LIBS%g
s%@exec_prefix@%$exec_prefix%g
s%@prefix@%$prefix%g
s%@program_transform_name@%$program_transform_name%g
s%@bindir@%$bindir%g
s%@sbindir@%$sbindir%g
s%@libexecdir@%$libexecdir%g
s%@datadir@%$datadir%g
s%@sysconfdir@%$sysconfdir%g
s%@sharedstatedir@%$sharedstatedir%g
s%@localstatedir@%$localstatedir%g
s%@libdir@%$libdir%g
s%@includedir@%$includedir%g
s%@oldincludedir@%$oldincludedir%g
s%@infodir@%$infodir%g
s%@mandir@%$mandir%g
7869
s%@VERSION@%$VERSION%g
7870 7871 7872 7873 7874
s%@host@%$host%g
s%@host_alias@%$host_alias%g
s%@host_cpu@%$host_cpu%g
s%@host_vendor@%$host_vendor%g
s%@host_os@%$host_os%g
7875 7876
s%@PORTNAME@%$PORTNAME%g
s%@CPU@%$CPU%g
7877
s%@TAS@%$TAS%g
7878
s%@MULTIBYTE@%$MULTIBYTE%g
7879 7880
s%@CC@%$CC%g
s%@CPP@%$CPP%g
7881
s%@GCC@%$GCC%g
7882 7883 7884 7885 7886 7887 7888
s%@AROPT@%$AROPT%g
s%@SHARED_LIB@%$SHARED_LIB%g
s%@DLSUFFIX@%$DLSUFFIX%g
s%@DL_LIB@%$DL_LIB%g
s%@INCLUDES@%$INCLUDES%g
s%@USE_TCL@%$USE_TCL%g
s%@USE_TK@%$USE_TK%g
7889 7890 7891 7892 7893 7894 7895 7896 7897
s%@with_perl@%$with_perl%g
s%@PYTHON@%$PYTHON%g
s%@python_version@%$python_version%g
s%@python_prefix@%$python_prefix%g
s%@python_execprefix@%$python_execprefix%g
s%@python_configdir@%$python_configdir%g
s%@python_moduledir@%$python_moduledir%g
s%@python_extmakefile@%$python_extmakefile%g
s%@with_python@%$with_python%g
7898 7899 7900
s%@with_krb4@%$with_krb4%g
s%@with_krb5@%$with_krb5%g
s%@KRB_LIBS@%$KRB_LIBS%g
7901 7902
s%@krb_srvtab@%$krb_srvtab%g
s%@with_openssl@%$with_openssl%g
7903 7904
s%@enable_odbc@%$enable_odbc%g
s%@odbcinst_ini_dir@%$odbcinst_ini_dir%g
M
 
Marc G. Fournier 已提交
7905
s%@ELF_SYS@%$ELF_SYS%g
7906
s%@CXX@%$CXX%g
7907 7908
s%@CXXCPP@%$CXXCPP%g
s%@with_CXX@%$with_CXX%g
7909
s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
7910
s%@INSTALL_SCRIPT@%$INSTALL_SCRIPT%g
7911
s%@INSTALL_DATA@%$INSTALL_DATA%g
7912
s%@INSTALL_SHLIB@%$INSTALL_SHLIB%g
7913
s%@mkinstalldirs@%$mkinstalldirs%g
7914
s%@AWK@%$AWK%g
7915 7916 7917 7918 7919
s%@LEX@%$LEX%g
s%@LEXLIB@%$LEXLIB%g
s%@LN_S@%$LN_S%g
s%@RANLIB@%$RANLIB%g
s%@tar@%$tar%g
7920
s%@PERL@%$PERL%g
7921
s%@YACC@%$YACC%g
7922
s%@YFLAGS@%$YFLAGS%g
M
 
Marc G. Fournier 已提交
7923
s%@SNPRINTF@%$SNPRINTF%g
7924
s%@ISINF@%$ISINF%g
7925 7926
s%@GETRUSAGE@%$GETRUSAGE%g
s%@SRANDOM@%$SRANDOM%g
7927
s%@GETHOSTNAME@%$GETHOSTNAME%g
7928
s%@MISSING_RANDOM@%$MISSING_RANDOM%g
7929
s%@INET_ATON@%$INET_ATON%g
B
Bruce Momjian 已提交
7930 7931
s%@STRERROR@%$STRERROR%g
s%@STRERROR2@%$STRERROR2%g
7932
s%@STRDUP@%$STRDUP%g
M
Marc G. Fournier 已提交
7933 7934
s%@STRTOL@%$STRTOL%g
s%@STRTOUL@%$STRTOUL%g
7935
s%@STRCASECMP@%$STRCASECMP%g
7936
s%@HPUXMATHLIB@%$HPUXMATHLIB%g
7937
s%@HAVE_RL_COMPLETION_APPEND_CHARACTER@%$HAVE_RL_COMPLETION_APPEND_CHARACTER%g
P
Peter Eisentraut 已提交
7938 7939
s%@HAVE_FILENAME_COMPLETION_FUNCTION@%$HAVE_FILENAME_COMPLETION_FUNCTION%g
s%@HAVE_FILENAME_COMPLETION_FUNCTION_DECL@%$HAVE_FILENAME_COMPLETION_FUNCTION_DECL%g
7940
s%@HAVE_POSIX_SIGNALS@%$HAVE_POSIX_SIGNALS%g
B
Bruce Momjian 已提交
7941 7942 7943
s%@TCLSH@%$TCLSH%g
s%@TCL_CONFIG_SH@%$TCL_CONFIG_SH%g
s%@TK_CONFIG_SH@%$TK_CONFIG_SH%g
7944
s%@WISH@%$WISH%g
7945 7946 7947 7948 7949
s%@X_CFLAGS@%$X_CFLAGS%g
s%@X_PRE_LIBS@%$X_PRE_LIBS%g
s%@X_LIBS@%$X_LIBS%g
s%@X_EXTRA_LIBS@%$X_EXTRA_LIBS%g
s%@X11_LIBS@%$X11_LIBS%g
7950 7951 7952

CEOF
EOF
7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988

cat >> $CONFIG_STATUS <<\EOF

# Split the substitutions into bite-sized pieces for seds with
# small command number limits, like on Digital OSF/1 and HP-UX.
ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
ac_file=1 # Number of current file.
ac_beg=1 # First line for current file.
ac_end=$ac_max_sed_cmds # Line after last line for current file.
ac_more_lines=:
ac_sed_cmds=""
while $ac_more_lines; do
  if test $ac_beg -gt 1; then
    sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
  else
    sed "${ac_end}q" conftest.subs > conftest.s$ac_file
  fi
  if test ! -s conftest.s$ac_file; then
    ac_more_lines=false
    rm -f conftest.s$ac_file
  else
    if test -z "$ac_sed_cmds"; then
      ac_sed_cmds="sed -f conftest.s$ac_file"
    else
      ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
    fi
    ac_file=`expr $ac_file + 1`
    ac_beg=$ac_end
    ac_end=`expr $ac_end + $ac_max_sed_cmds`
  fi
done
if test -z "$ac_sed_cmds"; then
  ac_sed_cmds=cat
fi
EOF

7989 7990
cat >> $CONFIG_STATUS <<EOF

B
 
Bruce Momjian 已提交
7991
CONFIG_FILES=\${CONFIG_FILES-"GNUmakefile
7992 7993 7994 7995
	src/GNUmakefile
	src/Makefile.global
	src/backend/port/Makefile
	src/test/regress/GNUmakefile
B
 
Bruce Momjian 已提交
7996
"}
7997 7998 7999
EOF
cat >> $CONFIG_STATUS <<\EOF
for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
8000
  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
8001
  case "$ac_file" in
8002
  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
8003 8004 8005 8006
       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  *) ac_file_in="${ac_file}.in" ;;
  esac

8007
  # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030

  # Remove last slash and all that follows it.  Not all systems have dirname.
  ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
    # The file is in a subdirectory.
    test ! -d "$ac_dir" && mkdir "$ac_dir"
    ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
    # A "../" for each directory in $ac_dir_suffix.
    ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  else
    ac_dir_suffix= ac_dots=
  fi

  case "$ac_given_srcdir" in
  .)  srcdir=.
      if test -z "$ac_dots"; then top_srcdir=.
      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  *) # Relative path.
    srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
    top_srcdir="$ac_dots$ac_given_srcdir" ;;
  esac

8031 8032 8033 8034
  case "$ac_given_INSTALL" in
  [/$]*) INSTALL="$ac_given_INSTALL" ;;
  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
  esac
8035

8036 8037 8038 8039 8040 8041 8042 8043
  echo creating "$ac_file"
  rm -f "$ac_file"
  configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  case "$ac_file" in
  *Makefile*) ac_comsub="1i\\
# $configure_input" ;;
  *) ac_comsub= ;;
  esac
8044 8045

  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
8046 8047 8048 8049
  sed -e "$ac_comsub
s%@configure_input@%$configure_input%g
s%@srcdir@%$srcdir%g
s%@top_srcdir@%$top_srcdir%g
8050
s%@INSTALL@%$INSTALL%g
8051
" $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
8052
fi; done
8053
rm -f conftest.s*
8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073

# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
# NAME is the cpp macro being defined and VALUE is the value it is being given.
#
# ac_d sets the value in "#define NAME VALUE" lines.
ac_dA='s%^\([ 	]*\)#\([ 	]*define[ 	][ 	]*\)'
ac_dB='\([ 	][ 	]*\)[^ 	]*%\1#\2'
ac_dC='\3'
ac_dD='%g'
# ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE".
ac_uA='s%^\([ 	]*\)#\([ 	]*\)undef\([ 	][ 	]*\)'
ac_uB='\([ 	]\)%\1#\2define\3'
ac_uC=' '
ac_uD='\4%g'
# ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
ac_eA='s%^\([ 	]*\)#\([ 	]*\)undef\([ 	][ 	]*\)'
ac_eB='$%\1#\2define\3'
ac_eC=' '
ac_eD='%g'

8074 8075 8076
if test "${CONFIG_HEADERS+set}" != set; then
EOF
cat >> $CONFIG_STATUS <<EOF
8077
  CONFIG_HEADERS="src/include/config.h"
8078 8079 8080
EOF
cat >> $CONFIG_STATUS <<\EOF
fi
8081
for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then
8082
  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
8083
  case "$ac_file" in
8084
  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
8085 8086 8087 8088 8089 8090 8091
       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  *) ac_file_in="${ac_file}.in" ;;
  esac

  echo creating $ac_file

  rm -f conftest.frag conftest.in conftest.out
8092 8093
  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
  cat $ac_file_inputs > conftest.in
8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161

EOF

# Transform confdefs.h into a sed script conftest.vals that substitutes
# the proper values into config.h.in to produce config.h.  And first:
# Protect against being on the right side of a sed subst in config.status.
# Protect against being in an unquoted here document in config.status.
rm -f conftest.vals
cat > conftest.hdr <<\EOF
s/[\\&%]/\\&/g
s%[\\$`]%\\&%g
s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD}%gp
s%ac_d%ac_u%gp
s%ac_u%ac_e%gp
EOF
sed -n -f conftest.hdr confdefs.h > conftest.vals
rm -f conftest.hdr

# This sed command replaces #undef with comments.  This is necessary, for
# example, in the case of _POSIX_SOURCE, which is predefined and required
# on some systems where configure will not decide to define it.
cat >> conftest.vals <<\EOF
s%^[ 	]*#[ 	]*undef[ 	][ 	]*[a-zA-Z_][a-zA-Z_0-9]*%/* & */%
EOF

# Break up conftest.vals because some shells have a limit on
# the size of here documents, and old seds have small limits too.

rm -f conftest.tail
while :
do
  ac_lines=`grep -c . conftest.vals`
  # grep -c gives empty output for an empty file on some AIX systems.
  if test -z "$ac_lines" || test "$ac_lines" -eq 0; then break; fi
  # Write a limited-size here document to conftest.frag.
  echo '  cat > conftest.frag <<CEOF' >> $CONFIG_STATUS
  sed ${ac_max_here_lines}q conftest.vals >> $CONFIG_STATUS
  echo 'CEOF
  sed -f conftest.frag conftest.in > conftest.out
  rm -f conftest.in
  mv conftest.out conftest.in
' >> $CONFIG_STATUS
  sed 1,${ac_max_here_lines}d conftest.vals > conftest.tail
  rm -f conftest.vals
  mv conftest.tail conftest.vals
done
rm -f conftest.vals

cat >> $CONFIG_STATUS <<\EOF
  rm -f conftest.frag conftest.h
  echo "/* $ac_file.  Generated automatically by configure.  */" > conftest.h
  cat conftest.in >> conftest.h
  rm -f conftest.in
  if cmp -s $ac_file conftest.h 2>/dev/null; then
    echo "$ac_file is unchanged"
    rm -f conftest.h
  else
    # Remove last slash and all that follows it.  Not all systems have dirname.
      ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
      if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
      # The file is in a subdirectory.
      test ! -d "$ac_dir" && mkdir "$ac_dir"
    fi
    rm -f $ac_file
    mv conftest.h $ac_file
  fi
fi; done

8162 8163 8164
EOF

cat >> $CONFIG_STATUS <<EOF
8165
ac_sources="src/backend/port/dynloader/${template}.c src/backend/port/dynloader/${template}.h src/include/port/${template}.h src/makefiles/Makefile.${template} src/backend/port/tas/${tas_file}"
8166
ac_dests="src/backend/port/dynloader.c src/include/dynloader.h src/include/os.h src/Makefile.port src/backend/port/tas.s"
8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206
EOF

cat >> $CONFIG_STATUS <<\EOF
srcdir=$ac_given_srcdir
while test -n "$ac_sources"; do
  set $ac_dests; ac_dest=$1; shift; ac_dests=$*
  set $ac_sources; ac_source=$1; shift; ac_sources=$*

  echo "linking $srcdir/$ac_source to $ac_dest"

  if test ! -r $srcdir/$ac_source; then
    { echo "configure: error: $srcdir/$ac_source: File not found" 1>&2; exit 1; }
  fi
  rm -f $ac_dest

  # Make relative symlinks.
  # Remove last slash and all that follows it.  Not all systems have dirname.
  ac_dest_dir=`echo $ac_dest|sed 's%/[^/][^/]*$%%'`
  if test "$ac_dest_dir" != "$ac_dest" && test "$ac_dest_dir" != .; then
    # The dest file is in a subdirectory.
    test ! -d "$ac_dest_dir" && mkdir "$ac_dest_dir"
    ac_dest_dir_suffix="/`echo $ac_dest_dir|sed 's%^\./%%'`"
    # A "../" for each directory in $ac_dest_dir_suffix.
    ac_dots=`echo $ac_dest_dir_suffix|sed 's%/[^/]*%../%g'`
  else
    ac_dest_dir_suffix= ac_dots=
  fi

  case "$srcdir" in
  [/$]*) ac_rel_source="$srcdir/$ac_source" ;;
  *) ac_rel_source="$ac_dots$srcdir/$ac_source" ;;
  esac

  # Make a symlink if possible; otherwise try a hard link.
  if ln -s $ac_rel_source $ac_dest 2>/dev/null ||
    ln $srcdir/$ac_source $ac_dest; then :
  else
    { echo "configure: error: can not link $ac_dest to $srcdir/$ac_source" 1>&2; exit 1; }
  fi
done
8207 8208
EOF
cat >> $CONFIG_STATUS <<EOF
8209

8210 8211
EOF
cat >> $CONFIG_STATUS <<\EOF
8212 8213 8214 8215 8216 8217

exit 0
EOF
chmod +x $CONFIG_STATUS
rm -fr confdefs* $ac_clean_files
test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1
B
Bruce Momjian 已提交
8218