configure 531.9 KB
Newer Older
1 2
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
3
# Generated by GNU Autoconf 2.69 for Greenplum Database 6.0.0-alpha.0.
4
#
5
# Report bugs to <support@greenplum.org>.
6 7 8
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
9
#
10 11 12
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
13
#
14 15 16 17
# Copyright (c) 1996-2010, PostgreSQL Global Development Group
## -------------------- ##
## M4sh Initialization. ##
## -------------------- ##
18

19 20 21
# Be more Bourne compatible
DUALCASE=1; export DUALCASE # for MKS sh
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
22 23
  emulate sh
  NULLCMD=:
24
  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
25 26
  # is contrary to our usage.  Disable this feature.
  alias -g '${1+"$@"}'='"$@"'
27 28 29 30 31 32 33 34
  setopt NO_GLOB_SUBST
else
  case `(set -o) 2>/dev/null` in #(
  *posix*) :
    set -o posix ;; #(
  *) :
     ;;
esac
35 36
fi

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

as_nl='
'
export as_nl
# Printing a long string crashes Solaris 7 /usr/bin/printf.
as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
# Prefer a ksh shell builtin over an external printf program on Solaris,
# but without wasting forks for bash or zsh.
if test -z "$BASH_VERSION$ZSH_VERSION" \
    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  as_echo='print -r --'
  as_echo_n='print -rn --'
elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  as_echo='printf %s\n'
  as_echo_n='printf %s'
else
  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
    as_echo_n='/usr/ucb/echo -n'
  else
    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
    as_echo_n_body='eval
      arg=$1;
      case $arg in #(
      *"$as_nl"*)
	expr "X$arg" : "X\\(.*\\)$as_nl";
	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
      esac;
      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
    '
    export as_echo_n_body
    as_echo_n='sh -c $as_echo_n_body as_echo'
  fi
  export as_echo_body
  as_echo='sh -c $as_echo_body as_echo'
fi

# The user is always right.
if test "${PATH_SEPARATOR+set}" != set; then
  PATH_SEPARATOR=:
  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
      PATH_SEPARATOR=';'
  }
83 84
fi

85

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
# IFS
# We need space, tab and new line, in precisely that order.  Quoting is
# there to prevent editors from complaining about space-tab.
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
# splitting by setting IFS to empty value.)
IFS=" ""	$as_nl"

# Find who we are.  Look in the path if we contain no directory separator.
as_myself=
case $0 in #((
  *[\\/]* ) as_myself=$0 ;;
  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  done
IFS=$as_save_IFS

     ;;
esac
# We did not find ourselves, most probably we were run as `sh COMMAND'
# in which case we are not to be found in the path.
if test "x$as_myself" = x; then
  as_myself=$0
fi
if test ! -f "$as_myself"; then
  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  exit 1
fi

# Unset variables that we do not need and which cause bugs (e.g. in
# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
# suppresses any "Segmentation fault" message there.  '((' could
# trigger a bug in pdksh 5.2.14.
for as_var in BASH_ENV ENV MAIL MAILPATH
do eval test x\${$as_var+set} = xset \
  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
done
126 127 128 129 130
PS1='$ '
PS2='> '
PS4='+ '

# NLS nuisances.
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
LC_ALL=C
export LC_ALL
LANGUAGE=C
export LANGUAGE

# CDPATH.
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH

# Use a proper internal environment variable to ensure we don't fall
  # into an infinite loop, continuously re-executing ourselves.
  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
    _as_can_reexec=no; export _as_can_reexec;
    # We cannot yet assume a decent shell, so we have to provide a
# neutralization value for shells without unset; and this also
# works around shells that cannot unset nonexistent variables.
# Preserve -v and -x to the replacement shell.
BASH_ENV=/dev/null
ENV=/dev/null
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
case $- in # ((((
  *v*x* | *x*v* ) as_opts=-vx ;;
  *v* ) as_opts=-v ;;
  *x* ) as_opts=-x ;;
  * ) as_opts= ;;
esac
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
# Admittedly, this is quite paranoid, since all the known shells bail
# out after a failed `exec'.
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
as_fn_exit 255
  fi
  # We don't want this to propagate to other subprocesses.
          { _as_can_reexec=; unset _as_can_reexec;}
if test "x$CONFIG_SHELL" = x; then
  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
  emulate sh
  NULLCMD=:
  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
  # is contrary to our usage.  Disable this feature.
  alias -g '\${1+\"\$@\"}'='\"\$@\"'
  setopt NO_GLOB_SUBST
else
  case \`(set -o) 2>/dev/null\` in #(
  *posix*) :
    set -o posix ;; #(
  *) :
     ;;
esac
fi
"
  as_required="as_fn_return () { (exit \$1); }
as_fn_success () { as_fn_return 0; }
as_fn_failure () { as_fn_return 1; }
as_fn_ret_success () { return 0; }
as_fn_ret_failure () { return 1; }

exitcode=0
as_fn_success || { exitcode=1; echo as_fn_success failed.; }
as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :

else
  exitcode=1; echo positional parameters were not saved.
fi
test x\$exitcode = x0 || exit 1
test -x / || exit 1"
  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
test \$(( 1 + 1 )) = 2 || exit 1"
  if (eval "$as_required") 2>/dev/null; then :
  as_have_required=yes
else
  as_have_required=no
fi
  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :

else
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
as_found=false
for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
215
do
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
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
  as_found=:
  case $as_dir in #(
	 /*)
	   for as_base in sh bash ksh sh5; do
	     # Try only shells that exist, to save several forks.
	     as_shell=$as_dir/$as_base
	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
  CONFIG_SHELL=$as_shell as_have_required=yes
		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
  break 2
fi
fi
	   done;;
       esac
  as_found=false
done
$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
  CONFIG_SHELL=$SHELL as_have_required=yes
fi; }
IFS=$as_save_IFS


      if test "x$CONFIG_SHELL" != x; then :
  export CONFIG_SHELL
             # We cannot yet assume a decent shell, so we have to provide a
# neutralization value for shells without unset; and this also
# works around shells that cannot unset nonexistent variables.
# Preserve -v and -x to the replacement shell.
BASH_ENV=/dev/null
ENV=/dev/null
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
case $- in # ((((
  *v*x* | *x*v* ) as_opts=-vx ;;
  *v* ) as_opts=-v ;;
  *x* ) as_opts=-x ;;
  * ) as_opts= ;;
esac
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
# Admittedly, this is quite paranoid, since all the known shells bail
# out after a failed `exec'.
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
exit 255
fi

    if test x$as_have_required = xno; then :
  $as_echo "$0: This script requires a shell more modern than all"
  $as_echo "$0: the shells that I found on your system."
  if test x${ZSH_VERSION+set} = xset ; then
    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
270
  else
271
    $as_echo "$0: Please tell bug-autoconf@gnu.org and
272 273 274 275
$0: support@greenplum.org about your system, including any
$0: error possibly output before this message. Then install
$0: a modern shell, or manually run the script under such a
$0: shell if you do have one."
276
  fi
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 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
  exit 1
fi
fi
fi
SHELL=${CONFIG_SHELL-/bin/sh}
export SHELL
# Unset more variables known to interfere with behavior of common tools.
CLICOLOR_FORCE= GREP_OPTIONS=
unset CLICOLOR_FORCE GREP_OPTIONS

## --------------------- ##
## M4sh Shell Functions. ##
## --------------------- ##
# as_fn_unset VAR
# ---------------
# Portably unset VAR.
as_fn_unset ()
{
  { eval $1=; unset $1;}
}
as_unset=as_fn_unset

# as_fn_set_status STATUS
# -----------------------
# Set $? to STATUS, without forking.
as_fn_set_status ()
{
  return $1
} # as_fn_set_status

# as_fn_exit STATUS
# -----------------
# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
as_fn_exit ()
{
  set +e
  as_fn_set_status $1
  exit $1
} # as_fn_exit

# as_fn_mkdir_p
# -------------
# Create "$as_dir" as a directory, including parents if necessary.
as_fn_mkdir_p ()
{

  case $as_dir in #(
  -*) as_dir=./$as_dir;;
  esac
  test -d "$as_dir" || eval $as_mkdir_p || {
    as_dirs=
    while :; do
      case $as_dir in #(
      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
      *) as_qdir=$as_dir;;
      esac
      as_dirs="'$as_qdir' $as_dirs"
      as_dir=`$as_dirname -- "$as_dir" ||
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
	 X"$as_dir" : 'X\(//\)[^/]' \| \
	 X"$as_dir" : 'X\(//\)$' \| \
	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X"$as_dir" |
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)[^/].*/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
      test -d "$as_dir" && break
    done
    test -z "$as_dirs" || eval "mkdir $as_dirs"
  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"


} # as_fn_mkdir_p

# as_fn_executable_p FILE
# -----------------------
# Test if FILE is an executable regular file.
as_fn_executable_p ()
{
  test -f "$1" && test -x "$1"
} # as_fn_executable_p
# as_fn_append VAR VALUE
# ----------------------
# Append the text in VALUE to the end of the definition contained in VAR. Take
# advantage of any shell optimizations that allow amortized linear growth over
# repeated appends, instead of the typical quadratic growth present in naive
# implementations.
if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  eval 'as_fn_append ()
  {
    eval $1+=\$2
  }'
else
  as_fn_append ()
  {
    eval $1=\$$1\$2
  }
fi # as_fn_append

# as_fn_arith ARG...
# ------------------
# Perform arithmetic evaluation on the ARGs, and store the result in the
# global $as_val. Take advantage of shells that can avoid forks. The arguments
# must be portable across $(()) and expr.
if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  eval 'as_fn_arith ()
  {
    as_val=$(( $* ))
  }'
else
  as_fn_arith ()
  {
    as_val=`expr "$@" || test $? -eq 1`
  }
fi # as_fn_arith

407

408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
# as_fn_error STATUS ERROR [LINENO LOG_FD]
# ----------------------------------------
# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
# script with STATUS, using 1 if that was 0.
as_fn_error ()
{
  as_status=$1; test $as_status -eq 0 && as_status=1
  if test "$4"; then
    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
  fi
  $as_echo "$as_me: error: $2" >&2
  as_fn_exit $as_status
} # as_fn_error

if expr a : '\(a\)' >/dev/null 2>&1 &&
   test "X`expr 00001 : '.*\(...\)'`" = X001; then
426 427 428 429 430
  as_expr=expr
else
  as_expr=false
fi

431
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
432 433 434 435
  as_basename=basename
else
  as_basename=false
fi
436

437 438 439 440 441
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  as_dirname=dirname
else
  as_dirname=false
fi
442

443
as_me=`$as_basename -- "$0" ||
444 445
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
	 X"$0" : 'X\(//\)$' \| \
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X/"$0" |
    sed '/^.*\/\([^/][^/]*\)\/*$/{
	    s//\1/
	    q
	  }
	  /^X\/\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\/\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
461

M
Michael Meskes 已提交
462 463 464 465 466 467
# Avoid depending upon Character Ranges.
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
as_cr_digits='0123456789'
as_cr_alnum=$as_cr_Letters$as_cr_digits
468

469

470 471 472 473 474 475 476 477 478
  as_lineno_1=$LINENO as_lineno_1a=$LINENO
  as_lineno_2=$LINENO as_lineno_2a=$LINENO
  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
  sed -n '
    p
    /[$]LINENO/=
  ' <$as_myself |
479
    sed '
480 481 482 483
      s/[$]LINENO.*/&-/
      t lineno
      b
      :lineno
484
      N
485 486
      :loop
      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
487
      t loop
488
      s/-\n.*//
489
    ' >$as_me.lineno &&
490 491
  chmod +x "$as_me.lineno" ||
    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
492

493 494 495 496
  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
  # already done that, so ensure we don't try to do so again and fall
  # in an infinite loop.  This has already happened in practice.
  _as_can_reexec=no; export _as_can_reexec
497 498
  # Don't try to exec as it changes $[0], causing all sort of problems
  # (the dirname of $[0] is not the place where we might find the
499 500
  # original and so on.  Autoconf is especially sensitive to this).
  . "./$as_me.lineno"
501 502 503 504
  # Exit status is that of the last command.
  exit
}

505 506 507 508 509 510 511 512 513 514 515
ECHO_C= ECHO_N= ECHO_T=
case `echo -n x` in #(((((
-n*)
  case `echo 'xy\c'` in
  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
  xy)  ECHO_C='\c';;
  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
       ECHO_T='	';;
  esac;;
*)
  ECHO_N='-n';;
516
esac
517

518 519 520
rm -f conf$$ conf$$.exe conf$$.file
if test -d conf$$.dir; then
  rm -f conf$$.dir/conf$$.file
521
else
522 523
  rm -f conf$$.dir
  mkdir conf$$.dir 2>/dev/null
524
fi
525 526
if (echo >conf$$.file) 2>/dev/null; then
  if ln -s conf$$.file conf$$ 2>/dev/null; then
M
Michael Meskes 已提交
527
    as_ln_s='ln -s'
528 529 530 531 532 533 534 535 536 537
    # ... but there are two gotchas:
    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
    # In both cases, we have to default to `cp -pR'.
    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
      as_ln_s='cp -pR'
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
    as_ln_s='cp -pR'
M
Michael Meskes 已提交
538
  fi
539
else
540
  as_ln_s='cp -pR'
541
fi
542 543
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
544

545
if mkdir -p . 2>/dev/null; then
546
  as_mkdir_p='mkdir -p "$as_dir"'
547 548 549 550 551
else
  test -d ./-p && rmdir ./-p
  as_mkdir_p=false
fi

552 553
as_test_x='test -x'
as_executable_p=as_fn_executable_p
554 555

# Sed expression to map a string onto a valid CPP name.
556
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
557 558

# Sed expression to map a string onto a valid variable name.
559
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
560 561


562 563
test -n "$DJDIR" || exec 7<&0 </dev/null
exec 6>&1
564 565

# Name of the host.
566
# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
567 568 569 570 571 572
# so uname gets run too.
ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`

#
# Initializations.
#
573
ac_default_prefix=/usr/local
574
ac_clean_files=
575
ac_config_libobj_dir=.
576
LIBOBJS=
577 578 579 580
cross_compiling=no
subdirs=
MFLAGS=
MAKEFLAGS=
M
Michael Meskes 已提交
581

582
# Identity of this package.
583 584
PACKAGE_NAME='Greenplum Database'
PACKAGE_TARNAME='greenplum-database'
585 586
PACKAGE_VERSION='6.0.0-alpha.0'
PACKAGE_STRING='Greenplum Database 6.0.0-alpha.0'
587
PACKAGE_BUGREPORT='support@greenplum.org'
588
PACKAGE_URL=''
589 590

ac_unique_file="src/backend/access/common/heaptuple.c"
E
Ed Espino 已提交
591
ac_default_prefix=/usr/local/gpdb
592 593 594
# Factoring default headers for most tests.
ac_includes_default="\
#include <stdio.h>
595
#ifdef HAVE_SYS_TYPES_H
596 597
# include <sys/types.h>
#endif
598
#ifdef HAVE_SYS_STAT_H
599 600
# include <sys/stat.h>
#endif
601
#ifdef STDC_HEADERS
602 603 604
# include <stdlib.h>
# include <stddef.h>
#else
605
# ifdef HAVE_STDLIB_H
606 607 608
#  include <stdlib.h>
# endif
#endif
609 610
#ifdef HAVE_STRING_H
# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
611 612 613 614
#  include <memory.h>
# endif
# include <string.h>
#endif
615
#ifdef HAVE_STRINGS_H
616 617
# include <strings.h>
#endif
618
#ifdef HAVE_INTTYPES_H
619 620
# include <inttypes.h>
#endif
621 622 623 624
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#ifdef HAVE_UNISTD_H
625 626 627
# include <unistd.h>
#endif"

628 629
ac_subst_vars='LTLIBOBJS
vpath_build
630
PROVE
631
DOCBOOK2MAN
632 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
SGMLSPL
COLLATEINDEX
DOCBOOKSTYLE
have_docbook
JADE
NSGMLS
TCL_SHLIB_LD_LIBS
TCL_SHARED_BUILD
TCL_LIB_SPEC
TCL_LIBS
TCL_LIB_FILE
TCL_INCLUDE_SPEC
TCL_CONFIG_SH
TCLSH
XGETTEXT
MSGMERGE
MSGFMT
enable_largefile
HAVE_POSIX_SIGNALS
LDAP_LIBS_BE
LDAP_LIBS_FE
PTHREAD_CFLAGS
PTHREAD_LIBS
PTHREAD_CC
acx_pthread_config
LIBOBJS
HAVE_IPV6
659
CXXCPP
660
OSSP_UUID_LIBS
661 662 663
CURL_LIBS
CURL_CFLAGS
CURL_CONFIG
664 665 666 667
with_libsigar
apu_link_ld_libs
apu_includes
APU_1_CONFIG
M
Marbin Tan 已提交
668
have_yaml
669 670 671 672 673
apr_cppflags
apr_cflags
apr_link_ld_libs
apr_includes
APR_1_CONFIG
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
ADDON_DIR
ZIC
python_additional_libs
python_libspec
python_libdir
python_includespec
python_configdir
python_version
python_majorversion
PYTHON
perl_embed_ldflags
perl_useshrplib
perl_privlibexp
perl_archlibexp
PERL
FLEXFLAGS
FLEX
BISONFLAGS
BISON
MKDIR_P
AWK
LN_S
TAR
WINDRES
DLLWRAP
DLLTOOL
AR
STRIP_SHARED_LIB
STRIP_STATIC_LIB
STRIP
RANLIB
ld_R_works
with_gnu_ld
LD
LDFLAGS_SL
LDFLAGS_EX
ELF_SYS
711 712
EGREP
GREP
713
with_apu_config
714
with_apr_config
715 716
with_libcurl
with_rt
717
with_libbz2
718 719
with_zlib
with_system_tzdata
720
with_libxslt
721 722
with_libxml
XML2_CONFIG
723
with_ossp_uuid
724 725 726 727 728 729 730 731 732 733 734 735
with_openssl
with_bonjour
with_ldap
with_pam
krb_srvtab
with_krb5
with_gssapi
with_python
with_perl
with_tcl
enable_thread_safety
INCLUDES
736
enable_segwalrep
A
Adam Lee 已提交
737 738
HAVE_CXX11
enable_gpcloud
739
enable_mapreduce
740 741 742
enable_netbackup
enable_ddboost
enable_snmp
743 744
CMAKE
enable_codegen
745 746 747 748
enable_orca
autodepend
TAS
GP_MAJORVERSION
749
GP_VERSION_SHORT
750 751 752
BLD_ARCH
GCC
CPP
753
CFLAGS_VECTOR
754 755
PG_CRC32C_OBJS
CFLAGS_SSE42
756
SUN_STUDIO_CC
757 758 759
ac_ct_CXX
CXXFLAGS
CXX
760 761 762 763 764 765 766
OBJEXT
EXEEXT
ac_ct_CC
CPPFLAGS
LDFLAGS
CFLAGS
CC
767
enable_tap_tests
768 769 770 771 772 773 774 775 776
enable_dtrace
DTRACEFLAGS
DTRACE
enable_coverage
GENHTML
LCOV
GCOV
enable_profiling
enable_debug
777
enable_gpperfmon
778
enable_pxf
779
enable_gpfdist
780 781 782 783 784 785 786 787 788 789 790 791 792 793
enable_rpath
enable_shared
default_port
PORTNAME
host_os
host_vendor
host_cpu
host
build_os
build_vendor
build_cpu
build
PG_MAJORVERSION
configure_args
794
PG_PACKAGE_VERSION
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
target_alias
host_alias
build_alias
LIBS
ECHO_T
ECHO_N
ECHO_C
DEFS
mandir
localedir
libdir
psdir
pdfdir
dvidir
htmldir
infodir
docdir
oldincludedir
includedir
localstatedir
sharedstatedir
sysconfdir
datadir
datarootdir
libexecdir
sbindir
bindir
program_transform_name
prefix
exec_prefix
PACKAGE_URL
PACKAGE_BUGREPORT
PACKAGE_STRING
PACKAGE_VERSION
PACKAGE_TARNAME
PACKAGE_NAME
PATH_SEPARATOR
SHELL'
833
ac_subst_files=''
834 835
ac_user_opts='
enable_option_checking
836
with_extra_version
837 838 839 840 841 842 843 844 845
with_template
with_includes
with_libraries
with_libs
enable_integer_datetimes
with_pgport
enable_shared
enable_rpath
enable_spinlocks
846
enable_atomics
847
enable_gpfdist
848
enable_pxf
849
enable_gpperfmon
850 851 852 853
enable_debug
enable_profiling
enable_coverage
enable_dtrace
854
enable_tap_tests
855 856
with_blocksize
with_segsize
857 858
with_wal_blocksize
with_wal_segsize
859 860 861 862 863 864 865
with_CC
enable_depend
enable_cassert
enable_debugbreak
enable_debugntuplestore
enable_testutils
enable_orca
866 867
enable_codegen
with_codegen_prefix
868 869 870
enable_snmp
enable_ddboost
enable_netbackup
871
enable_mapreduce
A
Adam Lee 已提交
872
enable_gpcloud
873
enable_segwalrep
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
enable_thread_safety
enable_thread_safety_force
with_tcl
with_tclconfig
with_perl
with_python
with_gssapi
with_krb5
with_krb_srvnam
with_pam
with_ldap
with_bonjour
with_openssl
with_readline
with_libedit_preferred
889
with_ossp_uuid
890
with_libxml
891
with_libxslt
892 893
with_system_tzdata
with_zlib
894
with_libbz2
895 896
with_rt
with_libcurl
897
with_apr_config
898
with_apu_config
899 900 901 902 903 904 905 906 907 908 909
with_gnu_ld
enable_largefile
'
      ac_precious_vars='build_alias
host_alias
target_alias
CC
CFLAGS
LDFLAGS
LIBS
CPPFLAGS
910 911 912
CXX
CXXFLAGS
CCC
913 914 915
CPP
LDFLAGS_EX
LDFLAGS_SL
916
CXXCPP
917 918
DOCBOOKSTYLE'

919 920

# Initialize some variables set by options.
921 922
ac_init_help=
ac_init_version=false
923 924
ac_unrecognized_opts=
ac_unrecognized_sep=
925 926
# The variables have the same names as the options, with
# dashes changed to underlines.
927
cache_file=/dev/null
928 929 930 931 932 933 934 935 936 937 938 939 940
exec_prefix=NONE
no_create=
no_recursion=
prefix=NONE
program_prefix=NONE
program_suffix=NONE
program_transform_name=s,x,x,
silent=
site=
srcdir=
verbose=
x_includes=NONE
x_libraries=NONE
941 942 943 944 945 946

# Installation directory options.
# These are left unexpanded so users can "make install exec_prefix=/foo"
# and all the variables that are supposed to be based on exec_prefix
# by default will actually change.
# Use braces instead of parens because sh, perl, etc. also accept them.
947
# (The list follows the same order as the GNU Coding Standards.)
948 949 950
bindir='${exec_prefix}/bin'
sbindir='${exec_prefix}/sbin'
libexecdir='${exec_prefix}/libexec'
951 952
datarootdir='${prefix}/share'
datadir='${datarootdir}'
953 954 955 956 957
sysconfdir='${prefix}/etc'
sharedstatedir='${prefix}/com'
localstatedir='${prefix}/var'
includedir='${prefix}/include'
oldincludedir='/usr/include'
958 959 960 961 962 963 964 965 966
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
infodir='${datarootdir}/info'
htmldir='${docdir}'
dvidir='${docdir}'
pdfdir='${docdir}'
psdir='${docdir}'
libdir='${exec_prefix}/lib'
localedir='${datarootdir}/locale'
mandir='${datarootdir}/man'
967 968

ac_prev=
969
ac_dashdash=
970 971 972 973
for ac_option
do
  # If the previous option needs an argument, assign it.
  if test -n "$ac_prev"; then
974
    eval $ac_prev=\$ac_option
975 976 977 978
    ac_prev=
    continue
  fi

979 980 981 982 983
  case $ac_option in
  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  *=)   ac_optarg= ;;
  *)    ac_optarg=yes ;;
  esac
984 985 986

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

987 988 989
  case $ac_dashdash$ac_option in
  --)
    ac_dashdash=yes ;;
990 991 992 993

  -bindir | --bindir | --bindi | --bind | --bin | --bi)
    ac_prev=bindir ;;
  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
994
    bindir=$ac_optarg ;;
995 996

  -build | --build | --buil | --bui | --bu)
997
    ac_prev=build_alias ;;
998
  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
999
    build_alias=$ac_optarg ;;
1000 1001 1002 1003 1004 1005

  -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=*)
1006 1007 1008 1009
    cache_file=$ac_optarg ;;

  --config-cache | -C)
    cache_file=config.cache ;;
1010

1011
  -datadir | --datadir | --datadi | --datad)
1012
    ac_prev=datadir ;;
1013
  -datadir=* | --datadir=* | --datadi=* | --datad=*)
1014
    datadir=$ac_optarg ;;
1015

1016 1017 1018 1019 1020 1021 1022
  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
  | --dataroo | --dataro | --datar)
    ac_prev=datarootdir ;;
  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
    datarootdir=$ac_optarg ;;

1023
  -disable-* | --disable-*)
1024
    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1025
    # Reject names that are not valid shell variable names.
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
      as_fn_error $? "invalid feature name: $ac_useropt"
    ac_useropt_orig=$ac_useropt
    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
    case $ac_user_opts in
      *"
"enable_$ac_useropt"
"*) ;;
      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
	 ac_unrecognized_sep=', ';;
    esac
    eval enable_$ac_useropt=no ;;

  -docdir | --docdir | --docdi | --doc | --do)
    ac_prev=docdir ;;
  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
    docdir=$ac_optarg ;;

  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
    ac_prev=dvidir ;;
  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
    dvidir=$ac_optarg ;;
1048 1049

  -enable-* | --enable-*)
1050
    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1051
    # Reject names that are not valid shell variable names.
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
      as_fn_error $? "invalid feature name: $ac_useropt"
    ac_useropt_orig=$ac_useropt
    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
    case $ac_user_opts in
      *"
"enable_$ac_useropt"
"*) ;;
      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
	 ac_unrecognized_sep=', ';;
M
Michael Meskes 已提交
1062
    esac
1063
    eval enable_$ac_useropt=\$ac_optarg ;;
1064 1065 1066 1067 1068 1069 1070 1071

  -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=*)
1072
    exec_prefix=$ac_optarg ;;
1073 1074 1075 1076 1077

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

1078 1079 1080 1081 1082 1083
  -help | --help | --hel | --he | -h)
    ac_init_help=long ;;
  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
    ac_init_help=recursive ;;
  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
    ac_init_help=short ;;
1084 1085

  -host | --host | --hos | --ho)
1086
    ac_prev=host_alias ;;
1087
  -host=* | --host=* | --hos=* | --ho=*)
1088
    host_alias=$ac_optarg ;;
1089

1090 1091 1092 1093 1094 1095
  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
    ac_prev=htmldir ;;
  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
  | --ht=*)
    htmldir=$ac_optarg ;;

1096 1097 1098 1099 1100
  -includedir | --includedir | --includedi | --included | --include \
  | --includ | --inclu | --incl | --inc)
    ac_prev=includedir ;;
  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  | --includ=* | --inclu=* | --incl=* | --inc=*)
1101
    includedir=$ac_optarg ;;
1102

1103 1104 1105 1106
  -infodir | --infodir | --infodi | --infod | --info | --inf)
    ac_prev=infodir ;;
  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
    infodir=$ac_optarg ;;
1107 1108 1109 1110

  -libdir | --libdir | --libdi | --libd)
    ac_prev=libdir ;;
  -libdir=* | --libdir=* | --libdi=* | --libd=*)
1111
    libdir=$ac_optarg ;;
1112 1113 1114 1115 1116 1117

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

1120 1121 1122 1123 1124
  -localedir | --localedir | --localedi | --localed | --locale)
    ac_prev=localedir ;;
  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
    localedir=$ac_optarg ;;

1125
  -localstatedir | --localstatedir | --localstatedi | --localstated \
1126
  | --localstate | --localstat | --localsta | --localst | --locals)
1127 1128
    ac_prev=localstatedir ;;
  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
1129
  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
1130
    localstatedir=$ac_optarg ;;
1131 1132 1133 1134

  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
    ac_prev=mandir ;;
  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
1135
    mandir=$ac_optarg ;;
1136 1137 1138 1139 1140 1141

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

  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
1142
  | --no-cr | --no-c | -n)
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
    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=*)
1156
    oldincludedir=$ac_optarg ;;
1157 1158 1159 1160

  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
    ac_prev=prefix ;;
  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
1161
    prefix=$ac_optarg ;;
1162 1163 1164 1165 1166 1167

  -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=*)
1168
    program_prefix=$ac_optarg ;;
1169 1170 1171 1172 1173 1174

  -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=*)
1175
    program_suffix=$ac_optarg ;;
1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191

  -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=*)
1192
    program_transform_name=$ac_optarg ;;
1193

1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
    ac_prev=pdfdir ;;
  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
    pdfdir=$ac_optarg ;;

  -psdir | --psdir | --psdi | --psd | --ps)
    ac_prev=psdir ;;
  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
    psdir=$ac_optarg ;;

1204 1205 1206 1207 1208 1209 1210 1211
  -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=*)
1212
    sbindir=$ac_optarg ;;
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222

  -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=*)
1223
    sharedstatedir=$ac_optarg ;;
1224 1225 1226 1227

  -site | --site | --sit)
    ac_prev=site ;;
  -site=* | --site=* | --sit=*)
1228
    site=$ac_optarg ;;
1229 1230 1231 1232

  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
    ac_prev=srcdir ;;
  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
1233
    srcdir=$ac_optarg ;;
1234 1235 1236 1237 1238 1239

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

  -target | --target | --targe | --targ | --tar | --ta | --t)
1243
    ac_prev=target_alias ;;
1244
  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
1245
    target_alias=$ac_optarg ;;
1246 1247 1248 1249

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

1250 1251
  -version | --version | --versio | --versi | --vers | -V)
    ac_init_version=: ;;
1252 1253

  -with-* | --with-*)
1254
    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1255
    # Reject names that are not valid shell variable names.
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
      as_fn_error $? "invalid package name: $ac_useropt"
    ac_useropt_orig=$ac_useropt
    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
    case $ac_user_opts in
      *"
"with_$ac_useropt"
"*) ;;
      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
	 ac_unrecognized_sep=', ';;
M
Michael Meskes 已提交
1266
    esac
1267
    eval with_$ac_useropt=\$ac_optarg ;;
1268 1269

  -without-* | --without-*)
1270
    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1271
    # Reject names that are not valid shell variable names.
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
      as_fn_error $? "invalid package name: $ac_useropt"
    ac_useropt_orig=$ac_useropt
    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
    case $ac_user_opts in
      *"
"with_$ac_useropt"
"*) ;;
      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
	 ac_unrecognized_sep=', ';;
    esac
    eval with_$ac_useropt=no ;;
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293

  --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=*)
1294
    x_includes=$ac_optarg ;;
1295 1296 1297 1298 1299 1300

  -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=*)
1301
    x_libraries=$ac_optarg ;;
1302

1303 1304
  -*) as_fn_error $? "unrecognized option: \`$ac_option'
Try \`$0 --help' for more information"
1305 1306
    ;;

1307 1308 1309
  *=*)
    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
    # Reject names that are not valid shell variable names.
1310 1311 1312 1313 1314
    case $ac_envvar in #(
      '' | [0-9]* | *[!_$as_cr_alnum]* )
      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
    esac
    eval $ac_envvar=\$ac_optarg
1315 1316
    export $ac_envvar ;;

1317
  *)
1318
    # FIXME: should be removed in autoconf 3.0.
1319
    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1320
    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1321 1322
      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1323 1324 1325 1326 1327 1328
    ;;

  esac
done

if test -n "$ac_prev"; then
1329
  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1330
  as_fn_error $? "missing argument to $ac_option"
1331 1332
fi

1333 1334 1335 1336 1337
if test -n "$ac_unrecognized_opts"; then
  case $enable_option_checking in
    no) ;;
    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
M
Michael Meskes 已提交
1338
  esac
1339
fi
M
Michael Meskes 已提交
1340

1341 1342 1343 1344 1345
# Check all directory arguments for consistency.
for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
		datadir sysconfdir sharedstatedir localstatedir includedir \
		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
		libdir localedir mandir
M
Michael Meskes 已提交
1346
do
1347 1348 1349 1350 1351 1352 1353 1354
  eval ac_val=\$$ac_var
  # Remove trailing slashes.
  case $ac_val in
    */ )
      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
      eval $ac_var=\$ac_val;;
  esac
  # Be sure to have absolute directory names.
M
Michael Meskes 已提交
1355
  case $ac_val in
1356 1357
    [\\/$]* | ?:[\\/]* )  continue;;
    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1358
  esac
1359
  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1360 1361
done

1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
# There might be people who depend on the old broken behavior: `$host'
# used to hold the argument of --host etc.
# FIXME: To remove some day.
build=$build_alias
host=$host_alias
target=$target_alias

# FIXME: To remove some day.
if test "x$host_alias" != x; then
  if test "x$build_alias" = x; then
    cross_compiling=maybe
  elif test "x$build_alias" != "x$host_alias"; then
    cross_compiling=yes
  fi
fi
1377

1378 1379 1380 1381
ac_tool_prefix=
test -n "$host_alias" && ac_tool_prefix=$host_alias-

test "$silent" = yes && exec 6>/dev/null
1382 1383


1384 1385 1386 1387 1388 1389 1390 1391
ac_pwd=`pwd` && test -n "$ac_pwd" &&
ac_ls_di=`ls -di .` &&
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
  as_fn_error $? "working directory cannot be determined"
test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
  as_fn_error $? "pwd does not report name of working directory"


1392 1393 1394
# Find the source files, if location was not specified.
if test -z "$srcdir"; then
  ac_srcdir_defaulted=yes
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
  # Try the directory containing this script, then the parent directory.
  ac_confdir=`$as_dirname -- "$as_myself" ||
$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
	 X"$as_myself" : 'X\(//\)[^/]' \| \
	 X"$as_myself" : 'X\(//\)$' \| \
	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X"$as_myself" |
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)[^/].*/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
1419
  srcdir=$ac_confdir
1420
  if test ! -r "$srcdir/$ac_unique_file"; then
1421 1422 1423 1424 1425
    srcdir=..
  fi
else
  ac_srcdir_defaulted=no
fi
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
if test ! -r "$srcdir/$ac_unique_file"; then
  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
fi
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
ac_abs_confdir=`(
	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
	pwd)`
# When building in place, set srcdir=.
if test "$ac_abs_confdir" = "$ac_pwd"; then
  srcdir=.
fi
# Remove unnecessary trailing slashes from srcdir.
# Double slashes in file names in object file debugging info
# mess up M-x gdb in Emacs.
case $srcdir in
*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
esac
for ac_var in $ac_precious_vars; do
  eval ac_env_${ac_var}_set=\${${ac_var}+set}
  eval ac_env_${ac_var}_value=\$${ac_var}
  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
  eval ac_cv_env_${ac_var}_value=\$${ac_var}
done
1450 1451 1452 1453 1454 1455 1456 1457

#
# Report the --help message.
#
if test "$ac_init_help" = "long"; then
  # 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 <<_ACEOF
1458
\`configure' configures Greenplum Database 6.0.0-alpha.0 to adapt to many kinds of systems.
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471

Usage: $0 [OPTION]... [VAR=VALUE]...

To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE.  See below for descriptions of some of the useful variables.

Defaults for the options are specified in brackets.

Configuration:
  -h, --help              display this help and exit
      --help=short        display options specific to this package
      --help=recursive    display the short help of all the included packages
  -V, --version           display version information and exit
1472
  -q, --quiet, --silent   do not print \`checking ...' messages
1473 1474 1475 1476 1477 1478 1479
      --cache-file=FILE   cache test results in FILE [disabled]
  -C, --config-cache      alias for \`--cache-file=config.cache'
  -n, --no-create         do not create output files
      --srcdir=DIR        find the sources in DIR [configure dir or \`..']

Installation directories:
  --prefix=PREFIX         install architecture-independent files in PREFIX
1480
                          [$ac_default_prefix]
1481
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1482
                          [PREFIX]
1483 1484 1485 1486 1487 1488 1489 1490 1491

By default, \`make install' will install all the files in
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
an installation prefix other than \`$ac_default_prefix' using \`--prefix',
for instance \`--prefix=\$HOME'.

For better control, use the options below.

Fine tuning of the installation directories:
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
  --bindir=DIR            user executables [EPREFIX/bin]
  --sbindir=DIR           system admin executables [EPREFIX/sbin]
  --libexecdir=DIR        program executables [EPREFIX/libexec]
  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
  --libdir=DIR            object code libraries [EPREFIX/lib]
  --includedir=DIR        C header files [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
  --infodir=DIR           info documentation [DATAROOTDIR/info]
  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
  --mandir=DIR            man documentation [DATAROOTDIR/man]
1506 1507
  --docdir=DIR            documentation root
                          [DATAROOTDIR/doc/greenplum-database]
1508 1509 1510 1511
  --htmldir=DIR           html documentation [DOCDIR]
  --dvidir=DIR            dvi documentation [DOCDIR]
  --pdfdir=DIR            pdf documentation [DOCDIR]
  --psdir=DIR             ps documentation [DOCDIR]
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
_ACEOF

  cat <<\_ACEOF

System types:
  --build=BUILD     configure for building on BUILD [guessed]
  --host=HOST       cross-compile to build programs to run on HOST [BUILD]
_ACEOF
fi

if test -n "$ac_init_help"; then
  case $ac_init_help in
1524
     short | recursive ) echo "Configuration of Greenplum Database 6.0.0-alpha.0:";;
1525 1526 1527 1528
   esac
  cat <<\_ACEOF

Optional Features:
1529
  --disable-option-checking  ignore unrecognized --enable/--with options
1530 1531
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1532 1533
  --disable-integer-datetimes
                          disable 64-bit integer date/time support
1534
  --disable-shared        do not build shared libraries
1535 1536
  --disable-rpath         do not embed shared library search path in
                          executables
1537
  --disable-spinlocks     do not use spinlocks
1538
  --disable-atomics       do not use atomic operations
1539
  --disable-gpfdist       do not use gpfdist
1540
  --disable-pxf           do not build pxf
1541
  --enable-gpperfmon      build with gpperfmon
1542
  --enable-debug          build with debugging symbols (-g)
1543
  --enable-profiling      build with profiling enabled
1544
  --enable-coverage       build with coverage testing instrumentation
1545
  --enable-dtrace         build with DTrace support
L
Larry Hamel 已提交
1546
  --enable-tap-tests      enable TAP tests (requires Perl and IPC::Run)
1547 1548
  --enable-depend         turn on automatic dependency tracking
  --enable-cassert        enable assertion checks (for debugging)
1549
  --enable-debugbreak     enable debug_break and debug_break_n (for debugging)
1550 1551
  --enable-debugntuplestore
                          enable debug_ntuplestore (for debugging)
1552
  --enable-testutils      enable testing utilities
1553
  --disable-orca          disable ORCA optimizer
1554
  --enable-codegen        enable code generation
1555 1556 1557
  --enable-snmp           enable snmp for MIB and alerts via TRAP/INFORM
  --enable-ddboost        enable DD Boost support
  --enable-netbackup      enable NetBackup support
1558
  --enable-mapreduce      enable Greenplum Mapreduce support
A
Adam Lee 已提交
1559
  --disable-gpcloud       disable gpcloud support
1560
  --enable-segwalrep      enable segment WAL replication
1561
  --disable-thread-safety do not make client libraries thread-safe
1562 1563
  --enable-thread-safety-force
                          force thread-safety despite thread test failure
P
Peter Eisentraut 已提交
1564
  --disable-largefile     omit support for large files
1565 1566 1567 1568

Optional Packages:
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1569 1570
  --with-extra-version=STRING
                          append STRING to version
1571
  --with-template=NAME    override operating system template
1572 1573 1574
  --with-includes=DIRS    look for additional header files in DIRS
  --with-libraries=DIRS   look for additional libraries in DIRS
  --with-libs=DIRS        alternative spelling of --with-libraries
1575
  --with-pgport=PORTNUM   set default port number [5432]
1576 1577
  --with-blocksize=BLOCKSIZE
                          set table block size in kB [8]
1578
  --with-segsize=SEGSIZE  set table segment size in GB [1]
1579 1580 1581 1582 1583
  --with-wal-blocksize=BLOCKSIZE
                          set WAL block size in kB [8]
  --with-wal-segsize=SEGSIZE
                          set WAL segment size in MB [16]
  --with-CC=CMD           set compiler (deprecated)
1584 1585 1586
  --with-codegen-prefix="PATH;PATH"
                          semicolon separated prefix search path for LLVM and
                          Clang
1587
  --with-tcl              build Tcl modules (PL/Tcl)
P
 
PostgreSQL Daemon 已提交
1588
  --with-tclconfig=DIR    tclConfig.sh is in DIR
1589
  --with-perl             build Perl modules (PL/Perl)
1590
  --with-python           build Python modules (PL/Python)
1591
  --with-gssapi           build with GSSAPI support
1592
  --with-krb5             build with Kerberos 5 support
1593 1594
  --with-krb-srvnam=NAME  default service principal name in Kerberos
                          [postgres]
1595
  --with-pam              build with PAM support
1596
  --with-ldap             build with LDAP support
1597
  --with-bonjour          build with Bonjour support
1598
  --with-openssl          build with OpenSSL support
1599
  --without-readline      do not use GNU Readline nor BSD Libedit for editing
1600 1601
  --without-libedit-preferred
                          do not prefer BSD Libedit over GNU Readline
1602 1603
  --with-ossp-uuid        use OSSP UUID library when building
                          contrib/uuid-ossp
1604
  --with-libxml           build with XML support
1605
  --with-libxslt          use XSLT support when building contrib/xml2
1606 1607
  --with-system-tzdata=DIR
                          use system time zone data in DIR
1608
  --without-zlib          do not use Zlib
1609
  --without-libbz2        do not use bzip2
1610 1611
  --without-rt            do not use Realtime Library
  --without-libcurl       do not use libcurl
1612
  --with-apr-config=PATH  path to apr-1-config utility
1613
  --with-apu-config=PATH  path to apu-1-config utility
1614
  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]
1615 1616 1617 1618 1619 1620

Some influential environment variables:
  CC          C compiler command
  CFLAGS      C compiler flags
  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
              nonstandard directory <lib dir>
1621 1622 1623
  LIBS        libraries to pass to the linker, e.g. -l<library>
  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
              you have headers in a nonstandard directory <include dir>
1624 1625
  CXX         C++ compiler command
  CXXFLAGS    C++ compiler flags
1626
  CPP         C preprocessor
1627 1628
  LDFLAGS_EX  extra linker flags for linking executables only
  LDFLAGS_SL  extra linker flags for linking shared libraries only
1629
  CXXCPP      C++ preprocessor
1630 1631
  DOCBOOKSTYLE
              location of DocBook stylesheets
1632 1633 1634 1635

Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.

1636
Report bugs to <support@greenplum.org>.
1637
_ACEOF
1638
ac_status=$?
1639 1640 1641 1642 1643
fi

if test "$ac_init_help" = "recursive"; then
  # If there are subdirs, report their specific --help.
  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1644 1645 1646
    test -d "$ac_dir" ||
      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
      continue
1647 1648
    ac_builddir=.

1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
case "$ac_dir" in
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
*)
  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  # A ".." for each directory in $ac_dir_suffix.
  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  case $ac_top_builddir_sub in
  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  esac ;;
esac
ac_abs_top_builddir=$ac_pwd
ac_abs_builddir=$ac_pwd$ac_dir_suffix
# for backward compatibility:
ac_top_builddir=$ac_top_build_prefix
1664 1665

case $srcdir in
1666
  .)  # We are building in place.
1667
    ac_srcdir=.
1668 1669 1670
    ac_top_srcdir=$ac_top_builddir_sub
    ac_abs_top_srcdir=$ac_pwd ;;
  [\\/]* | ?:[\\/]* )  # Absolute name.
1671
    ac_srcdir=$srcdir$ac_dir_suffix;
1672 1673 1674 1675 1676 1677
    ac_top_srcdir=$srcdir
    ac_abs_top_srcdir=$srcdir ;;
  *) # Relative name.
    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
    ac_top_srcdir=$ac_top_build_prefix$srcdir
    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
M
Michael Meskes 已提交
1678
esac
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix

    cd "$ac_dir" || { ac_status=$?; continue; }
    # Check for guested configure.
    if test -f "$ac_srcdir/configure.gnu"; then
      echo &&
      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
    elif test -f "$ac_srcdir/configure"; then
      echo &&
      $SHELL "$ac_srcdir/configure" --help=recursive
1689
    else
1690 1691 1692
      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
    fi || ac_status=$?
    cd "$ac_pwd" || { ac_status=$?; break; }
1693 1694 1695
  done
fi

1696
test -n "$ac_init_help" && exit $ac_status
1697 1698
if $ac_init_version; then
  cat <<\_ACEOF
1699
Greenplum Database configure 6.0.0-alpha.0
1700
generated by GNU Autoconf 2.69
1701

1702
Copyright (C) 2012 Free Software Foundation, Inc.
1703 1704 1705
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.

1706
Copyright (c) 1996-2010, PostgreSQL Global Development Group
1707
_ACEOF
1708
  exit
1709 1710
fi

1711 1712 1713
## ------------------------ ##
## Autoconf initialization. ##
## ------------------------ ##
1714

1715 1716 1717 1718
# ac_fn_c_try_compile LINENO
# --------------------------
# Try to compile conftest.$ac_ext, and return whether this succeeded.
ac_fn_c_try_compile ()
1719
{
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  rm -f conftest.$ac_objext
  if { { ac_try="$ac_compile"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_compile") 2>conftest.err
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && {
	 test -z "$ac_c_werror_flag" ||
	 test ! -s conftest.err
       } && test -s conftest.$ac_objext; then :
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
1745

1746 1747 1748 1749
	ac_retval=1
fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval
1750

1751
} # ac_fn_c_try_compile
1752

1753 1754 1755 1756
# ac_fn_cxx_try_compile LINENO
# ----------------------------
# Try to compile conftest.$ac_ext, and return whether this succeeded.
ac_fn_cxx_try_compile ()
1757 1758
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1759 1760
  rm -f conftest.$ac_objext
  if { { ac_try="$ac_compile"
1761 1762 1763 1764 1765 1766
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
1767
  (eval "$ac_compile") 2>conftest.err
1768 1769 1770 1771 1772 1773 1774 1775
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && {
1776
	 test -z "$ac_cxx_werror_flag" ||
1777
	 test ! -s conftest.err
1778
       } && test -s conftest.$ac_objext; then :
1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

	ac_retval=1
fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

1789
} # ac_fn_cxx_try_compile
1790

1791 1792 1793 1794
# ac_fn_c_try_link LINENO
# -----------------------
# Try to link conftest.$ac_ext, and return whether this succeeded.
ac_fn_c_try_link ()
1795 1796
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1797 1798
  rm -f conftest.$ac_objext conftest$ac_exeext
  if { { ac_try="$ac_link"
1799 1800 1801 1802 1803 1804
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
1805
  (eval "$ac_link") 2>conftest.err
1806 1807 1808 1809 1810 1811 1812 1813
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && {
1814
	 test -z "$ac_c_werror_flag" ||
1815
	 test ! -s conftest.err
1816 1817 1818 1819
       } && test -s conftest$ac_exeext && {
	 test "$cross_compiling" = yes ||
	 test -x conftest$ac_exeext
       }; then :
1820 1821 1822 1823 1824 1825 1826
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

	ac_retval=1
fi
1827 1828 1829 1830 1831
  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
  # interfere with the next link command; also delete a directory that is
  # left behind by Apple's compiler.  We do this before executing the actions.
  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1832 1833 1834
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

1835
} # ac_fn_c_try_link
1836

1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
# ac_fn_c_try_cpp LINENO
# ----------------------
# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
ac_fn_c_try_cpp ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if { { ac_try="$ac_cpp conftest.$ac_ext"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } > conftest.i && {
	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
	 test ! -s conftest.err
       }; then :
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
1866

1867 1868 1869 1870
    ac_retval=1
fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval
1871

1872
} # ac_fn_c_try_cpp
1873

1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
# ---------------------------------------------
# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
# accordingly.
ac_fn_c_check_decl ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  as_decl_name=`echo $2|sed 's/ *(.*//'`
  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
#ifndef $as_decl_name
#ifdef __cplusplus
  (void) $as_decl_use;
#else
  (void) $as_decl_name;
#endif
#endif

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  eval "$3=yes"
else
  eval "$3=no"
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno

} # ac_fn_c_check_decl

1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992
# ac_fn_c_try_run LINENO
# ----------------------
# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
# that executables *can* be run.
ac_fn_c_try_run ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if { { ac_try="$ac_link"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
  { { case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_try") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; }; then :
  ac_retval=0
else
  $as_echo "$as_me: program exited with status $ac_status" >&5
       $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

       ac_retval=$ac_status
fi
  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

} # ac_fn_c_try_run

# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
# -------------------------------------------------------
# Tests whether HEADER exists and can be compiled using the include files in
# INCLUDES, setting the cache variable VAR accordingly.
ac_fn_c_check_header_compile ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
#include <$2>
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  eval "$3=yes"
else
  eval "$3=no"
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno

} # ac_fn_c_check_header_compile

1993 1994 1995 1996
# ac_fn_cxx_try_cpp LINENO
# ------------------------
# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
ac_fn_cxx_try_cpp ()
1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if { { ac_try="$ac_cpp conftest.$ac_ext"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } > conftest.i && {
	 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
	 test ! -s conftest.err
       }; then :
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

    ac_retval=1
fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

} # ac_fn_cxx_try_cpp

# ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES
# ---------------------------------------------------------
2032 2033 2034
# Tests whether HEADER exists, giving a warning if it cannot be compiled using
# the include files in INCLUDES and setting the cache variable VAR
# accordingly.
2035
ac_fn_cxx_check_header_mongrel ()
2036
{
2037 2038 2039 2040 2041 2042
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if eval \${$3+:} false; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
2043
fi
2044 2045 2046
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
2047
else
2048 2049 2050 2051
  # Is the header compilable?
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
$as_echo_n "checking $2 usability... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2052
/* end confdefs.h.  */
2053 2054
$4
#include <$2>
2055
_ACEOF
2056
if ac_fn_cxx_try_compile "$LINENO"; then :
2057
  ac_header_compiler=yes
2058
else
2059
  ac_header_compiler=no
2060
fi
2061 2062 2063
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
$as_echo "$ac_header_compiler" >&6; }
2064

2065 2066 2067 2068
# Is the header present?
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
$as_echo_n "checking $2 presence... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2069
/* end confdefs.h.  */
2070
#include <$2>
2071
_ACEOF
2072
if ac_fn_cxx_try_cpp "$LINENO"; then :
2073
  ac_header_preproc=yes
2074
else
2075
  ac_header_preproc=no
2076
fi
2077 2078 2079
rm -f conftest.err conftest.i conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
$as_echo "$ac_header_preproc" >&6; }
2080

2081
# So?  What about this header?
2082
case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #((
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
  yes:no: )
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
    ;;
  no:yes:* )
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?" >&5
$as_echo "$as_me: WARNING: $2:     check for missing prerequisite headers?" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&5
$as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
2100 2101 2102
( $as_echo "## ------------------------------------ ##
## Report this to support@greenplum.org ##
## ------------------------------------ ##"
2103 2104 2105 2106 2107 2108 2109
     ) | sed "s/^/$as_me: WARNING:     /" >&2
    ;;
esac
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
2110
else
2111
  eval "$3=\$ac_header_compiler"
2112
fi
2113 2114 2115
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
T
Tom Lane 已提交
2116
fi
2117
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2118

2119
} # ac_fn_cxx_check_header_mongrel
T
Tom Lane 已提交
2120

2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
# ac_fn_cxx_try_link LINENO
# -------------------------
# Try to link conftest.$ac_ext, and return whether this succeeded.
ac_fn_cxx_try_link ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  rm -f conftest.$ac_objext conftest$ac_exeext
  if { { ac_try="$ac_link"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link") 2>conftest.err
  ac_status=$?
  if test -s conftest.err; then
    grep -v '^ *+' conftest.err >conftest.er1
    cat conftest.er1 >&5
    mv -f conftest.er1 conftest.err
  fi
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && {
	 test -z "$ac_cxx_werror_flag" ||
	 test ! -s conftest.err
       } && test -s conftest$ac_exeext && {
	 test "$cross_compiling" = yes ||
	 test -x conftest$ac_exeext
       }; then :
  ac_retval=0
else
  $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

	ac_retval=1
fi
  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
  # interfere with the next link command; also delete a directory that is
  # left behind by Apple's compiler.  We do this before executing the actions.
  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

} # ac_fn_cxx_try_link

2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208
# ac_fn_cxx_try_run LINENO
# ------------------------
# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
# that executables *can* be run.
ac_fn_cxx_try_run ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if { { ac_try="$ac_link"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
  { { case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_try") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; }; then :
  ac_retval=0
else
  $as_echo "$as_me: program exited with status $ac_status" >&5
       $as_echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5

       ac_retval=$ac_status
fi
  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

} # ac_fn_cxx_try_run

2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 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
# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
# -------------------------------------------------------
# Tests whether HEADER exists, giving a warning if it cannot be compiled using
# the include files in INCLUDES and setting the cache variable VAR
# accordingly.
ac_fn_c_check_header_mongrel ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if eval \${$3+:} false; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
else
  # Is the header compilable?
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
$as_echo_n "checking $2 usability... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
#include <$2>
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_header_compiler=yes
else
  ac_header_compiler=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
$as_echo "$ac_header_compiler" >&6; }

# Is the header present?
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
$as_echo_n "checking $2 presence... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <$2>
_ACEOF
if ac_fn_c_try_cpp "$LINENO"; then :
  ac_header_preproc=yes
else
  ac_header_preproc=no
fi
rm -f conftest.err conftest.i conftest.$ac_ext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
$as_echo "$ac_header_preproc" >&6; }

# So?  What about this header?
case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
  yes:no: )
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
    ;;
  no:yes:* )
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     check for missing prerequisite headers?" >&5
$as_echo "$as_me: WARNING: $2:     check for missing prerequisite headers?" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&5
$as_echo "$as_me: WARNING: $2:     section \"Present But Cannot Be Compiled\"" >&2;}
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
( $as_echo "## ------------------------------------ ##
## Report this to support@greenplum.org ##
## ------------------------------------ ##"
     ) | sed "s/^/$as_me: WARNING:     /" >&2
    ;;
esac
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
else
  eval "$3=\$ac_header_compiler"
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno

} # ac_fn_c_check_header_mongrel

2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315
# ac_fn_c_check_func LINENO FUNC VAR
# ----------------------------------
# Tests whether FUNC exists, setting the cache variable VAR accordingly
ac_fn_c_check_func ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
#define $2 innocuous_$2
2316

2317 2318 2319 2320
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char $2 (); below.
    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
    <limits.h> exists even on freestanding compilers.  */
2321

2322 2323 2324 2325 2326
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
2327

2328
#undef $2
2329

2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char $2 ();
/* 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_$2 || defined __stub___$2
choke me
#endif
2343

2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363
int
main ()
{
return $2 ();
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  eval "$3=yes"
else
  eval "$3=no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
M
Michael Meskes 已提交
2364

2365
} # ac_fn_c_check_func
2366

2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
# ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES
# ----------------------------------------------------
# Tries to find if the field MEMBER exists in type AGGR, after including
# INCLUDES, setting cache variable VAR accordingly.
ac_fn_c_check_member ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
$as_echo_n "checking for $2.$3... " >&6; }
if eval \${$4+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$5
int
main ()
{
static $2 ac_aggr;
if (ac_aggr.$3)
return 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  eval "$4=yes"
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$5
int
main ()
{
static $2 ac_aggr;
if (sizeof ac_aggr.$3)
return 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  eval "$4=yes"
2410
else
2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
  eval "$4=no"
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
eval ac_res=\$$4
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2421

2422
} # ac_fn_c_check_member
2423

2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462
# ac_fn_c_check_type LINENO TYPE VAR INCLUDES
# -------------------------------------------
# Tests whether TYPE exists after having included INCLUDES, setting cache
# variable VAR accordingly.
ac_fn_c_check_type ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
$as_echo_n "checking for $2... " >&6; }
if eval \${$3+:} false; then :
  $as_echo_n "(cached) " >&6
else
  eval "$3=no"
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
if (sizeof ($2))
	 return 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
if (sizeof (($2)))
	    return 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
2463

2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474
else
  eval "$3=yes"
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
eval ac_res=\$$3
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2475

2476
} # ac_fn_c_check_type
2477 2478 2479 2480 2481 2482 2483 2484 2485 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 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 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 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 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 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659

# ac_fn_c_compute_int LINENO EXPR VAR INCLUDES
# --------------------------------------------
# Tries to find the compile-time value of EXPR in a program that includes
# INCLUDES, setting VAR accordingly. Returns whether the value could be
# computed
ac_fn_c_compute_int ()
{
  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  if test "$cross_compiling" = yes; then
    # Depending upon the size, compute the lo and hi bounds.
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
static int test_array [1 - 2 * !(($2) >= 0)];
test_array [0] = 0;
return test_array [0];

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_lo=0 ac_mid=0
  while :; do
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
static int test_array [1 - 2 * !(($2) <= $ac_mid)];
test_array [0] = 0;
return test_array [0];

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_hi=$ac_mid; break
else
  as_fn_arith $ac_mid + 1 && ac_lo=$as_val
			if test $ac_lo -le $ac_mid; then
			  ac_lo= ac_hi=
			  break
			fi
			as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  done
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
static int test_array [1 - 2 * !(($2) < 0)];
test_array [0] = 0;
return test_array [0];

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_hi=-1 ac_mid=-1
  while :; do
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
static int test_array [1 - 2 * !(($2) >= $ac_mid)];
test_array [0] = 0;
return test_array [0];

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_lo=$ac_mid; break
else
  as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val
			if test $ac_mid -le $ac_hi; then
			  ac_lo= ac_hi=
			  break
			fi
			as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  done
else
  ac_lo= ac_hi=
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
# Binary search between lo and hi bounds.
while test "x$ac_lo" != "x$ac_hi"; do
  as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
int
main ()
{
static int test_array [1 - 2 * !(($2) <= $ac_mid)];
test_array [0] = 0;
return test_array [0];

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_hi=$ac_mid
else
  as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
done
case $ac_lo in #((
?*) eval "$3=\$ac_lo"; ac_retval=0 ;;
'') ac_retval=1 ;;
esac
  else
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$4
static long int longval () { return $2; }
static unsigned long int ulongval () { return $2; }
#include <stdio.h>
#include <stdlib.h>
int
main ()
{

  FILE *f = fopen ("conftest.val", "w");
  if (! f)
    return 1;
  if (($2) < 0)
    {
      long int i = longval ();
      if (i != ($2))
	return 1;
      fprintf (f, "%ld", i);
    }
  else
    {
      unsigned long int i = ulongval ();
      if (i != ($2))
	return 1;
      fprintf (f, "%lu", i);
    }
  /* Do not output a trailing newline, as this causes \r\n confusion
     on some platforms.  */
  return ferror (f) || fclose (f) != 0;

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  echo >>conftest.val; read $3 <conftest.val; ac_retval=0
else
  ac_retval=1
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
rm -f conftest.val

  fi
  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
  as_fn_set_status $ac_retval

} # ac_fn_c_compute_int
2660 2661 2662
cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
2663

2664
It was created by Greenplum Database $as_me 6.0.0-alpha.0, which was
2665
generated by GNU Autoconf 2.69.  Invocation command line was
2666

2667
  $ $0 $@
2668

2669 2670 2671 2672 2673 2674 2675
_ACEOF
exec 5>>config.log
{
cat <<_ASUNAME
## --------- ##
## Platform. ##
## --------- ##
2676

2677 2678 2679 2680 2681
hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
uname -m = `(uname -m) 2>/dev/null || echo unknown`
uname -r = `(uname -r) 2>/dev/null || echo unknown`
uname -s = `(uname -s) 2>/dev/null || echo unknown`
uname -v = `(uname -v) 2>/dev/null || echo unknown`
2682

2683 2684
/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
2685

2686 2687 2688 2689 2690 2691 2692
/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
M
Michael Meskes 已提交
2693

2694
_ASUNAME
2695

2696 2697 2698 2699 2700 2701 2702 2703
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    $as_echo "PATH: $as_dir"
  done
IFS=$as_save_IFS
2704

2705
} >&5
2706

2707
cat >&5 <<_ACEOF
2708

2709

2710 2711 2712
## ----------- ##
## Core tests. ##
## ----------- ##
2713

2714
_ACEOF
2715

M
Michael Meskes 已提交
2716

2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757
# Keep a trace of the command line.
# Strip out --no-create and --no-recursion so they do not pile up.
# Strip out --silent because we don't want to record it for future runs.
# Also quote any args containing shell meta-characters.
# Make two passes to allow for proper duplicate-argument suppression.
ac_configure_args=
ac_configure_args0=
ac_configure_args1=
ac_must_keep_next=false
for ac_pass in 1 2
do
  for ac_arg
  do
    case $ac_arg in
    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
    | -silent | --silent | --silen | --sile | --sil)
      continue ;;
    *\'*)
      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
    esac
    case $ac_pass in
    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
    2)
      as_fn_append ac_configure_args1 " '$ac_arg'"
      if test $ac_must_keep_next = true; then
	ac_must_keep_next=false # Got value, back to normal.
      else
	case $ac_arg in
	  *=* | --config-cache | -C | -disable-* | --disable-* \
	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
	  | -with-* | --with-* | -without-* | --without-* | --x)
	    case "$ac_configure_args0 " in
	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
	    esac
	    ;;
	  -* ) ac_must_keep_next=true ;;
	esac
      fi
      as_fn_append ac_configure_args " '$ac_arg'"
2758
      ;;
2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802
    esac
  done
done
{ ac_configure_args0=; unset ac_configure_args0;}
{ ac_configure_args1=; unset ac_configure_args1;}

# When interrupted or exit'd, cleanup temporary files, and complete
# config.log.  We remove comments because anyway the quotes in there
# would cause problems or look ugly.
# WARNING: Use '\'' to represent an apostrophe within the trap.
# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
trap 'exit_status=$?
  # Save into config.log some information that might help in debugging.
  {
    echo

    $as_echo "## ---------------- ##
## Cache variables. ##
## ---------------- ##"
    echo
    # The following way of writing the cache mishandles newlines in values,
(
  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
    eval ac_val=\$$ac_var
    case $ac_val in #(
    *${as_nl}*)
      case $ac_var in #(
      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
      esac
      case $ac_var in #(
      _ | IFS | as_nl) ;; #(
      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
      *) { eval $ac_var=; unset $ac_var;} ;;
      esac ;;
    esac
  done
  (set) 2>&1 |
    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
    *${as_nl}ac_space=\ *)
      sed -n \
	"s/'\''/'\''\\\\'\'''\''/g;
	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
      ;; #(
2803
    *)
2804
      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
2805
      ;;
2806 2807 2808 2809
    esac |
    sort
)
    echo
2810

2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823
    $as_echo "## ----------------- ##
## Output variables. ##
## ----------------- ##"
    echo
    for ac_var in $ac_subst_vars
    do
      eval ac_val=\$$ac_var
      case $ac_val in
      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
      esac
      $as_echo "$ac_var='\''$ac_val'\''"
    done | sort
    echo
2824

2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839
    if test -n "$ac_subst_files"; then
      $as_echo "## ------------------- ##
## File substitutions. ##
## ------------------- ##"
      echo
      for ac_var in $ac_subst_files
      do
	eval ac_val=\$$ac_var
	case $ac_val in
	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
	esac
	$as_echo "$ac_var='\''$ac_val'\''"
      done | sort
      echo
    fi
2840

2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860
    if test -s confdefs.h; then
      $as_echo "## ----------- ##
## confdefs.h. ##
## ----------- ##"
      echo
      cat confdefs.h
      echo
    fi
    test "$ac_signal" != 0 &&
      $as_echo "$as_me: caught signal $ac_signal"
    $as_echo "$as_me: exit $exit_status"
  } >&5
  rm -f core *.core core.conftest.* &&
    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
    exit $exit_status
' 0
for ac_signal in 1 2 13 15; do
  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
done
ac_signal=0
2861

2862 2863
# confdefs.h avoids OS command line length limits that DEFS can exceed.
rm -f -r conftest* confdefs.h
2864

2865
$as_echo "/* confdefs.h */" > confdefs.h
2866

2867
# Predefined preprocessor variables.
2868

2869 2870 2871
cat >>confdefs.h <<_ACEOF
#define PACKAGE_NAME "$PACKAGE_NAME"
_ACEOF
2872

2873 2874 2875
cat >>confdefs.h <<_ACEOF
#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
_ACEOF
M
Michael Meskes 已提交
2876

2877 2878 2879
cat >>confdefs.h <<_ACEOF
#define PACKAGE_VERSION "$PACKAGE_VERSION"
_ACEOF
2880

2881 2882 2883
cat >>confdefs.h <<_ACEOF
#define PACKAGE_STRING "$PACKAGE_STRING"
_ACEOF
2884

2885 2886 2887
cat >>confdefs.h <<_ACEOF
#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
_ACEOF
2888

2889 2890 2891
cat >>confdefs.h <<_ACEOF
#define PACKAGE_URL "$PACKAGE_URL"
_ACEOF
2892 2893


2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925
# Let the site file select an alternate cache file if it wants to.
# Prefer an explicitly selected file to automatically selected ones.
ac_site_file1=NONE
ac_site_file2=NONE
if test -n "$CONFIG_SITE"; then
  # We do not want a PATH search for config.site.
  case $CONFIG_SITE in #((
    -*)  ac_site_file1=./$CONFIG_SITE;;
    */*) ac_site_file1=$CONFIG_SITE;;
    *)   ac_site_file1=./$CONFIG_SITE;;
  esac
elif test "x$prefix" != xNONE; then
  ac_site_file1=$prefix/share/config.site
  ac_site_file2=$prefix/etc/config.site
else
  ac_site_file1=$ac_default_prefix/share/config.site
  ac_site_file2=$ac_default_prefix/etc/config.site
fi
for ac_site_file in "$ac_site_file1" "$ac_site_file2"
do
  test "x$ac_site_file" = xNONE && continue
  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
$as_echo "$as_me: loading site script $ac_site_file" >&6;}
    sed 's/^/| /' "$ac_site_file" >&5
    . "$ac_site_file" \
      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "failed to load site script $ac_site_file
See \`config.log' for more details" "$LINENO" 5; }
  fi
done
2926

2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
if test -r "$cache_file"; then
  # Some versions of bash will fail to source /dev/null (special files
  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
$as_echo "$as_me: loading cache $cache_file" >&6;}
    case $cache_file in
      [\\/]* | ?:[\\/]* ) . "$cache_file";;
      *)                      . "./$cache_file";;
    esac
  fi
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
$as_echo "$as_me: creating cache $cache_file" >&6;}
  >$cache_file
fi
2943

2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003
# Check that the precious variables saved in the cache have kept the same
# value.
ac_cache_corrupted=false
for ac_var in $ac_precious_vars; do
  eval ac_old_set=\$ac_cv_env_${ac_var}_set
  eval ac_new_set=\$ac_env_${ac_var}_set
  eval ac_old_val=\$ac_cv_env_${ac_var}_value
  eval ac_new_val=\$ac_env_${ac_var}_value
  case $ac_old_set,$ac_new_set in
    set,)
      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
      ac_cache_corrupted=: ;;
    ,set)
      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
      ac_cache_corrupted=: ;;
    ,);;
    *)
      if test "x$ac_old_val" != "x$ac_new_val"; then
	# differences in whitespace do not lead to failure.
	ac_old_val_w=`echo x $ac_old_val`
	ac_new_val_w=`echo x $ac_new_val`
	if test "$ac_old_val_w" != "$ac_new_val_w"; then
	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
	  ac_cache_corrupted=:
	else
	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
	  eval $ac_var=\$ac_old_val
	fi
	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
      fi;;
  esac
  # Pass precious variables to config.status.
  if test "$ac_new_set" = set; then
    case $ac_new_val in
    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
    *) ac_arg=$ac_var=$ac_new_val ;;
    esac
    case " $ac_configure_args " in
      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
    esac
  fi
done
if $ac_cache_corrupted; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
fi
## -------------------- ##
## Main body of script. ##
## -------------------- ##
3004

3005 3006 3007 3008 3009
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
M
Michael Meskes 已提交
3010

3011

3012
PG_PACKAGE_VERSION=8.4devel
3013

3014 3015 3016



3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035
ac_aux_dir=
for ac_dir in config "$srcdir"/config; do
  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
  elif test -f "$ac_dir/shtool"; then
    ac_aux_dir=$ac_dir
    ac_install_sh="$ac_aux_dir/shtool install -c"
    break
  fi
done
if test -z "$ac_aux_dir"; then
  as_fn_error $? "cannot find install-sh, install.sh, or shtool in config \"$srcdir\"/config" "$LINENO" 5
fi
3036

3037 3038 3039 3040 3041 3042 3043
# These three variables are undocumented and unsupported,
# and are intended to be withdrawn in a future Autoconf release.
# They can cause serious problems if a builder's source tree is in a directory
# whose full name contains unusual characters.
ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
3044

3045 3046


3047
configure_args=$ac_configure_args
3048

3049

3050 3051
PG_MAJORVERSION=`expr "$PG_PACKAGE_VERSION" : '\([0-9][0-9]*\.[0-9][0-9]*\)'`

3052

3053
cat >>confdefs.h <<_ACEOF
3054
#define PG_MAJORVERSION "$PG_MAJORVERSION"
3055
_ACEOF
3056

3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080


pgac_args="$pgac_args with_extra_version"


# Check whether --with-extra-version was given.
if test "${with_extra_version+set}" = set; then :
  withval=$with_extra_version;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-extra-version option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-extra-version option" "$LINENO" 5
      ;;
    *)
      PG_VERSION="$PG_PACKAGE_VERSION$withval"
      ;;
  esac

else
  PG_VERSION="$PG_PACKAGE_VERSION"
fi

3081 3082


3083
cat >>confdefs.h <<_ACEOF
3084
#define PG_VERSION "$PG_VERSION"
3085
_ACEOF
3086

M
Michael Meskes 已提交
3087

3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
# Make sure we can run config.sub.
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
  as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
$as_echo_n "checking build system type... " >&6; }
if ${ac_cv_build+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_build_alias=$build_alias
test "x$ac_build_alias" = x &&
  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
test "x$ac_build_alias" = x &&
  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
$as_echo "$ac_cv_build" >&6; }
case $ac_cv_build in
*-*-*) ;;
*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
esac
build=$ac_cv_build
ac_save_IFS=$IFS; IFS='-'
set x $ac_cv_build
shift
build_cpu=$1
build_vendor=$2
shift; shift
# Remember, the first character of IFS is used to create $*,
# except with old shells:
build_os=$*
IFS=$ac_save_IFS
case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
3124 3125


3126 3127 3128 3129
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
$as_echo_n "checking host system type... " >&6; }
if ${ac_cv_host+:} false; then :
  $as_echo_n "(cached) " >&6
3130
else
3131 3132 3133 3134 3135 3136
  if test "x$host_alias" = x; then
  ac_cv_host=$ac_cv_build
else
  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
fi
3137

3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
$as_echo "$ac_cv_host" >&6; }
case $ac_cv_host in
*-*-*) ;;
*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
esac
host=$ac_cv_host
ac_save_IFS=$IFS; IFS='-'
set x $ac_cv_host
shift
host_cpu=$1
host_vendor=$2
shift; shift
# Remember, the first character of IFS is used to create $*,
# except with old shells:
host_os=$*
IFS=$ac_save_IFS
case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
3157 3158


3159

3160 3161 3162
template=
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking which template to use" >&5
$as_echo_n "checking which template to use... " >&6; }
3163 3164


3165
pgac_args="$pgac_args with_template"
3166

M
Michael Meskes 已提交
3167

3168 3169 3170
# Check whether --with-template was given.
if test "${with_template+set}" = set; then :
  withval=$with_template;
3171
  case $withval in
3172
    yes)
3173
      as_fn_error $? "argument required for --with-template option" "$LINENO" 5
3174 3175
      ;;
    no)
3176
      as_fn_error $? "argument required for --with-template option" "$LINENO" 5
3177 3178
      ;;
    *)
M
Michael Meskes 已提交
3179

3180
  case $withval in
3181 3182 3183 3184 3185 3186 3187
    list)   echo; ls "$srcdir/src/template"; exit;;
    *)      if test -f "$srcdir/src/template/$with_template" ; then
              template=$withval
            else
              as_fn_error $? "'$withval' is not a valid template name. Use 'list' for a list." "$LINENO" 5
            fi;;
  esac
3188 3189 3190 3191 3192 3193

      ;;
  esac

else

3194
# --with-template not given
3195

3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223
case $host_os in
     aix*) template=aix ;;
    bsdi*) template=bsdi ;;
  cygwin*) template=cygwin ;;
  darwin*) template=darwin ;;
dragonfly*) template=netbsd ;;
    dgux*) template=dgux ;;
 freebsd*) template=freebsd ;;
    hpux*) template=hpux ;;
    irix*) template=irix ;;
 linux*|gnu*|k*bsd*-gnu)
           template=linux ;;
   mingw*) template=win32 ;;
  netbsd*) template=netbsd ;;
nextstep*) template=nextstep ;;
 openbsd*) template=openbsd ;;
     osf*) template=osf ;;
     sco*) template=sco ;;
 solaris*) template=solaris ;;
   sunos*) template=sunos4 ;;
 sysv4.2*)
        case $host_vendor in
          univel) template=univel ;;
        esac ;;
   sysv4*) template=svr4 ;;
   sysv5*) template=unixware ;;
  ultrix*) template=ultrix4 ;;
esac
3224

3225 3226 3227 3228 3229 3230
  if test x"$template" = x"" ; then
    as_fn_error $? "
*******************************************************************
PostgreSQL has apparently not been ported to your platform yet.
To try a manual configuration, look into the src/template directory
for a similar platform and use the '--with-template=' option.
3231

3232
Please also contact <bugs@greenplum.org> to see about
3233 3234 3235 3236 3237
rectifying this.  Include the above 'checking host system type...'
line.
*******************************************************************
" "$LINENO" 5
  fi
3238 3239


3240
fi
3241

M
Michael Meskes 已提交
3242

3243

3244 3245
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $template" >&5
$as_echo "$template" >&6; }
3246

3247
PORTNAME=$template
3248 3249


3250 3251 3252 3253 3254
# Initialize default assumption that we do not need separate assembly code
# for TAS (test-and-set).  This can be overridden by the template file
# when it's executed.
need_tas=no
tas_file=dummy.s
3255 3256 3257



3258 3259 3260
##
## Command line options
##
3261

3262
#
3263
# Add non-standard directories to the include path
3264 3265
#

3266
pgac_args="$pgac_args with_includes"
3267

M
Michael Meskes 已提交
3268

3269 3270 3271
# Check whether --with-includes was given.
if test "${with_includes+set}" = set; then :
  withval=$with_includes;
3272 3273
  case $withval in
    yes)
3274
      as_fn_error $? "argument required for --with-includes option" "$LINENO" 5
3275 3276
      ;;
    no)
3277
      as_fn_error $? "argument required for --with-includes option" "$LINENO" 5
3278 3279
      ;;
    *)
3280

3281 3282 3283
      ;;
  esac

3284
fi
3285 3286 3287 3288




3289
#
3290
# Add non-standard directories to the library search path
3291 3292
#

3293
pgac_args="$pgac_args with_libraries"
3294

M
Michael Meskes 已提交
3295

3296 3297 3298
# Check whether --with-libraries was given.
if test "${with_libraries+set}" = set; then :
  withval=$with_libraries;
3299 3300
  case $withval in
    yes)
3301
      as_fn_error $? "argument required for --with-libraries option" "$LINENO" 5
3302 3303
      ;;
    no)
3304
      as_fn_error $? "argument required for --with-libraries option" "$LINENO" 5
3305 3306
      ;;
    *)
3307
      LIBRARY_DIRS=$withval
3308 3309 3310
      ;;
  esac

3311
fi
3312

3313 3314 3315



3316
pgac_args="$pgac_args with_libs"
3317

M
Michael Meskes 已提交
3318

3319 3320 3321
# Check whether --with-libs was given.
if test "${with_libs+set}" = set; then :
  withval=$with_libs;
3322 3323
  case $withval in
    yes)
3324
      as_fn_error $? "argument required for --with-libs option" "$LINENO" 5
3325 3326
      ;;
    no)
3327
      as_fn_error $? "argument required for --with-libs option" "$LINENO" 5
3328 3329
      ;;
    *)
3330
      LIBRARY_DIRS=$withval
3331 3332 3333
      ;;
  esac

3334
fi
M
 
Marc G. Fournier 已提交
3335

3336

3337 3338


B
Bruce Momjian 已提交
3339
#
3340
# 64-bit integer date/time storage: enabled by default.
B
Bruce Momjian 已提交
3341
#
3342 3343
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with 64-bit integer date/time support" >&5
$as_echo_n "checking whether to build with 64-bit integer date/time support... " >&6; }
3344

3345
pgac_args="$pgac_args enable_integer_datetimes"
3346

3347 3348 3349 3350 3351
# Check whether --enable-integer-datetimes was given.
if test "${enable_integer_datetimes+set}" = set; then :
  enableval=$enable_integer_datetimes;
  case $enableval in
    yes)
3352

3353
$as_echo "#define USE_INTEGER_DATETIMES 1" >>confdefs.h
B
Bruce Momjian 已提交
3354

3355 3356 3357 3358 3359 3360 3361 3362
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-integer-datetimes option" "$LINENO" 5
      ;;
  esac
3363

3364
else
3365 3366 3367 3368
  enable_integer_datetimes=yes

$as_echo "#define USE_INTEGER_DATETIMES 1" >>confdefs.h

3369 3370 3371
fi


3372 3373
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_integer_datetimes" >&5
$as_echo "$enable_integer_datetimes" >&6; }
3374 3375


3376 3377 3378
#
# NLS
#
H
Heikki Linnakangas 已提交
3379 3380 3381 3382 3383 3384 3385 3386 3387 3388
# NLS is not supported in Greenplum. There's no fundamental reason for it,
# but no-one's kept the translations up-to-date. The .po files have been
# removed from the repository, so it won't work if you just uncomment the
# below block. If we wanted to enable NLS support, we should come up with a
# scheme to use the upstream PostgreSQL .po files as is, to make merging
# easier, and provide additional .po files for all the Greenplum-specific
# strings.
# to the users to let them build with very incomplete translations.
#AC_MSG_CHECKING([whether NLS is wanted])
#PGAC_ARG_OPTARG(enable, nls,
3389
#                [LANGUAGES], [enable Native Language Support],
H
Heikki Linnakangas 已提交
3390 3391 3392 3393 3394 3395 3396
#                [],
#                [WANTED_LANGUAGES=$enableval],
#                [AC_DEFINE(ENABLE_NLS, 1,
#                           [Define to 1 if you want National Language Support. (--enable-nls)])])
#AC_MSG_RESULT([$enable_nls])
#AC_SUBST(enable_nls)
#AC_SUBST(WANTED_LANGUAGES)
3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418

#
# Default port number (--with-pgport), default 5432
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for default port number" >&5
$as_echo_n "checking for default port number... " >&6; }

pgac_args="$pgac_args with_pgport"


# Check whether --with-pgport was given.
if test "${with_pgport+set}" = set; then :
  withval=$with_pgport;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-pgport option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-pgport option" "$LINENO" 5
      ;;
    *)
      default_port=$withval
3419 3420 3421 3422
      ;;
  esac

else
3423
  default_port=5432
3424 3425 3426
fi


3427 3428 3429
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $default_port" >&5
$as_echo "$default_port" >&6; }
# Need both of these because some places want an integer and some a string
3430

3431 3432 3433
cat >>confdefs.h <<_ACEOF
#define DEF_PGPORT ${default_port}
_ACEOF
3434

3435

3436 3437
cat >>confdefs.h <<_ACEOF
#define DEF_PGPORT_STR "${default_port}"
3438 3439
_ACEOF

3440

3441

3442 3443 3444
#
# Option to disable shared libraries
#
3445

3446
pgac_args="$pgac_args enable_shared"
3447

3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461
# Check whether --enable-shared was given.
if test "${enable_shared+set}" = set; then :
  enableval=$enable_shared;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-shared option" "$LINENO" 5
      ;;
  esac
3462 3463

else
3464
  enable_shared=yes
3465 3466 3467

fi

3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491



#
# '-rpath'-like feature can be disabled
#

pgac_args="$pgac_args enable_rpath"

# Check whether --enable-rpath was given.
if test "${enable_rpath+set}" = set; then :
  enableval=$enable_rpath;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-rpath option" "$LINENO" 5
      ;;
  esac

3492
else
3493
  enable_rpath=yes
3494

3495 3496
fi

3497

M
Michael Meskes 已提交
3498

3499

3500 3501 3502
#
# Spinlocks
#
3503

3504
pgac_args="$pgac_args enable_spinlocks"
3505

3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519
# Check whether --enable-spinlocks was given.
if test "${enable_spinlocks+set}" = set; then :
  enableval=$enable_spinlocks;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-spinlocks option" "$LINENO" 5
      ;;
  esac
3520 3521

else
3522
  enable_spinlocks=yes
3523 3524

fi
3525 3526 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 3555
#
# Atomic operations
#

pgac_args="$pgac_args enable_atomics"

# Check whether --enable-atomics was given.
if test "${enable_atomics+set}" = set; then :
  enableval=$enable_atomics;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-atomics option" "$LINENO" 5
      ;;
  esac

else
  enable_atomics=yes

fi



3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566
#
# gpfdist
#

pgac_args="$pgac_args enable_gpfdist"

# Check whether --enable-gpfdist was given.
if test "${enable_gpfdist+set}" = set; then :
  enableval=$enable_gpfdist;
  case $enableval in
    yes)
M
Marbin Tan 已提交
3567
      :
3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-gpfdist option" "$LINENO" 5
      ;;
  esac

else
  enable_gpfdist=yes
M
Marbin Tan 已提交
3579

3580 3581 3582 3583 3584
fi




3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606
#
# pxf
#

pgac_args="$pgac_args enable_pxf"

# Check whether --enable-pxf was given.
if test "${enable_pxf+set}" = set; then :
  enableval=$enable_pxf;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-pxf option" "$LINENO" 5
      ;;
  esac

else
3607
  enable_pxf=yes
3608 3609 3610 3611 3612 3613

fi




3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642
#
# --enable-gpperfmon
#

pgac_args="$pgac_args enable_gpperfmon"

# Check whether --enable-gpperfmon was given.
if test "${enable_gpperfmon+set}" = set; then :
  enableval=$enable_gpperfmon;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-gpperfmon option" "$LINENO" 5
      ;;
  esac

else
  enable_gpperfmon=no

fi




3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663
#
# --enable-debug adds -g to compiler flags
#

pgac_args="$pgac_args enable_debug"

# Check whether --enable-debug was given.
if test "${enable_debug+set}" = set; then :
  enableval=$enable_debug;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-debug option" "$LINENO" 5
      ;;
  esac

3664
else
3665 3666
  enable_debug=no

3667 3668
fi

3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692



#
# --enable-profiling enables gcc profiling
#

pgac_args="$pgac_args enable_profiling"

# Check whether --enable-profiling was given.
if test "${enable_profiling+set}" = set; then :
  enableval=$enable_profiling;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-profiling option" "$LINENO" 5
      ;;
  esac

3693
else
3694 3695
  enable_profiling=no

3696 3697 3698 3699 3700
fi




3701 3702 3703
#
# --enable-coverage enables generation of code coverage metrics with gcov
#
3704

3705
pgac_args="$pgac_args enable_coverage"
3706

3707 3708 3709 3710 3711 3712
# Check whether --enable-coverage was given.
if test "${enable_coverage+set}" = set; then :
  enableval=$enable_coverage;
  case $enableval in
    yes)
      for ac_prog in gcov
3713
do
3714
  # Extract the first word of "$ac_prog", so it can be a program name with args.
3715
set dummy $ac_prog; ac_word=$2
3716 3717 3718 3719
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_GCOV+:} false; then :
  $as_echo_n "(cached) " >&6
3720
else
3721 3722
  if test -n "$GCOV"; then
  ac_cv_prog_GCOV="$GCOV" # Let the user override the test.
3723
else
3724 3725 3726 3727 3728
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
3729 3730 3731 3732
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_GCOV="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3733 3734 3735
    break 2
  fi
done
3736 3737
  done
IFS=$as_save_IFS
3738

3739
fi
3740
fi
3741 3742 3743 3744
GCOV=$ac_cv_prog_GCOV
if test -n "$GCOV"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCOV" >&5
$as_echo "$GCOV" >&6; }
3745
else
3746 3747
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
3748 3749
fi

3750

3751 3752
  test -n "$GCOV" && break
done
3753

3754 3755
if test -z "$GCOV"; then
  as_fn_error $? "gcov not found" "$LINENO" 5
3756
fi
3757 3758 3759 3760 3761 3762 3763 3764
for ac_prog in lcov
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_LCOV+:} false; then :
  $as_echo_n "(cached) " >&6
3765
else
3766 3767 3768 3769
  if test -n "$LCOV"; then
  ac_cv_prog_LCOV="$LCOV" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3770 3771 3772 3773
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
3774 3775 3776 3777
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_LCOV="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3778 3779 3780
    break 2
  fi
done
3781 3782
  done
IFS=$as_save_IFS
3783 3784

fi
3785 3786 3787 3788 3789
fi
LCOV=$ac_cv_prog_LCOV
if test -n "$LCOV"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LCOV" >&5
$as_echo "$LCOV" >&6; }
3790
else
3791 3792
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
3793 3794 3795
fi


3796 3797
  test -n "$LCOV" && break
done
3798

3799 3800
if test -z "$LCOV"; then
  as_fn_error $? "lcov not found" "$LINENO" 5
3801
fi
3802 3803 3804 3805 3806 3807 3808 3809
for ac_prog in genhtml
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_GENHTML+:} false; then :
  $as_echo_n "(cached) " >&6
3810
else
3811 3812 3813 3814
  if test -n "$GENHTML"; then
  ac_cv_prog_GENHTML="$GENHTML" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3815 3816 3817 3818
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
3819 3820 3821 3822
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_GENHTML="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
3823 3824 3825
    break 2
  fi
done
3826 3827
  done
IFS=$as_save_IFS
M
Michael Meskes 已提交
3828

3829 3830
fi
fi
3831 3832 3833 3834
GENHTML=$ac_cv_prog_GENHTML
if test -n "$GENHTML"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GENHTML" >&5
$as_echo "$GENHTML" >&6; }
3835
else
3836 3837
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
3838
fi
3839 3840


3841 3842
  test -n "$GENHTML" && break
done
3843

3844 3845
if test -z "$GENHTML"; then
  as_fn_error $? "genhtml not found" "$LINENO" 5
3846
fi
3847 3848 3849 3850 3851 3852 3853
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-coverage option" "$LINENO" 5
      ;;
3854 3855
  esac

3856 3857
else
  enable_coverage=no
3858

3859 3860
fi

3861 3862


3863

3864 3865 3866
#
# DTrace
#
3867

3868
pgac_args="$pgac_args enable_dtrace"
3869

3870 3871 3872 3873 3874
# Check whether --enable-dtrace was given.
if test "${enable_dtrace+set}" = set; then :
  enableval=$enable_dtrace;
  case $enableval in
    yes)
3875

3876
$as_echo "#define ENABLE_DTRACE 1" >>confdefs.h
3877

3878 3879 3880 3881 3882 3883 3884 3885
for ac_prog in dtrace
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_DTRACE+:} false; then :
  $as_echo_n "(cached) " >&6
3886
else
3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903
  if test -n "$DTRACE"; then
  ac_cv_prog_DTRACE="$DTRACE" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_DTRACE="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
3904

3905 3906
fi
fi
3907 3908 3909 3910 3911 3912 3913 3914
DTRACE=$ac_cv_prog_DTRACE
if test -n "$DTRACE"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DTRACE" >&5
$as_echo "$DTRACE" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
3915

3916

3917 3918 3919 3920 3921
  test -n "$DTRACE" && break
done

if test -z "$DTRACE"; then
  as_fn_error $? "dtrace not found" "$LINENO" 5
3922 3923
fi

3924 3925 3926 3927 3928 3929 3930 3931
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-dtrace option" "$LINENO" 5
      ;;
  esac
3932

3933
else
3934
  enable_dtrace=no
3935

3936
fi
3937

3938

3939 3940


3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969
#
# TAP tests
#

pgac_args="$pgac_args enable_tap_tests"

# Check whether --enable-tap-tests was given.
if test "${enable_tap_tests+set}" = set; then :
  enableval=$enable_tap_tests;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-tap-tests option" "$LINENO" 5
      ;;
  esac

else
  enable_tap_tests=no

fi




3970
#
3971
# Block size
3972
#
3973 3974
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for block size" >&5
$as_echo_n "checking for block size... " >&6; }
3975

3976
pgac_args="$pgac_args with_blocksize"
3977 3978


3979 3980 3981
# Check whether --with-blocksize was given.
if test "${with_blocksize+set}" = set; then :
  withval=$with_blocksize;
3982 3983
  case $withval in
    yes)
3984
      as_fn_error $? "argument required for --with-blocksize option" "$LINENO" 5
3985 3986
      ;;
    no)
3987
      as_fn_error $? "argument required for --with-blocksize option" "$LINENO" 5
3988 3989
      ;;
    *)
3990
      blocksize=$withval
3991 3992 3993
      ;;
  esac

3994 3995
else
  blocksize=32
P
Peter Eisentraut 已提交
3996 3997
fi

3998

3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014
case ${blocksize} in
  1) BLCKSZ=1024;;
  2) BLCKSZ=2048;;
  4) BLCKSZ=4096;;
  8) BLCKSZ=8192;;
 16) BLCKSZ=16384;;
 32) BLCKSZ=32768;;
  *) as_fn_error $? "Invalid block size. Allowed values are 1,2,4,8,16,32." "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${blocksize}kB" >&5
$as_echo "${blocksize}kB" >&6; }


cat >>confdefs.h <<_ACEOF
#define BLCKSZ ${BLCKSZ}
_ACEOF
4015 4016


4017
#
4018
# Relation segment size
4019
#
4020 4021
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for segment size" >&5
$as_echo_n "checking for segment size... " >&6; }
4022

4023
pgac_args="$pgac_args with_segsize"
4024

4025

4026 4027 4028
# Check whether --with-segsize was given.
if test "${with_segsize+set}" = set; then :
  withval=$with_segsize;
4029 4030
  case $withval in
    yes)
4031
      as_fn_error $? "argument required for --with-segsize option" "$LINENO" 5
4032 4033
      ;;
    no)
4034
      as_fn_error $? "argument required for --with-segsize option" "$LINENO" 5
4035 4036
      ;;
    *)
4037
      segsize=$withval
4038 4039 4040 4041
      ;;
  esac

else
4042
  segsize=1
P
Peter Eisentraut 已提交
4043 4044
fi

4045

4046
# this expression is set up to avoid unnecessary integer overflow
4047 4048
# blocksize is already guaranteed to be a factor of 1024
RELSEG_SIZE=`expr '(' 1024 / ${blocksize} ')' '*' ${segsize} '*' 1024`
4049 4050 4051
test $? -eq 0 || exit 1
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${segsize}GB" >&5
$as_echo "${segsize}GB" >&6; }
4052

4053

4054 4055 4056
cat >>confdefs.h <<_ACEOF
#define RELSEG_SIZE ${RELSEG_SIZE}
_ACEOF
P
Peter Eisentraut 已提交
4057 4058


4059
#
4060
# WAL block size
4061
#
4062 4063
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WAL block size" >&5
$as_echo_n "checking for WAL block size... " >&6; }
4064

4065
pgac_args="$pgac_args with_wal_blocksize"
4066 4067


4068 4069 4070
# Check whether --with-wal-blocksize was given.
if test "${with_wal_blocksize+set}" = set; then :
  withval=$with_wal_blocksize;
4071 4072
  case $withval in
    yes)
4073
      as_fn_error $? "argument required for --with-wal-blocksize option" "$LINENO" 5
4074 4075
      ;;
    no)
4076
      as_fn_error $? "argument required for --with-wal-blocksize option" "$LINENO" 5
4077 4078
      ;;
    *)
4079
      wal_blocksize=$withval
4080 4081 4082 4083
      ;;
  esac

else
4084
  wal_blocksize=32
P
Peter Eisentraut 已提交
4085 4086
fi

4087

4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099
case ${wal_blocksize} in
  1) XLOG_BLCKSZ=1024;;
  2) XLOG_BLCKSZ=2048;;
  4) XLOG_BLCKSZ=4096;;
  8) XLOG_BLCKSZ=8192;;
 16) XLOG_BLCKSZ=16384;;
 32) XLOG_BLCKSZ=32768;;
 64) XLOG_BLCKSZ=65536;;
  *) as_fn_error $? "Invalid WAL block size. Allowed values are 1,2,4,8,16,32,64." "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${wal_blocksize}kB" >&5
$as_echo "${wal_blocksize}kB" >&6; }
4100 4101


4102 4103 4104
cat >>confdefs.h <<_ACEOF
#define XLOG_BLCKSZ ${XLOG_BLCKSZ}
_ACEOF
4105 4106


4107
#
4108
# WAL segment size
4109
#
4110 4111
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for WAL segment size" >&5
$as_echo_n "checking for WAL segment size... " >&6; }
4112

4113
pgac_args="$pgac_args with_wal_segsize"
4114 4115


4116 4117 4118
# Check whether --with-wal-segsize was given.
if test "${with_wal_segsize+set}" = set; then :
  withval=$with_wal_segsize;
4119 4120
  case $withval in
    yes)
4121
      as_fn_error $? "argument required for --with-wal-segsize option" "$LINENO" 5
4122 4123
      ;;
    no)
4124
      as_fn_error $? "argument required for --with-wal-segsize option" "$LINENO" 5
4125 4126
      ;;
    *)
4127
      wal_segsize=$withval
4128 4129 4130
      ;;
  esac

4131 4132
else
  wal_segsize=64
P
Peter Eisentraut 已提交
4133 4134
fi

4135

4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152
case ${wal_segsize} in
  1) ;;
  2) ;;
  4) ;;
  8) ;;
 16) ;;
 32) ;;
 64) ;;
  *) as_fn_error $? "Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64." "$LINENO" 5
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${wal_segsize}MB" >&5
$as_echo "${wal_segsize}MB" >&6; }


cat >>confdefs.h <<_ACEOF
#define XLOG_SEG_SIZE (${wal_segsize} * 1024 * 1024)
_ACEOF
4153 4154


4155 4156 4157
#
# C compiler
#
B
Bruce Momjian 已提交
4158

4159 4160 4161
# 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.
4162

4163
pgac_args="$pgac_args with_CC"
4164

4165

4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179
# Check whether --with-CC was given.
if test "${with_CC+set}" = set; then :
  withval=$with_CC;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-CC option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-CC option" "$LINENO" 5
      ;;
    *)
      CC=$with_CC
      ;;
  esac
4180 4181 4182

fi

4183

4184

4185 4186 4187 4188 4189
case $template in
  aix) pgac_cc_list="gcc xlc";;
 irix) pgac_cc_list="cc";; # no gcc
    *) pgac_cc_list="gcc cc";;
esac
4190

4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
if test -n "$ac_tool_prefix"; then
  for ac_prog in $pgac_cc_list
  do
    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_CC+:} false; then :
  $as_echo_n "(cached) " >&6
4205
else
4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220
  if test -n "$CC"; then
  ac_cv_prog_CC="$CC" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
M
Michael Meskes 已提交
4221
  done
4222
IFS=$as_save_IFS
4223 4224

fi
4225 4226 4227 4228 4229
fi
CC=$ac_cv_prog_CC
if test -n "$CC"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
$as_echo "$CC" >&6; }
4230
else
4231 4232 4233
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
4234

4235

4236 4237
    test -n "$CC" && break
  done
4238
fi
4239 4240 4241 4242 4243 4244 4245 4246 4247 4248
if test -z "$CC"; then
  ac_ct_CC=$CC
  for ac_prog in $pgac_cc_list
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_CC+:} false; then :
  $as_echo_n "(cached) " >&6
4249
else
4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266
  if test -n "$ac_ct_CC"; then
  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_CC="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
4267

4268 4269
fi
fi
4270 4271 4272 4273 4274 4275 4276
ac_ct_CC=$ac_cv_prog_ac_ct_CC
if test -n "$ac_ct_CC"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
$as_echo "$ac_ct_CC" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
4277 4278
fi

4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293

  test -n "$ac_ct_CC" && break
done

  if test "x$ac_ct_CC" = x; then
    CC=""
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    CC=$ac_ct_CC
  fi
4294 4295
fi

4296

4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314
test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "no acceptable C compiler found in \$PATH
See \`config.log' for more details" "$LINENO" 5; }

# Provide some information about the compiler.
$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
set X $ac_compile
ac_compiler=$2
for ac_option in --version -v -V -qversion; do
  { { ac_try="$ac_compiler $ac_option >&5"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
4315
  ac_status=$?
4316 4317 4318 4319 4320 4321 4322 4323 4324 4325
  if test -s conftest.err; then
    sed '10a\
... rest of stderr output deleted ...
         10q' conftest.err >conftest.er1
    cat conftest.er1 >&5
  fi
  rm -f conftest.er1 conftest.err
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }
done
4326

4327
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4328
/* end confdefs.h.  */
4329

4330 4331 4332
int
main ()
{
4333

4334 4335 4336 4337
  ;
  return 0;
}
_ACEOF
4338 4339 4340 4341 4342 4343 4344 4345
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
# Try to create an executable without -o first, disregard a.out.
# It will help us diagnose broken compilers, and finding out an intuition
# of exeext.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
$as_echo_n "checking whether the C compiler works... " >&6; }
ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
4346

4347 4348
# The possible output files:
ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
4349

4350 4351 4352 4353 4354 4355 4356 4357 4358
ac_rmfiles=
for ac_file in $ac_files
do
  case $ac_file in
    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
  esac
done
rm -f $ac_rmfiles
4359

4360 4361 4362 4363
if { { ac_try="$ac_link_default"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
M
Michael Meskes 已提交
4364
esac
4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link_default") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; then :
  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
# in a Makefile.  We should not override ac_cv_exeext if it was cached,
# so that the user can short-circuit this test for compilers unknown to
# Autoconf.
for ac_file in $ac_files ''
do
  test -f "$ac_file" || continue
  case $ac_file in
    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
	;;
    [ab].out )
	# We found the default executable, but exeext='' is most
	# certainly right.
	break;;
    *.* )
	if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
	then :; else
	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
	fi
	# We set ac_cv_exeext here because the later test for it is not
	# safe: cross compilers may not add the suffix if given an `-o'
	# argument, so we may need to know it at that point already.
	# Even if this section looks crufty: it has the advantage of
	# actually working.
	break;;
    * )
	break;;
  esac
done
test "$ac_cv_exeext" = no && ac_cv_exeext=
4402 4403

else
4404
  ac_file=''
4405
fi
4406 4407 4408 4409
if test -z "$ac_file"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
$as_echo "$as_me: failed program was:" >&5
4410 4411
sed 's/^/| /' conftest.$ac_ext >&5

4412 4413 4414 4415
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "C compiler cannot create executables
See \`config.log' for more details" "$LINENO" 5; }
4416
else
4417 4418 4419 4420 4421 4422 4423 4424
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
$as_echo_n "checking for C compiler default output file name... " >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
$as_echo "$ac_file" >&6; }
ac_exeext=$ac_cv_exeext
4425

4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437
rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
ac_clean_files=$ac_clean_files_save
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
$as_echo_n "checking for suffix of executables... " >&6; }
if { { ac_try="$ac_link"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link") 2>&5
4438
  ac_status=$?
4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; then :
  # If both `conftest.exe' and `conftest' are `present' (well, observable)
# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
# work properly (i.e., refer to `conftest.exe'), while it won't with
# `rm'.
for ac_file in conftest.exe conftest conftest.*; do
  test -f "$ac_file" || continue
  case $ac_file in
    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
	  break;;
    * ) break;;
  esac
done
4454
else
4455 4456 4457 4458
  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot compute suffix of executables: cannot compile and link
See \`config.log' for more details" "$LINENO" 5; }
4459
fi
4460 4461 4462
rm -f conftest conftest$ac_cv_exeext
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
$as_echo "$ac_cv_exeext" >&6; }
4463

4464 4465 4466 4467 4468 4469
rm -f conftest.$ac_ext
EXEEXT=$ac_cv_exeext
ac_exeext=$EXEEXT
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <stdio.h>
4470 4471 4472
int
main ()
{
4473 4474 4475
FILE *f = fopen ("conftest.out", "w");
 return ferror (f) || fclose (f) != 0;

4476 4477 4478 4479
  ;
  return 0;
}
_ACEOF
4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504
ac_clean_files="$ac_clean_files conftest.out"
# Check that the compiler produces executables we can run.  If not, either
# the compiler is broken, or we cross compile.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
$as_echo_n "checking whether we are cross compiling... " >&6; }
if test "$cross_compiling" != yes; then
  { { ac_try="$ac_link"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_link") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }
  if { ac_try='./conftest$ac_cv_exeext'
  { { case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_try") 2>&5
4505
  ac_status=$?
4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; }; then
    cross_compiling=no
  else
    if test "$cross_compiling" = maybe; then
	cross_compiling=yes
    else
	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot run C compiled programs.
If you meant to cross compile, use \`--host'.
See \`config.log' for more details" "$LINENO" 5; }
    fi
  fi
M
Michael Meskes 已提交
4520
fi
4521 4522
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
$as_echo "$cross_compiling" >&6; }
4523

4524 4525 4526 4527 4528 4529
rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
ac_clean_files=$ac_clean_files_save
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
$as_echo_n "checking for suffix of object files... " >&6; }
if ${ac_cv_objext+:} false; then :
  $as_echo_n "(cached) " >&6
4530
else
4531
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4532
/* end confdefs.h.  */
4533

4534 4535 4536
int
main ()
{
4537

4538 4539 4540 4541
  ;
  return 0;
}
_ACEOF
4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561
rm -f conftest.o conftest.obj
if { { ac_try="$ac_compile"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_compile") 2>&5
  ac_status=$?
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }; then :
  for ac_file in conftest.o conftest.obj conftest.*; do
  test -f "$ac_file" || continue;
  case $ac_file in
    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
       break;;
  esac
done
4562
else
4563
  $as_echo "$as_me: failed program was:" >&5
4564 4565
sed 's/^/| /' conftest.$ac_ext >&5

4566 4567 4568 4569
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot compute suffix of object files: cannot compile
See \`config.log' for more details" "$LINENO" 5; }
4570
fi
4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582
rm -f conftest.$ac_cv_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
$as_echo "$ac_cv_objext" >&6; }
OBJEXT=$ac_cv_objext
ac_objext=$OBJEXT
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
if ${ac_cv_c_compiler_gnu+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4583
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
4584 4585 4586 4587

int
main ()
{
4588 4589 4590 4591
#ifndef __GNUC__
       choke me
#endif

P
Peter Eisentraut 已提交
4592 4593 4594 4595
  ;
  return 0;
}
_ACEOF
4596 4597
if ac_fn_c_try_compile "$LINENO"; then :
  ac_compiler_gnu=yes
P
Peter Eisentraut 已提交
4598
else
4599
  ac_compiler_gnu=no
4600
fi
4601 4602
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_cv_c_compiler_gnu=$ac_compiler_gnu
4603

M
Michael Meskes 已提交
4604
fi
4605 4606 4607 4608
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
$as_echo "$ac_cv_c_compiler_gnu" >&6; }
if test $ac_compiler_gnu = yes; then
  GCC=yes
4609
else
4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623
  GCC=
fi
ac_test_CFLAGS=${CFLAGS+set}
ac_save_CFLAGS=$CFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
$as_echo_n "checking whether $CC accepts -g... " >&6; }
if ${ac_cv_prog_cc_g+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_save_c_werror_flag=$ac_c_werror_flag
   ac_c_werror_flag=yes
   ac_cv_prog_cc_g=no
   CFLAGS="-g"
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4624
/* end confdefs.h.  */
4625 4626 4627 4628

int
main ()
{
4629

4630 4631 4632 4633
  ;
  return 0;
}
_ACEOF
4634 4635
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_prog_cc_g=yes
4636
else
4637 4638
  CFLAGS=""
      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4639
/* end confdefs.h.  */
4640 4641 4642 4643

int
main ()
{
4644

4645 4646 4647 4648
  ;
  return 0;
}
_ACEOF
4649 4650
if ac_fn_c_try_compile "$LINENO"; then :

4651
else
4652 4653 4654 4655
  ac_c_werror_flag=$ac_save_c_werror_flag
	 CFLAGS="-g"
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
4656

4657 4658 4659 4660 4661 4662 4663 4664 4665 4666
int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_prog_cc_g=yes
4667
fi
4668
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4669
fi
4670
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4671
fi
4672 4673
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
   ac_c_werror_flag=$ac_save_c_werror_flag
4674
fi
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
$as_echo "$ac_cv_prog_cc_g" >&6; }
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
    CFLAGS="-g -O2"
  else
    CFLAGS="-g"
  fi
4685
else
4686 4687 4688 4689 4690
  if test "$GCC" = yes; then
    CFLAGS="-O2"
  else
    CFLAGS=
  fi
M
Michael Meskes 已提交
4691
fi
4692 4693 4694 4695 4696 4697 4698 4699
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
if ${ac_cv_prog_cc_c89+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_cv_prog_cc_c89=no
ac_save_CC=$CC
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4700
/* end confdefs.h.  */
4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721
#include <stdarg.h>
#include <stdio.h>
struct stat;
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
struct buf { int x; };
FILE * (*rcsopen) (struct buf *, struct stat *, int);
static char *e (p, i)
     char **p;
     int i;
{
  return p[i];
}
static char *f (char * (*g) (char **, int), char **p, ...)
{
  char *s;
  va_list v;
  va_start (v,p);
  s = g (p, va_arg (v,int));
  va_end (v);
  return s;
}
4722

4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742
/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
   function prototypes and stuff, but not '\xHH' hex character constants.
   These don't provoke an error unfortunately, instead are silently treated
   as 'x'.  The following induces an error, until -std is added to get
   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
   array size at least.  It's necessary to write '\x00'==0 to get something
   that's true only with -std.  */
int osf4_cc_array ['\x00' == 0 ? 1 : -1];

/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
   inside strings and character constants.  */
#define FOO(x) 'x'
int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];

int test (int i, double x);
struct s1 {int (*f) (int a);};
struct s2 {int (*f) (double a);};
int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
int argc;
char **argv;
4743 4744 4745
int
main ()
{
4746
return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
4747 4748 4749 4750
  ;
  return 0;
}
_ACEOF
4751 4752 4753 4754 4755 4756
for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
do
  CC="$ac_save_CC $ac_arg"
  if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_prog_cc_c89=$ac_arg
4757
fi
4758 4759
rm -f core conftest.err conftest.$ac_objext
  test "x$ac_cv_prog_cc_c89" != "xno" && break
M
Michael Meskes 已提交
4760
done
4761 4762
rm -f conftest.$ac_ext
CC=$ac_save_CC
M
Michael Meskes 已提交
4763

4764
fi
4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778
# AC_CACHE_VAL
case "x$ac_cv_prog_cc_c89" in
  x)
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
$as_echo "none needed" >&6; } ;;
  xno)
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
$as_echo "unsupported" >&6; } ;;
  *)
    CC="$CC $ac_cv_prog_cc_c89"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
esac
if test "x$ac_cv_prog_cc_c89" != xno; then :
4779

M
Michael Meskes 已提交
4780
fi
4781

4782 4783 4784 4785 4786
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
M
Michael Meskes 已提交
4787

B
Bruce Momjian 已提交
4788

4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834
#
# C++ compiler
#
#
# AC_PROG_CXX will add "-g -O2" to CXXFLAGS, if CXXFLAGS was not already set.
# We don't want that, because we derive CXXFLAGS from CFLAGS later on. Set
# CXXFLAGS to an empty string explicitly before invoking AC_PROG_CXX, to
# avoid that.
ac_save_CXXFLAGS=$CXXFLAGS
CXXFLAGS=""
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
if test -z "$CXX"; then
  if test -n "$CCC"; then
    CXX=$CCC
  else
    if test -n "$ac_tool_prefix"; then
  for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
  do
    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_CXX+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -n "$CXX"; then
  ac_cv_prog_CXX="$CXX" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
4835

4836 4837 4838 4839 4840 4841
fi
fi
CXX=$ac_cv_prog_CXX
if test -n "$CXX"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
$as_echo "$CXX" >&6; }
4842
else
4843 4844
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
4845 4846
fi

M
Michael Meskes 已提交
4847

4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860
    test -n "$CXX" && break
  done
fi
if test -z "$CXX"; then
  ac_ct_CXX=$CXX
  for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_CXX+:} false; then :
  $as_echo_n "(cached) " >&6
M
Michael Meskes 已提交
4861
else
4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874
  if test -n "$ac_ct_CXX"; then
  ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_CXX="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
4875
  fi
4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888
done
  done
IFS=$as_save_IFS

fi
fi
ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
if test -n "$ac_ct_CXX"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
$as_echo "$ac_ct_CXX" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
4889 4890
fi

4891 4892 4893 4894 4895 4896

  test -n "$ac_ct_CXX" && break
done

  if test "x$ac_ct_CXX" = x; then
    CXX="g++"
4897
  else
4898 4899 4900 4901 4902 4903 4904
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    CXX=$ac_ct_CXX
4905 4906 4907
  fi
fi

4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933
  fi
fi
# Provide some information about the compiler.
$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5
set X $ac_compile
ac_compiler=$2
for ac_option in --version -v -V -qversion; do
  { { ac_try="$ac_compiler $ac_option >&5"
case "(($ac_try" in
  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  *) ac_try_echo=$ac_try;;
esac
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
$as_echo "$ac_try_echo"; } >&5
  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
  ac_status=$?
  if test -s conftest.err; then
    sed '10a\
... rest of stderr output deleted ...
         10q' conftest.err >conftest.er1
    cat conftest.er1 >&5
  fi
  rm -f conftest.er1 conftest.err
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  test $ac_status = 0; }
done
4934

4935 4936 4937
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
if ${ac_cv_cxx_compiler_gnu+:} false; then :
4938 4939 4940 4941
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
4942

4943 4944 4945
int
main ()
{
4946 4947 4948
#ifndef __GNUC__
       choke me
#endif
4949 4950 4951 4952 4953

  ;
  return 0;
}
_ACEOF
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081
if ac_fn_cxx_try_compile "$LINENO"; then :
  ac_compiler_gnu=yes
else
  ac_compiler_gnu=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_cv_cxx_compiler_gnu=$ac_compiler_gnu

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5
$as_echo "$ac_cv_cxx_compiler_gnu" >&6; }
if test $ac_compiler_gnu = yes; then
  GXX=yes
else
  GXX=
fi
ac_test_CXXFLAGS=${CXXFLAGS+set}
ac_save_CXXFLAGS=$CXXFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
$as_echo_n "checking whether $CXX accepts -g... " >&6; }
if ${ac_cv_prog_cxx_g+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_save_cxx_werror_flag=$ac_cxx_werror_flag
   ac_cxx_werror_flag=yes
   ac_cv_prog_cxx_g=no
   CXXFLAGS="-g"
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
  ac_cv_prog_cxx_g=yes
else
  CXXFLAGS=""
      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :

else
  ac_cxx_werror_flag=$ac_save_cxx_werror_flag
	 CXXFLAGS="-g"
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
  ac_cv_prog_cxx_g=yes
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
   ac_cxx_werror_flag=$ac_save_cxx_werror_flag
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5
$as_echo "$ac_cv_prog_cxx_g" >&6; }
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
    CXXFLAGS="-g -O2"
  else
    CXXFLAGS="-g"
  fi
else
  if test "$GXX" = yes; then
    CXXFLAGS="-O2"
  else
    CXXFLAGS=
  fi
fi
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu

CXXFLAGS=$ac_save_CXXFLAGS

# Check if it's Intel's compiler, which (usually) pretends to be gcc,
# but has idiosyncrasies of its own.  We assume icc will define
# __INTEL_COMPILER regardless of CFLAGS.

cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
#ifndef __INTEL_COMPILER
choke me
#endif
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ICC=yes
else
  ICC=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext

5082 5083 5084 5085
# Check if it's Sun Studio compiler. We assume that
# __SUNPRO_C will be defined for Sun Studio compilers
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
5086

5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102
int
main ()
{
#ifndef __SUNPRO_C
choke me
#endif
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  SUN_STUDIO_CC=yes
else
  SUN_STUDIO_CC=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5103 5104 5105



5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168
unset CFLAGS

#
# Read the template
#
. "$srcdir/src/template/$template" || exit

# CFLAGS are selected so:
# If the user specifies something in the environment, that is used.
# else:  If the template file set something, that is used.
# else:  If coverage was enabled, don't set anything.
# else:  If the compiler is GCC, then we use -O3.
# else:  If the compiler is something else, then we use -O, unless debugging.

if test "$ac_env_CFLAGS_set" = set; then
  CFLAGS=$ac_env_CFLAGS_value
elif test "${CFLAGS+set}" = set; then
  : # (keep what template set)
elif test "$enable_coverage" = yes; then
  : # no optimization by default
elif test "$GCC" = yes; then
  CFLAGS="-O3"
else
  # if the user selected debug mode, don't use -O
  if test "$enable_debug" != yes; then
    CFLAGS="-O"
  fi
fi

# For GPDB, Use C99, rather than C89, compile rules
#
#
if test "$GCC" = yes; then
  if test "$ICC" = yes; then
    CFLAGS="$CFLAGS -c99 "
  else
    CFLAGS="$CFLAGS -std=gnu99 "
  fi
fi


# Check for x86 cpuid instruction to determine if we can perform a
# runtime check
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __get_cpuid" >&5
$as_echo_n "checking for __get_cpuid... " >&6; }
if ${pgac_cv__get_cpuid+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <cpuid.h>
int
main ()
{
unsigned int exx[4] = {0, 0, 0, 0};
  __get_cpuid(1, &exx[0], &exx[1], &exx[2], &exx[3]);

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv__get_cpuid="yes"
5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379
else
  pgac_cv__get_cpuid="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__get_cpuid" >&5
$as_echo "$pgac_cv__get_cpuid" >&6; }
if test x"$pgac_cv__get_cpuid" = x"yes"; then

$as_echo "#define HAVE__GET_CPUID 1" >>confdefs.h

fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __cpuid" >&5
$as_echo_n "checking for __cpuid... " >&6; }
if ${pgac_cv__cpuid+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <intrin.h>
int
main ()
{
unsigned int exx[4] = {0, 0, 0, 0};
  __get_cpuid(exx[0], 1);

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv__cpuid="yes"
else
  pgac_cv__cpuid="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__cpuid" >&5
$as_echo "$pgac_cv__cpuid" >&6; }
if test x"$pgac_cv__cpuid" = x"yes"; then

$as_echo "#define HAVE__CPUID 1" >>confdefs.h

fi

# Check for Intel SSE 4.2 intrinsics to do CRC calculations.
#
# First check if the _mm_crc32_u8 and _mm_crc32_u64 intrinsics can be used
# with the default compiler flags. If not, check if adding the -msse4.2
# flag helps. CFLAGS_SSE42 is set to -msse4.2 if that's required.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=" >&5
$as_echo_n "checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=... " >&6; }
if ${pgac_cv_sse42_crc32_intrinsics_+:} false; then :
  $as_echo_n "(cached) " >&6
else
  pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS "
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <nmmintrin.h>
int
main ()
{
unsigned int crc = 0;
   crc = _mm_crc32_u8(crc, 0);
   crc = _mm_crc32_u32(crc, 0);
   /* return computed value, to prevent the above being optimized away */
   return crc == 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_sse42_crc32_intrinsics_=yes
else
  pgac_cv_sse42_crc32_intrinsics_=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
CFLAGS="$pgac_save_CFLAGS"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_sse42_crc32_intrinsics_" >&5
$as_echo "$pgac_cv_sse42_crc32_intrinsics_" >&6; }
if test x"$pgac_cv_sse42_crc32_intrinsics_" = x"yes"; then
  CFLAGS_SSE42=""
  pgac_sse42_crc32_intrinsics=yes
fi

if test x"$pgac_sse42_crc32_intrinsics" != x"yes"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=-msse4.2" >&5
$as_echo_n "checking for _mm_crc32_u8 and _mm_crc32_u32 with CFLAGS=-msse4.2... " >&6; }
if ${pgac_cv_sse42_crc32_intrinsics__msse4_2+:} false; then :
  $as_echo_n "(cached) " >&6
else
  pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -msse4.2"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <nmmintrin.h>
int
main ()
{
unsigned int crc = 0;
   crc = _mm_crc32_u8(crc, 0);
   crc = _mm_crc32_u32(crc, 0);
   /* return computed value, to prevent the above being optimized away */
   return crc == 0;
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_sse42_crc32_intrinsics__msse4_2=yes
else
  pgac_cv_sse42_crc32_intrinsics__msse4_2=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
CFLAGS="$pgac_save_CFLAGS"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_sse42_crc32_intrinsics__msse4_2" >&5
$as_echo "$pgac_cv_sse42_crc32_intrinsics__msse4_2" >&6; }
if test x"$pgac_cv_sse42_crc32_intrinsics__msse4_2" = x"yes"; then
  CFLAGS_SSE42="-msse4.2"
  pgac_sse42_crc32_intrinsics=yes
fi

fi


# Are we targeting a processor that supports SSE 4.2? gcc, clang and icc all
# define __SSE4_2__ in that case.
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

#ifndef __SSE4_2__
#error __SSE4_2__ not defined
#endif

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  SSE4_2_TARGETED=1
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext

# Select CRC-32C implementation.
#
# If we are targeting a processor that has SSE 4.2 instructions, we can use the
# special CRC instructions for calculating CRC-32C. If we're not targeting such
# a processor, but we can nevertheless produce code that uses the SSE
# intrinsics, perhaps with some extra CFLAGS, compile both implementations and
# select which one to use at runtime, depending on whether SSE 4.2 is supported
# by the processor we're running on.
#
# You can override this logic by setting the appropriate USE_*_CRC32 flag to 1
# in the template or configure command line.
if test x"$USE_SSE42_CRC32C" = x"" && test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"" && test x"$USE_SLICING_BY_8_CRC32C" = x""; then
  if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && test x"$SSE4_2_TARGETED" = x"1" ; then
    USE_SSE42_CRC32C=1
  else
    # the CPUID instruction is needed for the runtime check.
    if test x"$pgac_sse42_crc32_intrinsics" = x"yes" && (test x"$pgac_cv__get_cpuid" = x"yes" || test x"$pgac_cv__cpuid" = x"yes"); then
      USE_SSE42_CRC32C_WITH_RUNTIME_CHECK=1
    else
      # fall back to slicing-by-8 algorithm which doesn't require any special
      # CPU support.
      USE_SLICING_BY_8_CRC32C=1
    fi
  fi
fi

# Set PG_CRC32C_OBJS appropriately depending on the selected implementation.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking which CRC-32C implementation to use" >&5
$as_echo_n "checking which CRC-32C implementation to use... " >&6; }
if test x"$USE_SSE42_CRC32C" = x"1"; then

$as_echo "#define USE_SSE42_CRC32C 1" >>confdefs.h

  PG_CRC32C_OBJS="pg_crc32c_sse42.o"
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: SSE 4.2" >&5
$as_echo "SSE 4.2" >&6; }
else
  if test x"$USE_SSE42_CRC32C_WITH_RUNTIME_CHECK" = x"1"; then

$as_echo "#define USE_SSE42_CRC32C_WITH_RUNTIME_CHECK 1" >>confdefs.h

    PG_CRC32C_OBJS="pg_crc32c_sse42.o pg_crc32c_sb8.o pg_crc32c_choose.o"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: SSE 4.2 with runtime check" >&5
$as_echo "SSE 4.2 with runtime check" >&6; }
  else

$as_echo "#define USE_SLICING_BY_8_CRC32C 1" >>confdefs.h

    PG_CRC32C_OBJS="pg_crc32c_sb8.o"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: slicing-by-8" >&5
$as_echo "slicing-by-8" >&6; }
  fi
fi



5380 5381 5382 5383 5384
# set CFLAGS_VECTOR from the environment, if available
if test "$ac_env_CFLAGS_VECTOR_set" = set; then
  CFLAGS_VECTOR=$ac_env_CFLAGS_VECTOR_value
fi

5385 5386
# Some versions of GCC support some additional useful warning flags.
# Check whether they are supported, and add them to CFLAGS if so.
5387
# ICC pretends to be GCC but it's lying; it doesn't support these options.
5388 5389

if test "$GCC" = yes -a "$ICC" = no; then
5390
  CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -Wpointer-arith"
5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=uninitialized" >&5
$as_echo_n "checking if $CC supports -Werror=uninitialized... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -Werror=uninitialized"
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_c_werror_flag=$ac_save_c_werror_flag

5419
  # These work in some but not all gcc versions
5420 5421
  # GPDB code is full of declarations after statement.
  #PGAC_PROG_CC_CFLAGS_OPT([-Wdeclaration-after-statement])
5422
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wendif-labels" >&5
5423 5424 5425
$as_echo_n "checking if $CC supports -Wendif-labels... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -Wendif-labels"
5426 5427
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5428
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5429
/* end confdefs.h.  */
5430 5431 5432 5433

int
main ()
{
5434

5435 5436 5437 5438
  ;
  return 0;
}
_ACEOF
5439 5440 5441
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
5442
else
5443 5444 5445
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
5446
fi
5447
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5448
ac_c_werror_flag=$ac_save_c_werror_flag
5449 5450 5451 5452 5453 5454

  # This was included in -Wall/-Wformat in older GCC versions
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wformat-security" >&5
$as_echo_n "checking if $CC supports -Wformat-security... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -Wformat-security"
5455 5456
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5457
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5458 5459
/* end confdefs.h.  */

M
Michael Meskes 已提交
5460 5461 5462
int
main ()
{
5463

M
Michael Meskes 已提交
5464 5465 5466
  ;
  return 0;
}
5467
_ACEOF
5468 5469 5470
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5471
else
5472 5473 5474
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Marc G. Fournier 已提交
5475
fi
5476
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5477
ac_c_werror_flag=$ac_save_c_werror_flag
5478

5479 5480 5481 5482 5483
  # Disable strict-aliasing rules; needed for gcc 3.3+
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fno-strict-aliasing" >&5
$as_echo_n "checking if $CC supports -fno-strict-aliasing... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -fno-strict-aliasing"
5484 5485
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5486
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5487
/* end confdefs.h.  */
5488

5489 5490 5491
int
main ()
{
5492

M
Michael Meskes 已提交
5493
  ;
5494 5495 5496
  return 0;
}
_ACEOF
5497 5498 5499
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5500
else
5501 5502 5503
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5504
fi
5505
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5506
ac_c_werror_flag=$ac_save_c_werror_flag
5507 5508 5509 5510 5511 5512

  # Disable optimizations that assume no overflow; needed for gcc 4.3+
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fwrapv" >&5
$as_echo_n "checking if $CC supports -fwrapv... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -fwrapv"
5513 5514
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5515
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5516 5517 5518 5519 5520
/* end confdefs.h.  */

int
main ()
{
5521

M
Michael Meskes 已提交
5522 5523 5524 5525
  ;
  return 0;
}
_ACEOF
5526 5527 5528
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5529
else
5530 5531 5532
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5533
fi
5534
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5535
ac_c_werror_flag=$ac_save_c_werror_flag
M
Michael Meskes 已提交
5536

5537 5538 5539 5540 5541
  # Disable FP optimizations that cause various errors on gcc 4.5+ or maybe 4.6+
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fexcess-precision=standard" >&5
$as_echo_n "checking if $CC supports -fexcess-precision=standard... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -fexcess-precision=standard"
5542 5543
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5544
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5545 5546 5547 5548 5549
/* end confdefs.h.  */

int
main ()
{
5550

M
Michael Meskes 已提交
5551 5552 5553 5554
  ;
  return 0;
}
_ACEOF
5555 5556 5557
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5558
else
5559 5560 5561
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5562
fi
5563
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5564
ac_c_werror_flag=$ac_save_c_werror_flag
5565 5566 5567 5568 5569 5570 5571

  # Disable loop optimizations that get confused by variable-length struct
  # declarations in gcc 4.8+
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fno-aggressive-loop-optimizations" >&5
$as_echo_n "checking if $CC supports -fno-aggressive-loop-optimizations... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -fno-aggressive-loop-optimizations"
5572 5573
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5574
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5575 5576 5577 5578 5579
/* end confdefs.h.  */

int
main ()
{
5580

M
Michael Meskes 已提交
5581 5582 5583 5584
  ;
  return 0;
}
_ACEOF
5585 5586 5587
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5588
else
5589 5590 5591
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5592
fi
5593
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5594 5595 5596
ac_c_werror_flag=$ac_save_c_werror_flag


5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620
  # Silence compiler warnings that you get with modern versions of GCC.
  # All of these warnings have been fixed in later versions of PostgreSQL,
  # but GPDB is based on 8.2, so you get these. TODO: Remove when we catch up
  # with later PostgreSQL releases.
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wno-unused-but-set-variable" >&5
$as_echo_n "checking if $CC supports -Wno-unused-but-set-variable... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -Wno-unused-but-set-variable"
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
5621
else
5622 5623
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
5624 5625 5626
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5627
ac_c_werror_flag=$ac_save_c_werror_flag
5628 5629 5630 5631 5632

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wno-address" >&5
$as_echo_n "checking if $CC supports -Wno-address... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -Wno-address"
5633 5634
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5655
ac_c_werror_flag=$ac_save_c_werror_flag
5656 5657 5658 5659


  #-Wno-error=enum-compare -Wno-error=address -Wno-error=maybe-uninitialized

5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730
  # Optimization flags for specific files that benefit from vectorization
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -funroll-loops" >&5
$as_echo_n "checking whether $CC supports -funroll-loops... " >&6; }
if ${pgac_cv_prog_cc_cflags__funroll_loops+:} false; then :
  $as_echo_n "(cached) " >&6
else
  pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -funroll-loops"
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_prog_cc_cflags__funroll_loops=yes
else
  pgac_cv_prog_cc_cflags__funroll_loops=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_c_werror_flag=$ac_save_c_werror_flag
CFLAGS="$pgac_save_CFLAGS"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_cflags__funroll_loops" >&5
$as_echo "$pgac_cv_prog_cc_cflags__funroll_loops" >&6; }
if test x"$pgac_cv_prog_cc_cflags__funroll_loops" = x"yes"; then
  CFLAGS_VECTOR="${CFLAGS_VECTOR} -funroll-loops"
fi

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC supports -ftree-vectorize" >&5
$as_echo_n "checking whether $CC supports -ftree-vectorize... " >&6; }
if ${pgac_cv_prog_cc_cflags__ftree_vectorize+:} false; then :
  $as_echo_n "(cached) " >&6
else
  pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -ftree-vectorize"
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_prog_cc_cflags__ftree_vectorize=yes
else
  pgac_cv_prog_cc_cflags__ftree_vectorize=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_c_werror_flag=$ac_save_c_werror_flag
CFLAGS="$pgac_save_CFLAGS"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_cc_cflags__ftree_vectorize" >&5
$as_echo "$pgac_cv_prog_cc_cflags__ftree_vectorize" >&6; }
if test x"$pgac_cv_prog_cc_cflags__ftree_vectorize" = x"yes"; then
  CFLAGS_VECTOR="${CFLAGS_VECTOR} -ftree-vectorize"
fi

5731 5732 5733 5734 5735 5736 5737
elif test "$ICC" = yes; then
  # Intel's compiler has a bug/misoptimization in checking for
  # division by NAN (NaN == 0), -mp1 fixes it, so add it to the CFLAGS.
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -mp1" >&5
$as_echo_n "checking if $CC supports -mp1... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -mp1"
5738 5739
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5740
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5741 5742 5743 5744 5745
/* end confdefs.h.  */

int
main ()
{
5746

M
Michael Meskes 已提交
5747 5748 5749 5750
  ;
  return 0;
}
_ACEOF
5751 5752 5753
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5754
else
5755 5756 5757
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5758
fi
5759
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5760
ac_c_werror_flag=$ac_save_c_werror_flag
M
Michael Meskes 已提交
5761

5762 5763 5764 5765 5766
  # Make sure strict aliasing is off (though this is said to be the default)
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fno-strict-aliasing" >&5
$as_echo_n "checking if $CC supports -fno-strict-aliasing... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -fno-strict-aliasing"
5767 5768
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5769 5770 5771 5772 5773 5774
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
M
Michael Meskes 已提交
5775

5776 5777 5778 5779 5780 5781 5782
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5783
else
5784 5785 5786
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Michael Meskes 已提交
5787
fi
5788
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5789
ac_c_werror_flag=$ac_save_c_werror_flag
M
Michael Meskes 已提交
5790

5791 5792
elif test x"${CC}" = x"xlc"; then
  # AIX xlc has to have strict aliasing turned off too
5793 5794 5795 5796
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -qnoansialias" >&5
$as_echo_n "checking if $CC supports -qnoansialias... " >&6; }
pgac_save_CFLAGS=$CFLAGS
CFLAGS="$pgac_save_CFLAGS -qnoansialias"
5797 5798
ac_save_c_werror_flag=$ac_c_werror_flag
ac_c_werror_flag=yes
5799
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5800 5801 5802 5803 5804
/* end confdefs.h.  */

int
main ()
{
5805

M
Michael Meskes 已提交
5806 5807 5808 5809
  ;
  return 0;
}
_ACEOF
5810 5811 5812
if ac_fn_c_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5813
else
5814 5815 5816 5817 5818
  CFLAGS="$pgac_save_CFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5819
ac_c_werror_flag=$ac_save_c_werror_flag
M
Michael Meskes 已提交
5820 5821

fi
5822

5823 5824 5825
CFLAGS_VECTOR=$CFLAGS_VECTOR


5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841
# supply -g if --enable-debug
if test "$enable_debug" = yes && test "$ac_cv_prog_cc_g" = yes; then
  if test "$GCC" = yes; then
  	CFLAGS="$CFLAGS -g -ggdb"
  else
    CFLAGS="$CFLAGS -g"
  fi
fi

# enable code coverage if --enable-coverage
if test "$enable_coverage" = yes; then
  if test "$GCC" = yes; then
    CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
  else
    as_fn_error $? "--enable-coverage is supported only when using GCC" "$LINENO" 5
  fi
M
Michael Meskes 已提交
5842 5843
fi

5844 5845 5846 5847 5848 5849 5850 5851
# enable code coverage if --enable-coverage
if test "$enable_coverage" = yes; then
  if test "$GCC" = yes; then
    CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
  else
    as_fn_error $? "--enable-coverage is supported only when using GCC" "$LINENO" 5
  fi
fi
5852

5853 5854 5855
# enable profiling if --enable-profiling
if test "$enable_profiling" = yes && test "$ac_cv_prog_cc_g" = yes; then
  if test "$GCC" = yes; then
M
Michael Meskes 已提交
5856

5857
$as_echo "#define PROFILE_PID_DIR 1" >>confdefs.h
M
Michael Meskes 已提交
5858

5859
    CFLAGS="$CFLAGS -pg $PLATFORM_PROFILE_FLAGS"
M
Michael Meskes 已提交
5860
  else
5861 5862 5863
    as_fn_error $? "--enable-profiling is supported only when using GCC" "$LINENO" 5
  fi
fi
M
Michael Meskes 已提交
5864

5865 5866 5867
# We already have this in Makefile.win32, but configure needs it too
if test "$PORTNAME" = "win32"; then
  CPPFLAGS="$CPPFLAGS -I$srcdir/src/include/port/win32 -IgpAux/ext/win32/kfw-3-2-2/inc/krb5 -IgpAux/ext/win32/kfw-3-2-2/inc/krb5/gssapi -LgpAux/ext/win32/kfw-3-2-2/lib  -DEXEC_BACKEND -DUNSAFE_STAT_OK"
5868

5869 5870 5871 5872 5873 5874
fi

# Check if the compiler still works with the template settings
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler still works" >&5
$as_echo_n "checking whether the C compiler still works... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5875 5876 5877 5878 5879
/* end confdefs.h.  */

int
main ()
{
5880
return 0;
M
Michael Meskes 已提交
5881 5882 5883 5884
  ;
  return 0;
}
_ACEOF
5885 5886 5887
if ac_fn_c_try_link "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
M
Michael Meskes 已提交
5888
else
5889 5890 5891
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
   as_fn_error $? "cannot proceed" "$LINENO" 5
M
Michael Meskes 已提交
5892
fi
5893 5894
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
M
Michael Meskes 已提交
5895

5896 5897 5898
# Defend against gcc -ffast-math
if test "$GCC" = yes; then
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
5899 5900 5901 5902 5903
/* end confdefs.h.  */

int
main ()
{
5904 5905 5906
#ifdef __FAST_MATH__
choke me
#endif
M
Michael Meskes 已提交
5907 5908 5909 5910
  ;
  return 0;
}
_ACEOF
5911
if ac_fn_c_try_compile "$LINENO"; then :
M
Michael Meskes 已提交
5912

5913 5914
else
  as_fn_error $? "do not put -ffast-math in CFLAGS" "$LINENO" 5
M
Michael Meskes 已提交
5915
fi
5916
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
M
Michael Meskes 已提交
5917
fi
5918

5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980
# Since PostgreSQL is written in pure C, all the tests in this file
# add necessary flags to CFLAGS only. We have some C++ code in
# src/backend/gpopt, so we must also configure CXXFLAGS in the same way.
# However, some CFLAGS might not be applicable to C++, so we cannot just
# use CFLAGS as is with the C++ compiler. Derive CXXFLAGS from CFLAGS,
# by picking those CFLAGS that also work with the C++ compiler.
#
# This assumes that the C++ compiler is roughly compatible with the C
# compiler, and accepts the same flags. While we test that each flag works
# with the C++ compiler, we would miss any flags that we would need for
# the C++ compiler, but not for the C compiler. For example, if you tried
# to use CC=clang and CXX=g++, we would not know to apply flags that are
# needed for g++, but not by clang. So don't mix and match compiler
# families!

# Loop over all options in CFLAGS, and check if they also work with CXX.
# Add to CXXFLAGS those that do.
for cflag in $CFLAGS; do

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CXX supports $cflag" >&5
$as_echo_n "checking if $CXX supports $cflag... " >&6; }
pgac_save_CXXFLAGS=$CXXFLAGS
CXXFLAGS="$pgac_save_CXXFLAGS $cflag"
ac_save_cxx_werror_flag=$ac_cxx_werror_flag
ac_cxx_werror_flag=yes
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu

cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  CXXFLAGS="$pgac_save_CXXFLAGS"
                    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu

ac_cxx_werror_flag=$ac_save_cxx_werror_flag

done


5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
$as_echo_n "checking how to run the C preprocessor... " >&6; }
# On Suns, sometimes $CPP names a directory.
if test -n "$CPP" && test -d "$CPP"; then
  CPP=
fi
if test -z "$CPP"; then
  if ${ac_cv_prog_CPP+:} false; then :
  $as_echo_n "(cached) " >&6
else
      # Double quotes because CPP needs to be expanded
    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
    do
      ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
do
  # Use a header file that comes with gcc, so configuring glibc
  # with a fresh cross-compiler works.
  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
6005 6006 6007
  # <limits.h> exists even on freestanding compilers.
  # On the NeXT, cc -E runs the code through the compiler's parser,
  # not just through cpp. "Syntax error" is here to catch this case.
6008 6009
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
6010 6011 6012 6013 6014 6015
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
		     Syntax error
6016
_ACEOF
6017
if ac_fn_c_try_cpp "$LINENO"; then :
6018 6019

else
6020 6021
  # Broken: fails on valid input.
continue
6022
fi
6023
rm -f conftest.err conftest.i conftest.$ac_ext
6024

6025 6026
  # OK, works on sane cases.  Now check whether nonexistent headers
  # can be detected and how.
6027 6028
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
6029
#include <ac_nonexistent.h>
6030
_ACEOF
6031 6032 6033
if ac_fn_c_try_cpp "$LINENO"; then :
  # Broken: success on invalid input.
continue
6034
else
6035 6036 6037
  # Passes both tests.
ac_preproc_ok=:
break
6038
fi
6039
rm -f conftest.err conftest.i conftest.$ac_ext
6040

6041 6042 6043 6044 6045
done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
  break
6046 6047
fi

6048 6049 6050 6051 6052
    done
    ac_cv_prog_CPP=$CPP

fi
  CPP=$ac_cv_prog_CPP
6053
else
6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066
  ac_cv_prog_CPP=$CPP
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
$as_echo "$CPP" >&6; }
ac_preproc_ok=false
for ac_c_preproc_warn_flag in '' yes
do
  # Use a header file that comes with gcc, so configuring glibc
  # with a fresh cross-compiler works.
  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  # <limits.h> exists even on freestanding compilers.
  # On the NeXT, cc -E runs the code through the compiler's parser,
  # not just through cpp. "Syntax error" is here to catch this case.
6067 6068
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
6069 6070
#ifdef __STDC__
# include <limits.h>
6071
#else
6072
# include <assert.h>
M
Michael Meskes 已提交
6073
#endif
6074
		     Syntax error
M
Michael Meskes 已提交
6075
_ACEOF
6076
if ac_fn_c_try_cpp "$LINENO"; then :
M
Michael Meskes 已提交
6077

6078
else
6079 6080
  # Broken: fails on valid input.
continue
M
Michael Meskes 已提交
6081
fi
6082
rm -f conftest.err conftest.i conftest.$ac_ext
M
Michael Meskes 已提交
6083

6084 6085 6086 6087 6088
  # OK, works on sane cases.  Now check whether nonexistent headers
  # can be detected and how.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <ac_nonexistent.h>
6089
_ACEOF
6090 6091 6092 6093 6094 6095 6096
if ac_fn_c_try_cpp "$LINENO"; then :
  # Broken: success on invalid input.
continue
else
  # Passes both tests.
ac_preproc_ok=:
break
6097
fi
6098
rm -f conftest.err conftest.i conftest.$ac_ext
M
Michael Meskes 已提交
6099

6100
done
6101 6102 6103
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
6104

6105
else
6106
  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
6107
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
6108
as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
6109 6110
See \`config.log' for more details" "$LINENO" 5; }
fi
6111

6112 6113 6114 6115 6116
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu
6117 6118


6119

6120
BLD_ARCH=`echo $BLD_ARCH`
6121

D
Daniel Gustafsson 已提交
6122

6123 6124 6125
# Get the Greenplum version string from VERSION
bash getversion > VERSION
GP_VERSION=`cat VERSION`
6126

6127
GP_VERSION_SHORT=`bash ./getversion --short`
6128

M
Michael Meskes 已提交
6129

6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146
GP_VERSION_IN="src/include/catalog/gp_version.in"
GP_VERSION_HEADER="src/include/catalog/gp_version.h"
if grep '\$\$' $GP_VERSION_IN > /dev/null 2>&1 ; then
    sed "s,\\$.*\\$\\$,$GP_VERSION," $GP_VERSION_IN > $GP_VERSION_HEADER
fi

GP_BASH_VERSION_IN="gpMgmt/bin/lib/gp_bash_version.sh.in"
GP_BASH_VERSION_SH="gpMgmt/bin/lib/gp_bash_version.sh"
if grep '##' $GP_BASH_VERSION_IN > /dev/null 2>&1 ; then
    sed "s,##.*##,$GP_VERSION," $GP_BASH_VERSION_IN > $GP_BASH_VERSION_SH
fi

GPTEST_IN="src/test/regress/GPTest.pm.in"
GPTEST_PM="src/test/regress/GPTest.pm"
if grep '##' $GPTEST_IN > /dev/null 2>&1 ; then
    sed "s,##.*##,$GP_VERSION," $GPTEST_IN > $GPTEST_PM
fi
M
Michael Meskes 已提交
6147

6148 6149 6150

cat >>confdefs.h <<_ACEOF
#define GP_VERSION "$GP_VERSION"
M
Michael Meskes 已提交
6151
_ACEOF
6152 6153


6154
GP_MAJORVERSION=`expr "$GP_VERSION" : '\([0-9][0-9]*\)'`
6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171


cat >>confdefs.h <<_ACEOF
#define GP_MAJORVERSION "$GP_MAJORVERSION"
_ACEOF



#
# Set up TAS assembly code if needed; the template file has now had its
# chance to request this.
#
ac_config_links="$ac_config_links src/backend/port/tas.s:src/backend/port/tas/${tas_file}"


if test "$need_tas" = yes ; then
  TAS=tas.o
M
Michael Meskes 已提交
6172
else
6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200
  TAS=""
fi



#
# Automatic dependency tracking
#

pgac_args="$pgac_args enable_depend"

# Check whether --enable-depend was given.
if test "${enable_depend+set}" = set; then :
  enableval=$enable_depend;
  case $enableval in
    yes)
      autodepend=yes
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-depend option" "$LINENO" 5
      ;;
  esac

else
  enable_depend=no
M
Michael Meskes 已提交
6201 6202 6203 6204 6205 6206 6207

fi





6208 6209 6210
#
# Enable assert checks
#
M
Michael Meskes 已提交
6211

6212
pgac_args="$pgac_args enable_cassert"
M
Michael Meskes 已提交
6213

6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229
# Check whether --enable-cassert was given.
if test "${enable_cassert+set}" = set; then :
  enableval=$enable_cassert;
  case $enableval in
    yes)

$as_echo "#define USE_ASSERT_CHECKING 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-cassert option" "$LINENO" 5
      ;;
  esac
M
Michael Meskes 已提交
6230

M
Marc G. Fournier 已提交
6231
else
6232
  enable_cassert=no
6233

M
Marc G. Fournier 已提交
6234
fi
6235

6236 6237


6238 6239 6240
#
# Enable debug_break
#
6241

6242
pgac_args="$pgac_args enable_debugbreak"
6243

6244 6245 6246 6247 6248
# Check whether --enable-debugbreak was given.
if test "${enable_debugbreak+set}" = set; then :
  enableval=$enable_debugbreak;
  case $enableval in
    yes)
6249

6250
$as_echo "#define USE_DEBUG_BREAK 1" >>confdefs.h
6251

6252 6253 6254 6255 6256 6257 6258 6259
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-debugbreak option" "$LINENO" 5
      ;;
  esac
6260

6261 6262
else
  enable_debugbreak=no
6263

6264
fi
6265 6266 6267



6268
# Enable debug ntuplestore
6269

6270
pgac_args="$pgac_args enable_debugntuplestore"
6271

6272 6273 6274 6275 6276
# Check whether --enable-debugntuplestore was given.
if test "${enable_debugntuplestore+set}" = set; then :
  enableval=$enable_debugntuplestore;
  case $enableval in
    yes)
6277

6278
$as_echo "#define USE_DEBUG_NTUPLESTORE 1" >>confdefs.h
6279

6280 6281 6282 6283 6284 6285 6286 6287
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-debugntuplestore option" "$LINENO" 5
      ;;
  esac
6288

6289 6290
else
  enable_debugntuplestore=no
6291

6292
fi
6293 6294 6295



6296 6297 6298
#
# Enable testing utilities
#
6299

6300
pgac_args="$pgac_args enable_testutils"
6301

6302 6303 6304 6305 6306
# Check whether --enable-testutils was given.
if test "${enable_testutils+set}" = set; then :
  enableval=$enable_testutils;
  case $enableval in
    yes)
6307

6308
$as_echo "#define USE_TEST_UTILS 1" >>confdefs.h
6309

6310 6311 6312 6313 6314 6315 6316 6317
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-testutils option" "$LINENO" 5
      ;;
  esac
6318

6319 6320
else
  enable_testutils=no
6321

6322
fi
6323

6324 6325


6326 6327 6328
#
# Enable Greenplum ORCA optimizer
#
6329

6330
pgac_args="$pgac_args enable_orca"
6331

6332 6333 6334 6335 6336
# Check whether --enable-orca was given.
if test "${enable_orca+set}" = set; then :
  enableval=$enable_orca;
  case $enableval in
    yes)
6337

6338
$as_echo "#define USE_ORCA 1" >>confdefs.h
6339

6340 6341 6342 6343 6344 6345 6346 6347
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-orca option" "$LINENO" 5
      ;;
  esac
6348

6349
else
6350 6351 6352
  enable_orca=yes

$as_echo "#define USE_ORCA 1" >>confdefs.h
6353

6354 6355
fi

6356

6357 6358
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with ORCA... $enable_orca" >&5
$as_echo "checking whether to build with ORCA... $enable_orca" >&6; }
6359 6360


6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394
#
# Enable code generation
#

pgac_args="$pgac_args enable_codegen"

# Check whether --enable-codegen was given.
if test "${enable_codegen+set}" = set; then :
  enableval=$enable_codegen;
  case $enableval in
    yes)

$as_echo "#define USE_CODEGEN 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-codegen option" "$LINENO" 5
      ;;
  esac

else
  enable_codegen=no

fi


{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with codegen... $enable_codegen" >&5
$as_echo "checking whether to build with codegen... $enable_codegen" >&6; }



6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419
pgac_args="$pgac_args with_codegen_prefix"


# Check whether --with-codegen-prefix was given.
if test "${with_codegen_prefix+set}" = set; then :
  withval=$with_codegen_prefix;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-codegen-prefix option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-codegen-prefix option" "$LINENO" 5
      ;;
    *)
      if test "${enable_codegen}" = no; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: --with-codegen-prefix used without --enable-codegen" >&5
$as_echo "$as_me: WARNING: --with-codegen-prefix used without --enable-codegen" >&2;}
fi
      ;;
  esac

fi



6420 6421
if test "$enable_codegen" = yes; then :
   # then
6422 6423 6424 6425 6426 6427

if test -z "$CMAKE"; then
  for ac_prog in cmake
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
6428 6429
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
6430
if ${ac_cv_path_CMAKE+:} false; then :
6431 6432
  $as_echo_n "(cached) " >&6
else
6433 6434 6435 6436 6437 6438
  case $CMAKE in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_CMAKE="$CMAKE" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6439 6440 6441 6442 6443 6444
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
6445
    ac_cv_path_CMAKE="$as_dir/$ac_word$ac_exec_ext"
6446 6447 6448 6449 6450 6451 6452
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS

6453 6454
  ;;
esac
6455
fi
6456
CMAKE=$ac_cv_path_CMAKE
6457 6458 6459 6460 6461 6462 6463 6464 6465
if test -n "$CMAKE"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CMAKE" >&5
$as_echo "$CMAKE" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


6466 6467
  test -n "$CMAKE" && break
done
6468 6469 6470

fi

6471 6472 6473 6474 6475 6476 6477 6478 6479
if test -n "$CMAKE"; then
  gpac_cmake_version=`$CMAKE --version 2>/dev/null | sed q`
  if test -z "$gpac_cmake_version"; then
    as_fn_error $? "cmake is required for codegen, unable to identify version" "$LINENO" 5
  fi
  { $as_echo "$as_me:${as_lineno-$LINENO}: using $gpac_cmake_version" >&5
$as_echo "$as_me: using $gpac_cmake_version" >&6;}
else
  as_fn_error $? "cmake is required for codegen, unable to find binary" "$LINENO" 5
6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492
fi


   cd src/backend/codegen
   if test "${prefix}" = NONE; then :
  prefix=${ac_default_prefix}
fi
   if test "${enable_debug}" = yes; then :
  build_type="Debug"
else
  build_type="Release"
fi

6493
   CMAKE_CMD="${CMAKE} -DCMAKE_PREFIX_PATH="${with_codegen_prefix}" -DCMAKE_INSTALL_PREFIX=${prefix} -DCMAKE_BUILD_TYPE=${build_type} ."
6494 6495 6496 6497 6498 6499 6500 6501 6502 6503
   echo "Executing cmake command : ${CMAKE_CMD}"
   if ${CMAKE_CMD}; then :

else
  as_fn_error $? "'error while configuring codegen.'" "$LINENO" 5
fi
   cd -

fi # fi

6504 6505 6506
#
# --enable-snmp enables snmp mib and trap/inform
#
6507

6508
pgac_args="$pgac_args enable_snmp"
6509

6510 6511 6512 6513 6514
# Check whether --enable-snmp was given.
if test "${enable_snmp+set}" = set; then :
  enableval=$enable_snmp;
  case $enableval in
    yes)
6515

6516
$as_echo "#define USE_SNMP 1" >>confdefs.h
6517

6518 6519 6520 6521 6522 6523 6524 6525
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-snmp option" "$LINENO" 5
      ;;
  esac
6526 6527

else
6528
  enable_snmp=no
6529

6530 6531
fi

6532 6533 6534 6535 6536 6537 6538 6539

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with snmp... $enable_snmp" >&5
$as_echo "checking whether to build with snmp... $enable_snmp" >&6; }


#
# --enable-ddboost enables DD Boost support
#
6540

6541
pgac_args="$pgac_args enable_ddboost"
6542

6543 6544 6545 6546 6547
# Check whether --enable-ddboost was given.
if test "${enable_ddboost+set}" = set; then :
  enableval=$enable_ddboost;
  case $enableval in
    yes)
6548

6549 6550 6551 6552 6553 6554 6555 6556 6557 6558
$as_echo "#define USE_DDBOOST 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-ddboost option" "$LINENO" 5
      ;;
  esac
6559 6560

else
6561
  enable_ddboost=no
6562

6563 6564
fi

P
Peter Eisentraut 已提交
6565

6566 6567
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with DD Boost support... $enable_ddboost" >&5
$as_echo "checking whether to build with DD Boost support... $enable_ddboost" >&6; }
P
Peter Eisentraut 已提交
6568 6569


6570 6571 6572
#
# --enable-netbackup enables NetBackup support
#
P
Peter Eisentraut 已提交
6573

6574
pgac_args="$pgac_args enable_netbackup"
6575

6576 6577 6578 6579 6580
# Check whether --enable-netbackup was given.
if test "${enable_netbackup+set}" = set; then :
  enableval=$enable_netbackup;
  case $enableval in
    yes)
6581

6582
$as_echo "#define USE_NETBACKUP 1" >>confdefs.h
6583

6584 6585 6586 6587 6588 6589 6590 6591
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-netbackup option" "$LINENO" 5
      ;;
  esac
6592 6593

else
6594
  enable_netbackup=no
6595

6596 6597
fi

6598

6599 6600
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with NetBackup support... $enable_netbackup" >&5
$as_echo "checking whether to build with NetBackup support... $enable_netbackup" >&6; }
6601

6602

6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635
#
# --enable-mapreduce enables GPMapreduce support
#

pgac_args="$pgac_args enable_mapreduce"

# Check whether --enable-mapreduce was given.
if test "${enable_mapreduce+set}" = set; then :
  enableval=$enable_mapreduce;
  case $enableval in
    yes)

$as_echo "#define USE_MAPREDUCE 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-mapreduce option" "$LINENO" 5
      ;;
  esac

else
  enable_mapreduce=no

fi


{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with Greenplum Mapreduce... $enable_mapreduce" >&5
$as_echo "checking whether to build with Greenplum Mapreduce... $enable_mapreduce" >&6; }


A
Adam Lee 已提交
6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 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 6890 6891 6892 6893 6894 6895 6896 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 6964 6965 6966 6967 6968 6969 6970 6971 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 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 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 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 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 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 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 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340
#
# gpcloud, enabled by default
#

pgac_args="$pgac_args enable_gpcloud"

# Check whether --enable-gpcloud was given.
if test "${enable_gpcloud+set}" = set; then :
  enableval=$enable_gpcloud;
  case $enableval in
    yes)

$as_echo "#define USE_GPCLOUD 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-gpcloud option" "$LINENO" 5
      ;;
  esac

else
  enable_gpcloud=yes

$as_echo "#define USE_GPCLOUD 1" >>confdefs.h

fi


{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with gpcloud... $enable_gpcloud" >&5
$as_echo "checking whether to build with gpcloud... $enable_gpcloud" >&6; }


if test "$enable_gpcloud" = yes; then :
   # then
    ax_cxx_compile_alternatives="11 0x"    ax_cxx_compile_cxx11_required=true
  ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
  ac_success=no
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features by default" >&5
$as_echo_n "checking whether $CXX supports C++11 features by default... " >&6; }
if ${ax_cv_cxx_compile_cxx11+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */


// If the compiler admits that it is not ready for C++11, why torture it?
// Hopefully, this will speed up the test.

#ifndef __cplusplus

#error "This is not a C++ compiler"

#elif __cplusplus < 201103L

#error "This is not a C++11 compiler"

#else

namespace cxx11
{

  namespace test_static_assert
  {

    template <typename T>
    struct check
    {
      static_assert(sizeof(int) <= sizeof(T), "not big enough");
    };

  }

  namespace test_final_override
  {

    struct Base
    {
      virtual void f() {}
    };

    struct Derived : public Base
    {
      virtual void f() override {}
    };

  }

  namespace test_double_right_angle_brackets
  {

    template < typename T >
    struct check {};

    typedef check<void> single_type;
    typedef check<check<void>> double_type;
    typedef check<check<check<void>>> triple_type;
    typedef check<check<check<check<void>>>> quadruple_type;

  }

  namespace test_decltype
  {

    int
    f()
    {
      int a = 1;
      decltype(a) b = 2;
      return a + b;
    }

  }

  namespace test_type_deduction
  {

    template < typename T1, typename T2 >
    struct is_same
    {
      static const bool value = false;
    };

    template < typename T >
    struct is_same<T, T>
    {
      static const bool value = true;
    };

    template < typename T1, typename T2 >
    auto
    add(T1 a1, T2 a2) -> decltype(a1 + a2)
    {
      return a1 + a2;
    }

    int
    test(const int c, volatile int v)
    {
      static_assert(is_same<int, decltype(0)>::value == true, "");
      static_assert(is_same<int, decltype(c)>::value == false, "");
      static_assert(is_same<int, decltype(v)>::value == false, "");
      auto ac = c;
      auto av = v;
      auto sumi = ac + av + 'x';
      auto sumf = ac + av + 1.0;
      static_assert(is_same<int, decltype(ac)>::value == true, "");
      static_assert(is_same<int, decltype(av)>::value == true, "");
      static_assert(is_same<int, decltype(sumi)>::value == true, "");
      static_assert(is_same<int, decltype(sumf)>::value == false, "");
      static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
      return (sumf > 0.0) ? sumi : add(c, v);
    }

  }

  namespace test_noexcept
  {

    int f() { return 0; }
    int g() noexcept { return 0; }

    static_assert(noexcept(f()) == false, "");
    static_assert(noexcept(g()) == true, "");

  }

  namespace test_constexpr
  {

    template < typename CharT >
    unsigned long constexpr
    strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
    {
      return *s ? strlen_c_r(s + 1, acc + 1) : acc;
    }

    template < typename CharT >
    unsigned long constexpr
    strlen_c(const CharT *const s) noexcept
    {
      return strlen_c_r(s, 0UL);
    }

    static_assert(strlen_c("") == 0UL, "");
    static_assert(strlen_c("1") == 1UL, "");
    static_assert(strlen_c("example") == 7UL, "");
    static_assert(strlen_c("another\0example") == 7UL, "");

  }

  namespace test_rvalue_references
  {

    template < int N >
    struct answer
    {
      static constexpr int value = N;
    };

    answer<1> f(int&)       { return answer<1>(); }
    answer<2> f(const int&) { return answer<2>(); }
    answer<3> f(int&&)      { return answer<3>(); }

    void
    test()
    {
      int i = 0;
      const int c = 0;
      static_assert(decltype(f(i))::value == 1, "");
      static_assert(decltype(f(c))::value == 2, "");
      static_assert(decltype(f(0))::value == 3, "");
    }

  }

  namespace test_uniform_initialization
  {

    struct test
    {
      static const int zero {};
      static const int one {1};
    };

    static_assert(test::zero == 0, "");
    static_assert(test::one == 1, "");

  }

  namespace test_lambdas
  {

    void
    test1()
    {
      auto lambda1 = [](){};
      auto lambda2 = lambda1;
      lambda1();
      lambda2();
    }

    int
    test2()
    {
      auto a = [](int i, int j){ return i + j; }(1, 2);
      auto b = []() -> int { return '0'; }();
      auto c = [=](){ return a + b; }();
      auto d = [&](){ return c; }();
      auto e = [a, &b](int x) mutable {
        const auto identity = [](int y){ return y; };
        for (auto i = 0; i < a; ++i)
          a += b--;
        return x + identity(a + b);
      }(0);
      return a + b + c + d + e;
    }

    int
    test3()
    {
      const auto nullary = [](){ return 0; };
      const auto unary = [](int x){ return x; };
      using nullary_t = decltype(nullary);
      using unary_t = decltype(unary);
      const auto higher1st = [](nullary_t f){ return f(); };
      const auto higher2nd = [unary](nullary_t f1){
        return [unary, f1](unary_t f2){ return f2(unary(f1())); };
      };
      return higher1st(nullary) + higher2nd(nullary)(unary);
    }

  }

  namespace test_variadic_templates
  {

    template <int...>
    struct sum;

    template <int N0, int... N1toN>
    struct sum<N0, N1toN...>
    {
      static constexpr auto value = N0 + sum<N1toN...>::value;
    };

    template <>
    struct sum<>
    {
      static constexpr auto value = 0;
    };

    static_assert(sum<>::value == 0, "");
    static_assert(sum<1>::value == 1, "");
    static_assert(sum<23>::value == 23, "");
    static_assert(sum<1, 2>::value == 3, "");
    static_assert(sum<5, 5, 11>::value == 21, "");
    static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");

  }

  // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
  // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
  // because of this.
  namespace test_template_alias_sfinae
  {

    struct foo {};

    template<typename T>
    using member = typename T::member_type;

    template<typename T>
    void func(...) {}

    template<typename T>
    void func(member<T>*) {}

    void test();

    void test() { func<foo>(0); }

  }

}  // namespace cxx11

#endif  // __cplusplus >= 201103L



_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
  ax_cv_cxx_compile_cxx11=yes
else
  ax_cv_cxx_compile_cxx11=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_compile_cxx11" >&5
$as_echo "$ax_cv_cxx_compile_cxx11" >&6; }
  if test x$ax_cv_cxx_compile_cxx11 = xyes; then
    ac_success=yes
  fi



    if test x$ac_success = xno; then
                for alternative in ${ax_cxx_compile_alternatives}; do
      for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do
        cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh`
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5
$as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; }
if eval \${$cachevar+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_save_CXX="$CXX"
           CXX="$CXX $switch"
           cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */


// If the compiler admits that it is not ready for C++11, why torture it?
// Hopefully, this will speed up the test.

#ifndef __cplusplus

#error "This is not a C++ compiler"

#elif __cplusplus < 201103L

#error "This is not a C++11 compiler"

#else

namespace cxx11
{

  namespace test_static_assert
  {

    template <typename T>
    struct check
    {
      static_assert(sizeof(int) <= sizeof(T), "not big enough");
    };

  }

  namespace test_final_override
  {

    struct Base
    {
      virtual void f() {}
    };

    struct Derived : public Base
    {
      virtual void f() override {}
    };

  }

  namespace test_double_right_angle_brackets
  {

    template < typename T >
    struct check {};

    typedef check<void> single_type;
    typedef check<check<void>> double_type;
    typedef check<check<check<void>>> triple_type;
    typedef check<check<check<check<void>>>> quadruple_type;

  }

  namespace test_decltype
  {

    int
    f()
    {
      int a = 1;
      decltype(a) b = 2;
      return a + b;
    }

  }

  namespace test_type_deduction
  {

    template < typename T1, typename T2 >
    struct is_same
    {
      static const bool value = false;
    };

    template < typename T >
    struct is_same<T, T>
    {
      static const bool value = true;
    };

    template < typename T1, typename T2 >
    auto
    add(T1 a1, T2 a2) -> decltype(a1 + a2)
    {
      return a1 + a2;
    }

    int
    test(const int c, volatile int v)
    {
      static_assert(is_same<int, decltype(0)>::value == true, "");
      static_assert(is_same<int, decltype(c)>::value == false, "");
      static_assert(is_same<int, decltype(v)>::value == false, "");
      auto ac = c;
      auto av = v;
      auto sumi = ac + av + 'x';
      auto sumf = ac + av + 1.0;
      static_assert(is_same<int, decltype(ac)>::value == true, "");
      static_assert(is_same<int, decltype(av)>::value == true, "");
      static_assert(is_same<int, decltype(sumi)>::value == true, "");
      static_assert(is_same<int, decltype(sumf)>::value == false, "");
      static_assert(is_same<int, decltype(add(c, v))>::value == true, "");
      return (sumf > 0.0) ? sumi : add(c, v);
    }

  }

  namespace test_noexcept
  {

    int f() { return 0; }
    int g() noexcept { return 0; }

    static_assert(noexcept(f()) == false, "");
    static_assert(noexcept(g()) == true, "");

  }

  namespace test_constexpr
  {

    template < typename CharT >
    unsigned long constexpr
    strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
    {
      return *s ? strlen_c_r(s + 1, acc + 1) : acc;
    }

    template < typename CharT >
    unsigned long constexpr
    strlen_c(const CharT *const s) noexcept
    {
      return strlen_c_r(s, 0UL);
    }

    static_assert(strlen_c("") == 0UL, "");
    static_assert(strlen_c("1") == 1UL, "");
    static_assert(strlen_c("example") == 7UL, "");
    static_assert(strlen_c("another\0example") == 7UL, "");

  }

  namespace test_rvalue_references
  {

    template < int N >
    struct answer
    {
      static constexpr int value = N;
    };

    answer<1> f(int&)       { return answer<1>(); }
    answer<2> f(const int&) { return answer<2>(); }
    answer<3> f(int&&)      { return answer<3>(); }

    void
    test()
    {
      int i = 0;
      const int c = 0;
      static_assert(decltype(f(i))::value == 1, "");
      static_assert(decltype(f(c))::value == 2, "");
      static_assert(decltype(f(0))::value == 3, "");
    }

  }

  namespace test_uniform_initialization
  {

    struct test
    {
      static const int zero {};
      static const int one {1};
    };

    static_assert(test::zero == 0, "");
    static_assert(test::one == 1, "");

  }

  namespace test_lambdas
  {

    void
    test1()
    {
      auto lambda1 = [](){};
      auto lambda2 = lambda1;
      lambda1();
      lambda2();
    }

    int
    test2()
    {
      auto a = [](int i, int j){ return i + j; }(1, 2);
      auto b = []() -> int { return '0'; }();
      auto c = [=](){ return a + b; }();
      auto d = [&](){ return c; }();
      auto e = [a, &b](int x) mutable {
        const auto identity = [](int y){ return y; };
        for (auto i = 0; i < a; ++i)
          a += b--;
        return x + identity(a + b);
      }(0);
      return a + b + c + d + e;
    }

    int
    test3()
    {
      const auto nullary = [](){ return 0; };
      const auto unary = [](int x){ return x; };
      using nullary_t = decltype(nullary);
      using unary_t = decltype(unary);
      const auto higher1st = [](nullary_t f){ return f(); };
      const auto higher2nd = [unary](nullary_t f1){
        return [unary, f1](unary_t f2){ return f2(unary(f1())); };
      };
      return higher1st(nullary) + higher2nd(nullary)(unary);
    }

  }

  namespace test_variadic_templates
  {

    template <int...>
    struct sum;

    template <int N0, int... N1toN>
    struct sum<N0, N1toN...>
    {
      static constexpr auto value = N0 + sum<N1toN...>::value;
    };

    template <>
    struct sum<>
    {
      static constexpr auto value = 0;
    };

    static_assert(sum<>::value == 0, "");
    static_assert(sum<1>::value == 1, "");
    static_assert(sum<23>::value == 23, "");
    static_assert(sum<1, 2>::value == 3, "");
    static_assert(sum<5, 5, 11>::value == 21, "");
    static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, "");

  }

  // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae
  // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function
  // because of this.
  namespace test_template_alias_sfinae
  {

    struct foo {};

    template<typename T>
    using member = typename T::member_type;

    template<typename T>
    void func(...) {}

    template<typename T>
    void func(member<T>*) {}

    void test();

    void test() { func<foo>(0); }

  }

}  // namespace cxx11

#endif  // __cplusplus >= 201103L



_ACEOF
if ac_fn_cxx_try_compile "$LINENO"; then :
  eval $cachevar=yes
else
  eval $cachevar=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
           CXX="$ac_save_CXX"
fi
eval ac_res=\$$cachevar
	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
        if eval test x\$$cachevar = xyes; then
          CXX="$CXX $switch"
          if test -n "$CXXCPP" ; then
            CXXCPP="$CXXCPP $switch"
          fi
          ac_success=yes
          break
        fi
      done
      if test x$ac_success = xyes; then
        break
      fi
    done
  fi
  ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu

  if test x$ax_cxx_compile_cxx11_required = xtrue; then
    if test x$ac_success = xno; then
      as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5
    fi
  fi
  if test x$ac_success = xno; then
    HAVE_CXX11=0
    { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5
$as_echo "$as_me: No compiler with C++11 support was found" >&6;}
  else
    HAVE_CXX11=1

$as_echo "#define HAVE_CXX11 1" >>confdefs.h

  fi




fi # fi

7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373
#
# Enable segment WAL replication
#

pgac_args="$pgac_args enable_segwalrep"

# Check whether --enable-segwalrep was given.
if test "${enable_segwalrep+set}" = set; then :
  enableval=$enable_segwalrep;
  case $enableval in
    yes)

$as_echo "#define USE_SEGWALREP 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-segwalrep option" "$LINENO" 5
      ;;
  esac

else
  enable_segwalrep=no

fi


{ $as_echo "$as_me:${as_lineno-$LINENO}: result: checking whether to build with segment WAL replication... $enable_segwalrep" >&5
$as_echo "checking whether to build with segment WAL replication... $enable_segwalrep" >&6; }


7374 7375 7376 7377 7378 7379 7380 7381 7382
#
# Include directories
#
ac_save_IFS=$IFS
IFS="${IFS}${PATH_SEPARATOR}"
# SRCH_INC comes from the template file
for dir in $with_includes $SRCH_INC; do
  if test -d "$dir"; then
    INCLUDES="$INCLUDES -I$dir"
7383
  else
7384 7385
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Include directory $dir does not exist." >&5
$as_echo "$as_me: WARNING: *** Include directory $dir does not exist." >&2;}
7386
  fi
7387 7388
done
IFS=$ac_save_IFS
7389

7390 7391


7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431
#
# Library directories
#
ac_save_IFS=$IFS
IFS="${IFS}${PATH_SEPARATOR}"
# LIBRARY_DIRS comes from command line, SRCH_LIB from template file.
for dir in $LIBRARY_DIRS $SRCH_LIB; do
  if test -d "$dir"; then
    LIBDIRS="$LIBDIRS -L$dir"
  else
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Library directory $dir does not exist." >&5
$as_echo "$as_me: WARNING: *** Library directory $dir does not exist." >&2;}
  fi
done
IFS=$ac_save_IFS

#
# Enable thread-safe client libraries
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking allow thread-safe client libraries" >&5
$as_echo_n "checking allow thread-safe client libraries... " >&6; }
# GPDB wants the default here to be "yes", unlike PostgreSQL.
# it's also required for Win32 client builds.

pgac_args="$pgac_args enable_thread_safety"

# Check whether --enable-thread-safety was given.
if test "${enable_thread_safety+set}" = set; then :
  enableval=$enable_thread_safety;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-thread-safety option" "$LINENO" 5
      ;;
  esac
7432 7433

else
7434 7435
  enable_thread_safety=yes

7436
fi
7437

7438 7439 7440



7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456
pgac_args="$pgac_args enable_thread_safety_force"

# Check whether --enable-thread-safety-force was given.
if test "${enable_thread_safety_force+set}" = set; then :
  enableval=$enable_thread_safety_force;
  case $enableval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --enable-thread-safety-force option" "$LINENO" 5
      ;;
  esac
7457

7458
else
7459
  enable_thread_safety_force=no
7460

7461 7462
fi

7463

7464 7465 7466 7467 7468 7469
if test "$enable_thread_safety" = yes -o \
        "$enable_thread_safety_force" = yes; then
  enable_thread_safety="yes"	# for 'force'

$as_echo "#define ENABLE_THREAD_SAFETY 1" >>confdefs.h

7470
fi
7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_thread_safety" >&5
$as_echo "$enable_thread_safety" >&6; }


#
# Optionally build Tcl modules (PL/Tcl)
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with Tcl" >&5
$as_echo_n "checking whether to build with Tcl... " >&6; }

pgac_args="$pgac_args with_tcl"


# Check whether --with-tcl was given.
if test "${with_tcl+set}" = set; then :
  withval=$with_tcl;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-tcl option" "$LINENO" 5
      ;;
  esac
7498 7499

else
7500
  with_tcl=no
7501

7502 7503
fi

7504

7505 7506
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_tcl" >&5
$as_echo "$with_tcl" >&6; }
7507

7508

7509 7510
# We see if the path to the Tcl/Tk configuration scripts is specified.
# This will override the use of tclsh to find the paths to search.
7511

7512

7513
pgac_args="$pgac_args with_tclconfig"
7514 7515


7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526
# Check whether --with-tclconfig was given.
if test "${with_tclconfig+set}" = set; then :
  withval=$with_tclconfig;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-tclconfig option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-tclconfig option" "$LINENO" 5
      ;;
    *)
7527

7528 7529
      ;;
  esac
7530

7531
fi
7532

7533

7534

7535 7536 7537 7538 7539
#
# Optionally build Perl modules (PL/Perl)
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Perl modules" >&5
$as_echo_n "checking whether to build Perl modules... " >&6; }
7540

7541
pgac_args="$pgac_args with_perl"
7542

7543

7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558
# Check whether --with-perl was given.
if test "${with_perl+set}" = set; then :
  withval=$with_perl;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-perl option" "$LINENO" 5
      ;;
  esac

7559
else
7560
  with_perl=no
7561

7562 7563 7564
fi


7565 7566
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_perl" >&5
$as_echo "$with_perl" >&6; }
7567 7568


7569 7570 7571 7572 7573
#
# Optionally build Python modules (PL/Python)
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build Python modules" >&5
$as_echo_n "checking whether to build Python modules... " >&6; }
7574

7575
pgac_args="$pgac_args with_python"
7576

7577

7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591
# Check whether --with-python was given.
if test "${with_python+set}" = set; then :
  withval=$with_python;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-python option" "$LINENO" 5
      ;;
  esac
7592 7593

else
7594
  with_python=no
7595 7596

fi
7597

7598

7599 7600
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_python" >&5
$as_echo "$with_python" >&6; }
7601

7602

7603 7604 7605 7606 7607
#
# GSSAPI
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with GSSAPI support" >&5
$as_echo_n "checking whether to build with GSSAPI support... " >&6; }
7608

7609
pgac_args="$pgac_args with_gssapi"
7610 7611


7612 7613 7614 7615 7616
# Check whether --with-gssapi was given.
if test "${with_gssapi+set}" = set; then :
  withval=$with_gssapi;
  case $withval in
    yes)
7617

7618

7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633
$as_echo "#define ENABLE_GSS 1" >>confdefs.h

  krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-gssapi option" "$LINENO" 5
      ;;
  esac

else
  with_gssapi=no
7634 7635 7636 7637

fi


7638 7639
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_gssapi" >&5
$as_echo "$with_gssapi" >&6; }
7640 7641


7642 7643 7644 7645 7646
#
# Kerberos 5
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with Kerberos 5 support" >&5
$as_echo_n "checking whether to build with Kerberos 5 support... " >&6; }
7647

7648
pgac_args="$pgac_args with_krb5"
7649 7650


7651 7652 7653 7654 7655
# Check whether --with-krb5 was given.
if test "${with_krb5+set}" = set; then :
  withval=$with_krb5;
  case $withval in
    yes)
7656 7657


7658
$as_echo "#define KRB5 1" >>confdefs.h
7659

7660
  krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab"
7661

7662 7663 7664 7665 7666 7667 7668 7669
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-krb5 option" "$LINENO" 5
      ;;
  esac
7670 7671

else
7672
  with_krb5=no
7673 7674 7675 7676

fi


7677 7678
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_krb5" >&5
$as_echo "$with_krb5" >&6; }
7679 7680 7681 7682 7683 7684






7685 7686 7687
#
# Kerberos configuration parameters
#
7688

7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705
pgac_args="$pgac_args with_krb_srvnam"


# Check whether --with-krb-srvnam was given.
if test "${with_krb_srvnam+set}" = set; then :
  withval=$with_krb_srvnam;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-krb-srvnam option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-krb-srvnam option" "$LINENO" 5
      ;;
    *)

      ;;
  esac
7706 7707

else
7708
  with_krb_srvnam="postgres"
7709 7710
fi

7711 7712 7713 7714


cat >>confdefs.h <<_ACEOF
#define PG_KRB_SRVNAM "$with_krb_srvnam"
7715 7716 7717 7718
_ACEOF



7719 7720 7721 7722 7723
#
# PAM
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with PAM support" >&5
$as_echo_n "checking whether to build with PAM support... " >&6; }
7724

7725
pgac_args="$pgac_args with_pam"
7726 7727


7728 7729 7730 7731 7732
# Check whether --with-pam was given.
if test "${with_pam+set}" = set; then :
  withval=$with_pam;
  case $withval in
    yes)
7733

7734 7735 7736 7737 7738 7739 7740 7741 7742 7743
$as_echo "#define USE_PAM 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-pam option" "$LINENO" 5
      ;;
  esac
7744

7745
else
7746
  with_pam=no
7747

7748 7749
fi

7750

7751 7752
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pam" >&5
$as_echo "$with_pam" >&6; }
7753

7754 7755


7756 7757 7758 7759 7760
#
# LDAP
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with LDAP support" >&5
$as_echo_n "checking whether to build with LDAP support... " >&6; }
7761

7762
pgac_args="$pgac_args with_ldap"
7763

7764

7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780
# Check whether --with-ldap was given.
if test "${with_ldap+set}" = set; then :
  withval=$with_ldap;
  case $withval in
    yes)

$as_echo "#define USE_LDAP 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-ldap option" "$LINENO" 5
      ;;
  esac
7781

7782
else
7783
  with_ldap=no
7784

7785
fi
7786

7787

7788 7789
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_ldap" >&5
$as_echo "$with_ldap" >&6; }
7790 7791 7792



7793 7794 7795 7796 7797
#
# Bonjour
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with Bonjour support" >&5
$as_echo_n "checking whether to build with Bonjour support... " >&6; }
7798

7799
pgac_args="$pgac_args with_bonjour"
7800

7801

7802 7803 7804 7805 7806
# Check whether --with-bonjour was given.
if test "${with_bonjour+set}" = set; then :
  withval=$with_bonjour;
  case $withval in
    yes)
7807

7808 7809 7810 7811 7812 7813 7814 7815 7816 7817
$as_echo "#define USE_BONJOUR 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-bonjour option" "$LINENO" 5
      ;;
  esac
7818

7819
else
7820 7821
  with_bonjour=no

7822 7823 7824
fi


7825 7826
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_bonjour" >&5
$as_echo "$with_bonjour" >&6; }
7827

7828

7829

7830 7831 7832 7833 7834
#
# OpenSSL
#
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with OpenSSL support" >&5
$as_echo_n "checking whether to build with OpenSSL support... " >&6; }
7835

7836
pgac_args="$pgac_args with_openssl"
7837

7838

7839 7840 7841 7842 7843
# Check whether --with-openssl was given.
if test "${with_openssl+set}" = set; then :
  withval=$with_openssl;
  case $withval in
    yes)
7844

7845
$as_echo "#define USE_SSL 1" >>confdefs.h
7846

7847 7848 7849 7850 7851 7852 7853 7854
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-openssl option" "$LINENO" 5
      ;;
  esac
B
Bruce Momjian 已提交
7855

7856
else
7857
  with_openssl=no
7858

7859 7860
fi

7861

7862 7863
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_openssl" >&5
$as_echo "$with_openssl" >&6; }
7864 7865


B
Bruce Momjian 已提交
7866

7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887
#
# Readline
#

pgac_args="$pgac_args with_readline"


# Check whether --with-readline was given.
if test "${with_readline+set}" = set; then :
  withval=$with_readline;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-readline option" "$LINENO" 5
      ;;
  esac
B
Bruce Momjian 已提交
7888 7889

else
7890
  with_readline=yes
7891

B
Bruce Momjian 已提交
7892 7893
fi

7894 7895 7896 7897 7898 7899 7900 7901 7902

# readline on MinGW has problems with backslashes in psql and other bugs.
# This is particularly a problem with non-US code pages.
# Therefore disable its use until we understand the cause. 2004-07-20
if test "$PORTNAME" = "win32"; then
  if test "$with_readline" = yes; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Readline does not work on MinGW --- disabling" >&5
$as_echo "$as_me: WARNING: *** Readline does not work on MinGW --- disabling" >&2;}
    with_readline=no
B
Bruce Momjian 已提交
7903 7904
  fi
fi
7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930


#
# Prefer libedit
#
# In GPDB we want the default to be yes, because we don't want to link with GPL code.
#

pgac_args="$pgac_args with_libedit_preferred"


# Check whether --with-libedit-preferred was given.
if test "${with_libedit_preferred+set}" = set; then :
  withval=$with_libedit_preferred;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-libedit-preferred option" "$LINENO" 5
      ;;
  esac

B
Bruce Momjian 已提交
7931
else
7932
  with_libedit_preferred=yes
7933

B
Bruce Momjian 已提交
7934 7935 7936 7937
fi



7938

7939 7940 7941
#
# OSSP UUID library
#
7942

7943
pgac_args="$pgac_args with_ossp_uuid"
7944

7945

7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960
# Check whether --with-ossp-uuid was given.
if test "${with_ossp_uuid+set}" = set; then :
  withval=$with_ossp_uuid;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-ossp-uuid option" "$LINENO" 5
      ;;
  esac

7961
else
7962
  with_ossp_uuid=no
7963

7964 7965
fi

7966 7967


7968

7969

7970 7971 7972
#
# XML
#
B
Bruce Momjian 已提交
7973

7974
pgac_args="$pgac_args with_libxml"
B
Bruce Momjian 已提交
7975

7976

7977 7978 7979 7980 7981
# Check whether --with-libxml was given.
if test "${with_libxml+set}" = set; then :
  withval=$with_libxml;
  case $withval in
    yes)
7982

7983 7984 7985 7986 7987 7988 7989 7990 7991 7992
$as_echo "#define USE_LIBXML 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-libxml option" "$LINENO" 5
      ;;
  esac
7993 7994

else
7995
  with_libxml=no
7996 7997 7998

fi

7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009


if test "$with_libxml" = yes ; then
  for ac_prog in xml2-config
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_XML2_CONFIG+:} false; then :
  $as_echo_n "(cached) " >&6
8010
else
8011 8012
  if test -n "$XML2_CONFIG"; then
  ac_cv_prog_XML2_CONFIG="$XML2_CONFIG" # Let the user override the test.
8013
else
8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_XML2_CONFIG="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8028 8029

fi
8030 8031 8032 8033 8034
fi
XML2_CONFIG=$ac_cv_prog_XML2_CONFIG
if test -n "$XML2_CONFIG"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XML2_CONFIG" >&5
$as_echo "$XML2_CONFIG" >&6; }
8035
else
8036 8037
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
8038 8039 8040
fi


8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055
  test -n "$XML2_CONFIG" && break
done

  if test -n "$XML2_CONFIG"; then
    for pgac_option in `$XML2_CONFIG --cflags`; do
      case $pgac_option in
        -I*|-D*) CPPFLAGS="$CPPFLAGS $pgac_option";;
      esac
    done
    for pgac_option in `$XML2_CONFIG --libs`; do
      case $pgac_option in
        -L*) LDFLAGS="$LDFLAGS $pgac_option";;
      esac
    done
  fi
8056 8057 8058 8059
fi



8060 8061 8062
#
# XSLT
#
8063

8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082
pgac_args="$pgac_args with_libxslt"


# Check whether --with-libxslt was given.
if test "${with_libxslt+set}" = set; then :
  withval=$with_libxslt;
  case $withval in
    yes)

$as_echo "#define USE_LIBXSLT 1" >>confdefs.h

      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-libxslt option" "$LINENO" 5
      ;;
  esac
8083

8084
else
8085
  with_libxslt=no
8086

8087
fi
8088

8089

8090

8091 8092


8093

8094 8095 8096
#
# tzdata
#
8097

8098
pgac_args="$pgac_args with_system_tzdata"
8099 8100


8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111
# Check whether --with-system-tzdata was given.
if test "${with_system_tzdata+set}" = set; then :
  withval=$with_system_tzdata;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-system-tzdata option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-system-tzdata option" "$LINENO" 5
      ;;
    *)
8112

8113 8114
      ;;
  esac
8115 8116 8117

fi

8118

8119

8120

8121 8122 8123
#
# Zlib
#
8124

8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141
pgac_args="$pgac_args with_zlib"


# Check whether --with-zlib was given.
if test "${with_zlib+set}" = set; then :
  withval=$with_zlib;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-zlib option" "$LINENO" 5
      ;;
  esac
8142 8143

else
8144 8145
  with_zlib=yes

8146 8147 8148
fi


8149 8150


8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180
#
# bzip2
#

pgac_args="$pgac_args with_libbz2"


# Check whether --with-libbz2 was given.
if test "${with_libbz2+set}" = set; then :
  withval=$with_libbz2;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-libbz2 option" "$LINENO" 5
      ;;
  esac

else
  with_libbz2=yes

fi




8181 8182 8183
#
# Realtime library
#
8184

8185
pgac_args="$pgac_args with_rt"
8186

8187

8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201
# Check whether --with-rt was given.
if test "${with_rt+set}" = set; then :
  withval=$with_rt;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-rt option" "$LINENO" 5
      ;;
  esac
8202

8203
else
8204 8205 8206 8207 8208
  with_rt=yes

fi


8209

8210

8211
#
8212
# libcurl. Used for external table support and the PXF extension
8213
#
8214

8215
pgac_args="$pgac_args with_libcurl"
8216

8217

8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231
# Check whether --with-libcurl was given.
if test "${with_libcurl+set}" = set; then :
  withval=$with_libcurl;
  case $withval in
    yes)
      :
      ;;
    no)
      :
      ;;
    *)
      as_fn_error $? "no argument expected for --with-libcurl option" "$LINENO" 5
      ;;
  esac
8232

8233
else
8234
  with_libcurl=yes
8235

8236 8237
fi

8238 8239 8240 8241 8242



if test "$with_libcurl" = "no" && test "$enable_pxf" = "yes"; then
  as_fn_error $? "libcurl is required by PXF" "$LINENO" 5
8243 8244
fi

8245 8246 8247
#
# libapr. Used for gpfdist and gpperfmon
#
8248

8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265
pgac_args="$pgac_args with_apr_config"


# Check whether --with-apr-config was given.
if test "${with_apr_config+set}" = set; then :
  withval=$with_apr_config;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-apr-config option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-apr-config option" "$LINENO" 5
      ;;
    *)

      ;;
  esac
8266

8267
fi
8268

8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290



#
# libapu. Used for gpperfmon.
#

pgac_args="$pgac_args with_apu_config"


# Check whether --with-apu-config was given.
if test "${with_apu_config+set}" = set; then :
  withval=$with_apu_config;
  case $withval in
    yes)
      as_fn_error $? "argument required for --with-apu-config option" "$LINENO" 5
      ;;
    no)
      as_fn_error $? "argument required for --with-apu-config option" "$LINENO" 5
      ;;
    *)

8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366
      ;;
  esac

fi




#
# Elf
#

# Assume system is ELF if it predefines __ELF__ as 1,
# otherwise believe host_os based default.PostgreSQL
case $host_os in
    freebsd1*|freebsd2*) elf=no;;
    freebsd3*|freebsd4*) elf=yes;;
esac


{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
if ${ac_cv_path_GREP+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -z "$GREP"; then
  ac_path_GREP_found=false
  # Loop through the user's path and test for each of PROGNAME-LIST
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_prog in grep ggrep; do
    for ac_exec_ext in '' $ac_executable_extensions; do
      ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
      as_fn_executable_p "$ac_path_GREP" || continue
# Check for GNU ac_path_GREP and select it if it is found.
  # Check for GNU $ac_path_GREP
case `"$ac_path_GREP" --version 2>&1` in
*GNU*)
  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
*)
  ac_count=0
  $as_echo_n 0123456789 >"conftest.in"
  while :
  do
    cat "conftest.in" "conftest.in" >"conftest.tmp"
    mv "conftest.tmp" "conftest.in"
    cp "conftest.in" "conftest.nl"
    $as_echo 'GREP' >> "conftest.nl"
    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
    as_fn_arith $ac_count + 1 && ac_count=$as_val
    if test $ac_count -gt ${ac_path_GREP_max-0}; then
      # Best one so far, save it but keep looking for a better one
      ac_cv_path_GREP="$ac_path_GREP"
      ac_path_GREP_max=$ac_count
    fi
    # 10*(2^10) chars as input seems more than enough
    test $ac_count -gt 10 && break
  done
  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
esac

      $ac_path_GREP_found && break 3
    done
  done
  done
IFS=$as_save_IFS
  if test -z "$ac_cv_path_GREP"; then
    as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  fi
else
  ac_cv_path_GREP=$GREP
fi
8367

8368
fi
8369 8370 8371
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
$as_echo "$ac_cv_path_GREP" >&6; }
 GREP="$ac_cv_path_GREP"
8372

8373

8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
$as_echo_n "checking for egrep... " >&6; }
if ${ac_cv_path_EGREP+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
   then ac_cv_path_EGREP="$GREP -E"
   else
     if test -z "$EGREP"; then
  ac_path_EGREP_found=false
  # Loop through the user's path and test for each of PROGNAME-LIST
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_prog in egrep; do
    for ac_exec_ext in '' $ac_executable_extensions; do
      ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
      as_fn_executable_p "$ac_path_EGREP" || continue
# Check for GNU ac_path_EGREP and select it if it is found.
  # Check for GNU $ac_path_EGREP
case `"$ac_path_EGREP" --version 2>&1` in
*GNU*)
  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
*)
  ac_count=0
  $as_echo_n 0123456789 >"conftest.in"
  while :
  do
    cat "conftest.in" "conftest.in" >"conftest.tmp"
    mv "conftest.tmp" "conftest.in"
    cp "conftest.in" "conftest.nl"
    $as_echo 'EGREP' >> "conftest.nl"
    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
    as_fn_arith $ac_count + 1 && ac_count=$as_val
    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
      # Best one so far, save it but keep looking for a better one
      ac_cv_path_EGREP="$ac_path_EGREP"
      ac_path_EGREP_max=$ac_count
    fi
    # 10*(2^10) chars as input seems more than enough
    test $ac_count -gt 10 && break
  done
  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
esac
8421

8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432
      $ac_path_EGREP_found && break 3
    done
  done
  done
IFS=$as_save_IFS
  if test -z "$ac_cv_path_EGREP"; then
    as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  fi
else
  ac_cv_path_EGREP=$EGREP
fi
8433

8434 8435 8436 8437 8438
   fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
$as_echo "$ac_cv_path_EGREP" >&6; }
 EGREP="$ac_cv_path_EGREP"
8439 8440


8441
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
8442
/* end confdefs.h.  */
8443 8444 8445
#if __ELF__
  yes
#endif
8446

8447
_ACEOF
8448 8449 8450
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  $EGREP "yes" >/dev/null 2>&1; then :
  ELF_SYS=true
8451
else
8452 8453 8454 8455
  if test "X$elf" = "Xyes" ; then
  ELF_SYS=true
else
  ELF_SYS=
8456
fi
8457
fi
8458
rm -f conftest*
8459

8460 8461


8462 8463 8464
#
# Assignments
#
8465

8466 8467
CPPFLAGS="$CPPFLAGS $INCLUDES"
LDFLAGS="$LDFLAGS $LIBDIRS"
8468 8469


8470

8471

8472 8473 8474 8475 8476
{ $as_echo "$as_me:${as_lineno-$LINENO}: using CPPFLAGS=$CPPFLAGS" >&5
$as_echo "$as_me: using CPPFLAGS=$CPPFLAGS" >&6;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: using LDFLAGS=$LDFLAGS" >&5
$as_echo "$as_me: using LDFLAGS=$LDFLAGS" >&6;}

8477

8478 8479 8480 8481 8482
# Check whether --with-gnu-ld was given.
if test "${with_gnu_ld+set}" = set; then :
  withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
else
  with_gnu_ld=no
8483
fi
8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522

ac_prog=ld
if test "$GCC" = yes; then
  # Check if gcc -print-prog-name=ld gives a path.
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5
$as_echo_n "checking for ld used by GCC... " >&6; }
  case $host in
  *-*-mingw*)
    # gcc leaves a trailing carriage return which upsets mingw
    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  *)
    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  esac
  case "$ac_prog" in
    # Accept absolute paths.
    [\\/]* | [A-Za-z]:[\\/]*)
      re_direlt='/[^/][^/]*/\.\./'
      # Canonicalize the path of ld
      ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
	ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
      done
      test -z "$LD" && LD="$ac_prog"
      ;;
  "")
    # If it fails, then pretend we aren't using GCC.
    ac_prog=ld
    ;;
  *)
    # If it is relative, then search for the first ld in PATH.
    with_gnu_ld=unknown
    ;;
  esac
elif test "$with_gnu_ld" = yes; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5
$as_echo_n "checking for GNU ld... " >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
$as_echo_n "checking for non-GNU ld... " >&6; }
8523
fi
8524 8525
if ${ac_cv_path_LD+:} false; then :
  $as_echo_n "(cached) " >&6
8526
else
8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543
  if test -z "$LD"; then
  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
  for ac_dir in $PATH; do
    test -z "$ac_dir" && ac_dir=.
    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
      ac_cv_path_LD="$ac_dir/$ac_prog"
      # Check to see if the program is GNU ld.  I'd rather use --version,
      # but apparently some GNU ld's only accept -v.
      # Break only if it was the GNU/non-GNU ld that we prefer.
      if "$ac_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
	test "$with_gnu_ld" != no && break
      else
	test "$with_gnu_ld" != yes && break
      fi
    fi
  done
  IFS="$ac_save_ifs"
8544
else
8545 8546 8547
  ac_cv_path_LD="$LD" # Let the user override the test with a path.
fi
fi
8548

8549 8550 8551 8552 8553 8554 8555
LD="$ac_cv_path_LD"
if test -n "$LD"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5
$as_echo "$LD" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
8556
fi
8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567
test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
if ${ac_cv_prog_gnu_ld+:} false; then :
  $as_echo_n "(cached) " >&6
else
  # I'd rather use --version here, but apparently some GNU ld's only accept -v.
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
  ac_cv_prog_gnu_ld=yes
else
  ac_cv_prog_gnu_ld=no
8568
fi
8569 8570 8571 8572
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_gnu_ld" >&5
$as_echo "$ac_cv_prog_gnu_ld" >&6; }
with_gnu_ld=$ac_cv_prog_gnu_ld
8573

8574

8575

8576 8577 8578 8579 8580 8581

case $host_os in sysv5*)
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ld -R works" >&5
$as_echo_n "checking whether ld -R works... " >&6; }
if ${pgac_cv_prog_ld_R+:} false; then :
  $as_echo_n "(cached) " >&6
8582
else
8583

8584 8585 8586
    pgac_save_LDFLAGS=$LDFLAGS; LDFLAGS="$LDFLAGS -Wl,-R/usr/lib"
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
8587 8588 8589 8590

int
main ()
{
8591

8592 8593 8594
  ;
  return 0;
}
8595
_ACEOF
8596 8597
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_prog_ld_R=yes
8598
else
8599 8600 8601 8602 8603
  pgac_cv_prog_ld_R=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
    LDFLAGS=$pgac_save_LDFLAGS
8604

8605 8606 8607 8608
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_prog_ld_R" >&5
$as_echo "$pgac_cv_prog_ld_R" >&6; }
  ld_R_works=$pgac_cv_prog_ld_R
8609

8610 8611 8612 8613 8614 8615 8616 8617
esac
if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_RANLIB+:} false; then :
  $as_echo_n "(cached) " >&6
8618
else
8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635
  if test -n "$RANLIB"; then
  ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8636

8637
fi
8638
fi
8639 8640 8641 8642 8643 8644 8645
RANLIB=$ac_cv_prog_RANLIB
if test -n "$RANLIB"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5
$as_echo "$RANLIB" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
8646
fi
8647

8648

8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675
fi
if test -z "$ac_cv_prog_RANLIB"; then
  ac_ct_RANLIB=$RANLIB
  # Extract the first word of "ranlib", so it can be a program name with args.
set dummy ranlib; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -n "$ac_ct_RANLIB"; then
  ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_RANLIB="ranlib"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8676

8677 8678 8679 8680 8681 8682 8683 8684 8685
fi
fi
ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
if test -n "$ac_ct_RANLIB"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5
$as_echo "$ac_ct_RANLIB" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
8686
fi
8687

8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701
  if test "x$ac_ct_RANLIB" = x; then
    RANLIB=":"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    RANLIB=$ac_ct_RANLIB
  fi
else
  RANLIB="$ac_cv_prog_RANLIB"
fi
8702 8703


8704 8705 8706 8707 8708 8709 8710
  if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
set dummy ${ac_tool_prefix}strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_STRIP+:} false; then :
  $as_echo_n "(cached) " >&6
8711
else
8712 8713
  if test -n "$STRIP"; then
  ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
8714
else
8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_STRIP="${ac_tool_prefix}strip"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8729

8730 8731
fi
fi
8732 8733 8734 8735 8736 8737 8738 8739
STRIP=$ac_cv_prog_STRIP
if test -n "$STRIP"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
$as_echo "$STRIP" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
8740 8741


8742
fi
8743 8744 8745 8746 8747 8748 8749 8750
if test -z "$ac_cv_prog_STRIP"; then
  ac_ct_STRIP=$STRIP
  # Extract the first word of "strip", so it can be a program name with args.
set dummy strip; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
  $as_echo_n "(cached) " >&6
8751
else
8752 8753
  if test -n "$ac_ct_STRIP"; then
  ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
8754
else
8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_STRIP="strip"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8769

8770 8771
fi
fi
8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
if test -n "$ac_ct_STRIP"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
$as_echo "$ac_ct_STRIP" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi

  if test "x$ac_ct_STRIP" = x; then
    STRIP=":"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    STRIP=$ac_ct_STRIP
  fi
else
  STRIP="$ac_cv_prog_STRIP"
fi
8795

8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is possible to strip libraries" >&5
$as_echo_n "checking whether it is possible to strip libraries... " >&6; }
  if test x"$STRIP" != x"" && "$STRIP" -V 2>&1 | grep "GNU strip" >/dev/null; then
    STRIP_STATIC_LIB="$STRIP -x"
    STRIP_SHARED_LIB="$STRIP --strip-unneeded"
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
  else
    STRIP_STATIC_LIB=:
    STRIP_SHARED_LIB=:
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
  fi
8810 8811


8812

8813 8814 8815 8816 8817 8818 8819
if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_AR+:} false; then :
  $as_echo_n "(cached) " >&6
8820
else
8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837
  if test -n "$AR"; then
  ac_cv_prog_AR="$AR" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_AR="${ac_tool_prefix}ar"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8838

8839 8840 8841 8842 8843 8844 8845 8846 8847 8848
fi
fi
AR=$ac_cv_prog_AR
if test -n "$AR"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5
$as_echo "$AR" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
8849

8850 8851 8852 8853 8854 8855 8856 8857 8858 8859

fi
if test -z "$ac_cv_prog_AR"; then
  ac_ct_AR=$AR
  # Extract the first word of "ar", so it can be a program name with args.
set dummy ar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_AR+:} false; then :
  $as_echo_n "(cached) " >&6
8860
else
8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877
  if test -n "$ac_ct_AR"; then
  ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_AR="ar"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8878

8879 8880
fi
fi
8881 8882 8883 8884 8885 8886 8887
ac_ct_AR=$ac_cv_prog_ac_ct_AR
if test -n "$ac_ct_AR"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5
$as_echo "$ac_ct_AR" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
B
Bruce Momjian 已提交
8888 8889
fi

8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900
  if test "x$ac_ct_AR" = x; then
    AR="ar"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    AR=$ac_ct_AR
  fi
B
Bruce Momjian 已提交
8901
else
8902 8903
  AR="$ac_cv_prog_AR"
fi
B
Bruce Momjian 已提交
8904

8905 8906 8907 8908 8909 8910 8911 8912
if test "$PORTNAME" = "win32"; then
  if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args.
set dummy ${ac_tool_prefix}dlltool; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_DLLTOOL+:} false; then :
  $as_echo_n "(cached) " >&6
B
Bruce Momjian 已提交
8913
else
8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930
  if test -n "$DLLTOOL"; then
  ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
8931

B
Bruce Momjian 已提交
8932 8933
fi
fi
8934 8935 8936 8937 8938 8939 8940 8941
DLLTOOL=$ac_cv_prog_DLLTOOL
if test -n "$DLLTOOL"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5
$as_echo "$DLLTOOL" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
B
Bruce Momjian 已提交
8942 8943


8944
fi
8945 8946 8947 8948 8949 8950 8951 8952
if test -z "$ac_cv_prog_DLLTOOL"; then
  ac_ct_DLLTOOL=$DLLTOOL
  # Extract the first word of "dlltool", so it can be a program name with args.
set dummy dlltool; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
  $as_echo_n "(cached) " >&6
8953
else
8954 8955
  if test -n "$ac_ct_DLLTOOL"; then
  ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test.
P
 
PostgreSQL Daemon 已提交
8956
else
8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_DLLTOOL="dlltool"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
P
 
PostgreSQL Daemon 已提交
8971

8972 8973 8974 8975 8976 8977 8978 8979 8980 8981
fi
fi
ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL
if test -n "$ac_ct_DLLTOOL"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5
$as_echo "$ac_ct_DLLTOOL" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
P
 
PostgreSQL Daemon 已提交
8982

8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996
  if test "x$ac_ct_DLLTOOL" = x; then
    DLLTOOL="dlltool"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    DLLTOOL=$ac_ct_DLLTOOL
  fi
else
  DLLTOOL="$ac_cv_prog_DLLTOOL"
fi
P
 
PostgreSQL Daemon 已提交
8997

8998 8999 9000 9001 9002 9003 9004
  if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}dllwrap", so it can be a program name with args.
set dummy ${ac_tool_prefix}dllwrap; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_DLLWRAP+:} false; then :
  $as_echo_n "(cached) " >&6
9005
else
9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022
  if test -n "$DLLWRAP"; then
  ac_cv_prog_DLLWRAP="$DLLWRAP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_DLLWRAP="${ac_tool_prefix}dllwrap"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9023

P
 
PostgreSQL Daemon 已提交
9024
fi
9025
fi
9026 9027 9028 9029 9030 9031 9032
DLLWRAP=$ac_cv_prog_DLLWRAP
if test -n "$DLLWRAP"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLWRAP" >&5
$as_echo "$DLLWRAP" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9033
fi
9034 9035


9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062
fi
if test -z "$ac_cv_prog_DLLWRAP"; then
  ac_ct_DLLWRAP=$DLLWRAP
  # Extract the first word of "dllwrap", so it can be a program name with args.
set dummy dllwrap; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_DLLWRAP+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -n "$ac_ct_DLLWRAP"; then
  ac_cv_prog_ac_ct_DLLWRAP="$ac_ct_DLLWRAP" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_DLLWRAP="dllwrap"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9063 9064

fi
9065 9066 9067 9068 9069
fi
ac_ct_DLLWRAP=$ac_cv_prog_ac_ct_DLLWRAP
if test -n "$ac_ct_DLLWRAP"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLWRAP" >&5
$as_echo "$ac_ct_DLLWRAP" >&6; }
9070
else
9071 9072 9073
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
9074

9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088
  if test "x$ac_ct_DLLWRAP" = x; then
    DLLWRAP="dllwrap"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    DLLWRAP=$ac_ct_DLLWRAP
  fi
else
  DLLWRAP="$ac_cv_prog_DLLWRAP"
fi
9089

9090 9091 9092 9093 9094 9095 9096
  if test -n "$ac_tool_prefix"; then
  # Extract the first word of "${ac_tool_prefix}windres", so it can be a program name with args.
set dummy ${ac_tool_prefix}windres; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_WINDRES+:} false; then :
  $as_echo_n "(cached) " >&6
9097
else
9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114
  if test -n "$WINDRES"; then
  ac_cv_prog_WINDRES="$WINDRES" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_WINDRES="${ac_tool_prefix}windres"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9115

9116 9117 9118 9119 9120 9121 9122 9123 9124 9125
fi
fi
WINDRES=$ac_cv_prog_WINDRES
if test -n "$WINDRES"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $WINDRES" >&5
$as_echo "$WINDRES" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
9126 9127


9128 9129 9130 9131 9132 9133 9134 9135 9136
fi
if test -z "$ac_cv_prog_WINDRES"; then
  ac_ct_WINDRES=$WINDRES
  # Extract the first word of "windres", so it can be a program name with args.
set dummy windres; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_ac_ct_WINDRES+:} false; then :
  $as_echo_n "(cached) " >&6
P
 
PostgreSQL Daemon 已提交
9137
else
9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154
  if test -n "$ac_ct_WINDRES"; then
  ac_cv_prog_ac_ct_WINDRES="$ac_ct_WINDRES" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_ac_ct_WINDRES="windres"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9155 9156 9157

fi
fi
9158 9159 9160 9161 9162 9163 9164
ac_ct_WINDRES=$ac_cv_prog_ac_ct_WINDRES
if test -n "$ac_ct_WINDRES"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_WINDRES" >&5
$as_echo "$ac_ct_WINDRES" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9165 9166
fi

9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180
  if test "x$ac_ct_WINDRES" = x; then
    WINDRES="windres"
  else
    case $cross_compiling:$ac_tool_warned in
yes:)
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
ac_tool_warned=yes ;;
esac
    WINDRES=$ac_ct_WINDRES
  fi
else
  WINDRES="$ac_cv_prog_WINDRES"
fi
9181 9182 9183

fi

9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209
# Extract the first word of "tar", so it can be a program name with args.
set dummy tar; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_TAR+:} false; then :
  $as_echo_n "(cached) " >&6
else
  case $TAR in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_TAR="$TAR" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_TAR="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9210

9211 9212 9213 9214 9215 9216 9217
  ;;
esac
fi
TAR=$ac_cv_path_TAR
if test -n "$TAR"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TAR" >&5
$as_echo "$TAR" >&6; }
9218
else
9219 9220 9221
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
9222 9223


9224 9225 9226 9227 9228 9229 9230 9231 9232 9233
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5
$as_echo_n "checking whether ln -s works... " >&6; }
LN_S=$as_ln_s
if test "$LN_S" = "ln -s"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5
$as_echo "no, using $LN_S" >&6; }
fi
9234

9235 9236 9237 9238 9239 9240 9241 9242
for ac_prog in gawk mawk nawk awk
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_AWK+:} false; then :
  $as_echo_n "(cached) " >&6
9243
else
9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260
  if test -n "$AWK"; then
  ac_cv_prog_AWK="$AWK" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_AWK="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9261

9262
fi
9263
fi
9264 9265 9266 9267 9268 9269 9270
AWK=$ac_cv_prog_AWK
if test -n "$AWK"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
$as_echo "$AWK" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9271
fi
P
 
PostgreSQL Daemon 已提交
9272

9273

9274 9275
  test -n "$AWK" && break
done
9276

9277 9278 9279 9280 9281
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
if test -z "$MKDIR_P"; then
  if ${ac_cv_path_mkdir+:} false; then :
  $as_echo_n "(cached) " >&6
9282
else
9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_prog in mkdir gmkdir; do
	 for ac_exec_ext in '' $ac_executable_extensions; do
	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
	     'mkdir (GNU coreutils) '* | \
	     'mkdir (coreutils) '* | \
	     'mkdir (fileutils) '4.1*)
	       ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
	       break 3;;
	   esac
	 done
       done
  done
IFS=$as_save_IFS
P
 
PostgreSQL Daemon 已提交
9302

9303
fi
9304

9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317
  test -d ./--version && rmdir ./--version
  if test "${ac_cv_path_mkdir+set}" = set; then
    MKDIR_P="$ac_cv_path_mkdir -p"
  else
    # As a last resort, use the slow shell script.  Don't cache a
    # value for MKDIR_P within a source directory, because that will
    # break other packages using the cache if that directory is
    # removed, or if the value is a relative name.
    MKDIR_P="$ac_install_sh -d"
  fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
$as_echo "$MKDIR_P" >&6; }
9318

9319 9320 9321 9322 9323 9324
# When Autoconf chooses install-sh as mkdir -p 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 $MKDIR_P in
  *install-sh*) MKDIR_P='\${SHELL} \${top_srcdir}/config/install-sh -c -d';;
esac
9325

9326 9327 9328 9329 9330 9331 9332 9333
# Let the user override the search
if test -z "$BISON"; then
  for ac_prog in bison
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
9334
if ${ac_cv_prog_BISON+:} false; then :
9335
  $as_echo_n "(cached) " >&6
9336
else
9337 9338 9339 9340
  if test -n "$BISON"; then
  ac_cv_prog_BISON="$BISON" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9341 9342 9343 9344 9345 9346
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
9347
    ac_cv_prog_BISON="$ac_prog"
9348 9349 9350 9351 9352 9353
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9354 9355

fi
9356 9357
fi
BISON=$ac_cv_prog_BISON
9358 9359 9360 9361 9362 9363
if test -n "$BISON"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5
$as_echo "$BISON" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9364 9365 9366
fi


9367 9368
  test -n "$BISON" && break
done
9369

9370 9371
fi

9372 9373 9374 9375 9376 9377 9378
if test "$BISON"; then
  pgac_bison_version=`$BISON --version 2>/dev/null | sed q`
  { $as_echo "$as_me:${as_lineno-$LINENO}: using $pgac_bison_version" >&5
$as_echo "$as_me: using $pgac_bison_version" >&6;}
  if echo "$pgac_bison_version" | $AWK '{ if ($4 < 1.875) exit 0; else exit 1;}'
  then
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
9379 9380
*** The installed version of Bison is too old to use with PostgreSQL.
*** Bison version 1.875 or later is required." >&5
9381
$as_echo "$as_me: WARNING:
9382 9383
*** The installed version of Bison is too old to use with PostgreSQL.
*** Bison version 1.875 or later is required." >&2;}
9384 9385
    BISON=""
  fi
A
Adam Lee 已提交
9386 9387 9388 9389 9390 9391 9392 9393
 # Bison >=3.0 issues warnings about %name-prefix="base_yy", instead
 # of the now preferred %name-prefix "base_yy", but the latter
 # doesn't work with Bison 2.3 or less.  So for now we silence the
 # deprecation warnings.
 if echo "$pgac_bison_version" | $AWK '{ if ($4 >= 3) exit 0; else exit 1;}'
 then
   BISONFLAGS="$BISONFLAGS -Wno-deprecated"
 fi
9394
fi
9395

9396 9397
if test -z "$BISON"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
9398
*** Without Bison you will not be able to build PostgreSQL from CVS nor
9399 9400 9401 9402 9403
*** change any of the parser definition files.  You can obtain Bison from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)" >&5
$as_echo "$as_me: WARNING:
9404
*** Without Bison you will not be able to build PostgreSQL from CVS nor
9405 9406 9407 9408 9409 9410
*** change any of the parser definition files.  You can obtain Bison from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)" >&2;}
fi
# We don't need AC_SUBST(BISON) because AC_PATH_PROG did it
9411 9412


9413 9414 9415 9416
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for flex" >&5
$as_echo_n "checking for flex... " >&6; }
if ${pgac_cv_path_flex+:} false; then :
  $as_echo_n "(cached) " >&6
P
 
PostgreSQL Daemon 已提交
9417
else
9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436
  # Let the user override the test
if test -n "$FLEX"; then
  pgac_cv_path_flex=$FLEX
else
  pgac_save_IFS=$IFS
  IFS=$PATH_SEPARATOR
  for pgac_dir in $PATH; do
    IFS=$pgac_save_IFS
    if test -z "$pgac_dir" || test x"$pgac_dir" = x"."; then
      pgac_dir=`pwd`
    fi
    for pgac_prog in flex lex; do
      pgac_candidate="$pgac_dir/$pgac_prog"
      if test -f "$pgac_candidate" \
        && $pgac_candidate --version </dev/null >/dev/null 2>&1
      then
        echo '%%'  > conftest.l
        if $pgac_candidate -t conftest.l 2>/dev/null | grep FLEX_SCANNER >/dev/null 2>&1; then
          pgac_flex_version=`$pgac_candidate --version 2>/dev/null`
9437
          if echo "$pgac_flex_version" | sed 's/[^0-9]/ /g' | $AWK '{ if ($1 == 2 && ($2 > 5 || ($2 == 5 && $3 >= 4))) exit 0; else exit 1;}'
9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448
          then
            pgac_cv_path_flex=$pgac_candidate
            break 2
          else
            { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** The installed version of Flex, $pgac_candidate, is too old to use with Greenplum DB.
*** Flex version 2.5.4 or later is required, but this is $pgac_flex_version." >&5
$as_echo "$as_me: WARNING:
*** The installed version of Flex, $pgac_candidate, is too old to use with Greenplum DB.
*** Flex version 2.5.4 or later is required, but this is $pgac_flex_version." >&2;}
          fi
9449 9450 9451

          pgac_cv_path_flex=$pgac_candidate
          break 2
9452 9453 9454 9455 9456 9457
        fi
      fi
    done
  done
  rm -f conftest.l lex.yy.c
  : ${pgac_cv_path_flex=no}
9458
fi
9459

9460
fi
9461 9462 9463
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_path_flex" >&5
$as_echo "$pgac_cv_path_flex" >&6; }
if test x"$pgac_cv_path_flex" = x"no"; then
9464 9465 9466 9467 9468 9469 9470 9471 9472
  if test -n "$pgac_broken_flex"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** The Flex version 2.5.3 you have at $pgac_broken_flex contains a bug. You
*** should get version 2.5.4 or later." >&5
$as_echo "$as_me: WARNING:
*** The Flex version 2.5.3 you have at $pgac_broken_flex contains a bug. You
*** should get version 2.5.4 or later." >&2;}
  fi

9473
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
9474
*** Without Flex you will not be able to build PostgreSQL from CVS or
9475 9476 9477 9478 9479
*** change any of the scanner definition files.  You can obtain Flex from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)" >&5
$as_echo "$as_me: WARNING:
9480
*** Without Flex you will not be able to build PostgreSQL from CVS or
9481 9482 9483 9484
*** change any of the scanner definition files.  You can obtain Flex from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)" >&2;}
9485

9486 9487 9488
  FLEX=
else
  FLEX=$pgac_cv_path_flex
9489
  pgac_flex_version=`$FLEX -V 2>/dev/null`
9490 9491 9492
  { $as_echo "$as_me:${as_lineno-$LINENO}: using $pgac_flex_version" >&5
$as_echo "$as_me: using $pgac_flex_version" >&6;}
fi
9493 9494


9495 9496 9497



9498 9499 9500 9501 9502 9503 9504 9505
# Let the user override the search
if test -z "$PERL"; then
  # Extract the first word of "perl", so it can be a program name with args.
set dummy perl; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_PERL+:} false; then :
  $as_echo_n "(cached) " >&6
9506
else
9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525
  case $PERL in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9526

9527 9528
  ;;
esac
9529
fi
9530 9531 9532 9533 9534 9535 9536
PERL=$ac_cv_path_PERL
if test -n "$PERL"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5
$as_echo "$PERL" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9537 9538 9539
fi


9540
fi
9541

9542 9543 9544 9545 9546
if test "$PERL"; then
  pgac_perl_version=`$PERL -v 2>/dev/null | sed -n 's/This is perl.*v[a-z ]*\([0-9]\.[0-9][0-9.]*\).*$/\1/p'`
  { $as_echo "$as_me:${as_lineno-$LINENO}: using perl $pgac_perl_version" >&5
$as_echo "$as_me: using perl $pgac_perl_version" >&6;}
  if echo "$pgac_perl_version" | sed 's/[.a-z_]/ /g' | \
9547
    $AWK '{ if ($1 == 5 && $2 >= 6) exit 1; else exit 0;}'
9548 9549 9550 9551 9552 9553 9554 9555 9556
  then
    { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** The installed version of Perl, $PERL, is too old to use with PostgreSQL.
*** Perl version 5.6 or later is required, but this is $pgac_perl_version." >&5
$as_echo "$as_me: WARNING:
*** The installed version of Perl, $PERL, is too old to use with PostgreSQL.
*** Perl version 5.6 or later is required, but this is $pgac_perl_version." >&2;}
    PERL=""
  fi
9557
fi
9558

9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570
if test -z "$PERL"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** Without Perl you will not be able to build PostgreSQL from Git.
*** You can obtain Perl from any CPAN mirror site.
*** (If you are using the official distribution of PostgreSQL then you do not
*** need to worry about this, because the Perl output is pre-generated.)" >&5
$as_echo "$as_me: WARNING:
*** Without Perl you will not be able to build PostgreSQL from Git.
*** You can obtain Perl from any CPAN mirror site.
*** (If you are using the official distribution of PostgreSQL then you do not
*** need to worry about this, because the Perl output is pre-generated.)" >&2;}
fi
9571

9572 9573 9574 9575
if test "$with_perl" = yes; then
  if test -z "$PERL"; then
    as_fn_error $? "Perl not found" "$LINENO" 5
  fi
9576

9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Perl archlibexp" >&5
$as_echo_n "checking for Perl archlibexp... " >&6; }
perl_archlibexp=`$PERL -MConfig -e 'print $Config{archlibexp}'`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $perl_archlibexp" >&5
$as_echo "$perl_archlibexp" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Perl privlibexp" >&5
$as_echo_n "checking for Perl privlibexp... " >&6; }
perl_privlibexp=`$PERL -MConfig -e 'print $Config{privlibexp}'`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $perl_privlibexp" >&5
$as_echo "$perl_privlibexp" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Perl useshrplib" >&5
$as_echo_n "checking for Perl useshrplib... " >&6; }
perl_useshrplib=`$PERL -MConfig -e 'print $Config{useshrplib}'`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $perl_useshrplib" >&5
$as_echo "$perl_useshrplib" >&6; }
9592

9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for flags to link embedded Perl" >&5
$as_echo_n "checking for flags to link embedded Perl... " >&6; }
pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
perl_embed_ldflags=`echo X"$pgac_tmp1" | sed -e "s/^X//" -e "s%$pgac_tmp2%%" -e "s/ -arch [-a-zA-Z0-9_]*//g"`
if test -z "$perl_embed_ldflags" ; then
	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
	as_fn_error $? "could not determine flags for linking embedded Perl.
This probably means that ExtUtils::Embed or ExtUtils::MakeMaker is not
installed." "$LINENO" 5
else
	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $perl_embed_ldflags" >&5
$as_echo "$perl_embed_ldflags" >&6; }
9607 9608
fi

9609
fi
9610

9611 9612 9613 9614 9615 9616 9617
if test "$with_python" = yes; then
  # Extract the first word of "python", so it can be a program name with args.
set dummy python; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_PYTHON+:} false; then :
  $as_echo_n "(cached) " >&6
9618
else
9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637
  case $PYTHON in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9638

9639 9640
  ;;
esac
9641
fi
9642 9643 9644 9645 9646 9647 9648
PYTHON=$ac_cv_path_PYTHON
if test -n "$PYTHON"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5
$as_echo "$PYTHON" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
M
Marc G. Fournier 已提交
9649
fi
9650

9651

9652 9653
if test x"$PYTHON" = x""; then
  as_fn_error $? "Python not found" "$LINENO" 5
9654
fi
9655

9656

9657 9658 9659 9660 9661 9662 9663 9664 9665 9666
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Python distutils module" >&5
$as_echo_n "checking for Python distutils module... " >&6; }
if "${PYTHON}" -c 'import distutils' 2>&5
then
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
    as_fn_error $? "distutils module not found" "$LINENO" 5
M
Marc G. Fournier 已提交
9667
fi
9668 9669 9670 9671 9672 9673
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Python configuration directory" >&5
$as_echo_n "checking Python configuration directory... " >&6; }
python_majorversion=`${PYTHON} -c "import sys; print(sys.version[0])"`
python_version=`${PYTHON} -c "import sys; print(sys.version[:3])"`
python_configdir=`${PYTHON} -c "from distutils.sysconfig import get_python_lib as f; import os; print(os.path.join(f(plat_specific=1,standard_lib=1),'config'))"`
python_includespec=`${PYTHON} -c "import distutils.sysconfig; print('-I'+distutils.sysconfig.get_python_inc())"`
9674

9675 9676 9677
# This should be enough of a message.
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $python_configdir" >&5
$as_echo "$python_configdir" >&6; }
9678

9679

9680 9681
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link an embedded Python application" >&5
$as_echo_n "checking how to link an embedded Python application... " >&6; }
9682

9683 9684 9685 9686
python_libdir=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LIBDIR'))))"`
python_ldlibrary=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LDLIBRARY'))))"`
python_so=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('SO'))))"`
ldlibrary=`echo "${python_ldlibrary}" | sed "s/${python_so}$//"`
9687

9688 9689 9690 9691 9692 9693 9694
if test x"${python_libdir}" != x"" -a x"${python_ldlibrary}" != x"" -a x"${python_ldlibrary}" != x"${ldlibrary}"
then
	# New way: use the official shared library
	ldlibrary=`echo "${ldlibrary}" | sed "s/^lib//"`
	# special for greenplum... python was built in /opt/, but resides in the ext directory
	if test ! -d "${python_libdir}"
	then
T
Tom Meyer 已提交
9695
		python_libdir=`echo "${python_configdir}" | sed "s/\/python2.7\/config//"`
9696 9697
	fi
	python_libspec="-L${python_libdir} -l${ldlibrary}"
9698
else
9699 9700 9701
	# Old way: use libpython from python_configdir
	python_libdir="${python_configdir}"
	python_libspec="-L${python_libdir} -lpython${python_version}"
9702 9703
fi

9704
python_additional_libs=`${PYTHON} -c "import distutils.sysconfig,string; print(' '.join(filter(None,distutils.sysconfig.get_config_vars('LIBS','LIBC','LIBM','LOCALMODLIBS','BASEMODLIBS'))))"`
9705

9706 9707
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${python_libspec} ${python_additional_libs}" >&5
$as_echo "${python_libspec} ${python_additional_libs}" >&6; }
9708

9709

9710
# threaded python is not supported on OpenBSD
9711 9712 9713 9714 9715 9716 9717
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether Python is compiled with thread support" >&5
$as_echo_n "checking whether Python is compiled with thread support... " >&6; }
pythreads=`${PYTHON} -c "import sys; print(int('thread' in sys.builtin_module_names))"`
if test "$pythreads" = "1"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
  case $host_os in
9718
  openbsd*)
9719 9720 9721 9722 9723 9724
    as_fn_error $? "threaded Python not supported on this platform" "$LINENO" 5
    ;;
  esac
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9725 9726 9727
fi


9728
fi
9729

9730 9731 9732 9733 9734 9735 9736
if test "$cross_compiling" = yes && test -z "$with_system_tzdata"; then
  # Extract the first word of "zic", so it can be a program name with args.
set dummy zic; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_ZIC+:} false; then :
  $as_echo_n "(cached) " >&6
9737
else
9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756
  case $ZIC in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_ZIC="$ZIC" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_ZIC="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
9757

9758 9759
  ;;
esac
9760
fi
9761 9762 9763 9764
ZIC=$ac_cv_path_ZIC
if test -n "$ZIC"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ZIC" >&5
$as_echo "$ZIC" >&6; }
9765
else
9766 9767
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
9768 9769
fi

9770 9771 9772 9773 9774 9775 9776

  if test -z "$ZIC"; then
    as_fn_error $? "
When cross-compiling, either use the option --with-system-tzdata to use
existing time-zone data, or set the environment variable ZIC to a zic
program to use during the build." "$LINENO" 5
  fi
9777 9778
fi

P
 
PostgreSQL Daemon 已提交
9779

9780 9781 9782


#
9783
GP_VERSION_NUM="`echo "$PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
9784 9785 9786 9787 9788
tr '.' '	' |
$AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"

cat >>confdefs.h <<_ACEOF
#define GP_VERSION_NUM $GP_VERSION_NUM
9789
_ACEOF
9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808


##
## Libraries
##
## Most libraries are included only if they demonstrably provide a function
## we need, but libm is an exception: always include it, because there are
## too many compilers that play cute optimization games that will break
## probes for standard functions such as pow().
##

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lm" >&5
$as_echo_n "checking for main in -lm... " >&6; }
if ${ac_cv_lib_m_main+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lm  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9809
/* end confdefs.h.  */
9810

9811 9812 9813 9814

int
main ()
{
9815
return main ();
9816 9817 9818 9819
  ;
  return 0;
}
_ACEOF
9820 9821
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_m_main=yes
9822
else
9823
  ac_cv_lib_m_main=no
9824
fi
9825 9826 9827
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
9828
fi
9829 9830 9831 9832 9833
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_main" >&5
$as_echo "$ac_cv_lib_m_main" >&6; }
if test "x$ac_cv_lib_m_main" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBM 1
9834 9835
_ACEOF

9836
  LIBS="-lm $LIBS"
9837

9838 9839 9840 9841 9842 9843
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setproctitle" >&5
$as_echo_n "checking for library containing setproctitle... " >&6; }
if ${ac_cv_search_setproctitle+:} false; then :
  $as_echo_n "(cached) " >&6
9844
else
9845 9846
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9847 9848
/* end confdefs.h.  */

9849 9850 9851 9852 9853 9854 9855
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char setproctitle ();
9856 9857 9858
int
main ()
{
9859
return setproctitle ();
9860 9861 9862 9863
  ;
  return 0;
}
_ACEOF
9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881
for ac_lib in '' util; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_setproctitle=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_setproctitle+:} false; then :
  break
fi
done
if ${ac_cv_search_setproctitle+:} false; then :

9882
else
9883 9884 9885 9886 9887 9888 9889 9890 9891 9892
  ac_cv_search_setproctitle=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_setproctitle" >&5
$as_echo "$ac_cv_search_setproctitle" >&6; }
ac_res=$ac_cv_search_setproctitle
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
9893

9894 9895 9896 9897 9898 9899 9900 9901 9902
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5
$as_echo_n "checking for library containing dlopen... " >&6; }
if ${ac_cv_search_dlopen+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9903
/* end confdefs.h.  */
M
 
Marc G. Fournier 已提交
9904

9905 9906 9907 9908 9909 9910 9911
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char dlopen ();
9912 9913 9914
int
main ()
{
9915
return dlopen ();
9916 9917 9918 9919
  ;
  return 0;
}
_ACEOF
9920 9921 9922 9923 9924 9925 9926 9927 9928
for ac_lib in '' dl; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_dlopen=$ac_res
9929
fi
9930 9931 9932 9933
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_dlopen+:} false; then :
  break
9934
fi
9935 9936
done
if ${ac_cv_search_dlopen+:} false; then :
9937 9938

else
9939 9940 9941 9942
  ac_cv_search_dlopen=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
9943
fi
9944 9945 9946 9947 9948
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5
$as_echo "$ac_cv_search_dlopen" >&6; }
ac_res=$ac_cv_search_dlopen
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
9949 9950 9951

fi

9952 9953 9954 9955
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5
$as_echo_n "checking for library containing socket... " >&6; }
if ${ac_cv_search_socket+:} false; then :
  $as_echo_n "(cached) " >&6
9956
else
9957 9958
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
9959
/* end confdefs.h.  */
9960

9961 9962 9963 9964 9965 9966 9967
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char socket ();
9968 9969 9970
int
main ()
{
9971
return socket ();
9972 9973 9974 9975
  ;
  return 0;
}
_ACEOF
9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993
for ac_lib in '' socket wsock32; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_socket=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_socket+:} false; then :
  break
fi
done
if ${ac_cv_search_socket+:} false; then :

9994
else
9995 9996 9997 9998 9999 10000 10001 10002 10003 10004
  ac_cv_search_socket=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5
$as_echo "$ac_cv_search_socket" >&6; }
ac_res=$ac_cv_search_socket
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10005

10006 10007 10008 10009 10010 10011 10012 10013 10014
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing shl_load" >&5
$as_echo_n "checking for library containing shl_load... " >&6; }
if ${ac_cv_search_shl_load+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10015 10016
/* end confdefs.h.  */

10017 10018 10019 10020 10021 10022 10023
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char shl_load ();
10024 10025 10026
int
main ()
{
10027
return shl_load ();
10028 10029 10030 10031
  ;
  return 0;
}
_ACEOF
10032 10033 10034 10035 10036 10037 10038 10039 10040
for ac_lib in '' dld; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_shl_load=$ac_res
10041
fi
10042 10043 10044 10045
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_shl_load+:} false; then :
  break
10046
fi
10047 10048
done
if ${ac_cv_search_shl_load+:} false; then :
10049

10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060
else
  ac_cv_search_shl_load=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_shl_load" >&5
$as_echo "$ac_cv_search_shl_load" >&6; }
ac_res=$ac_cv_search_shl_load
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
M
 
Marc G. Fournier 已提交
10061

10062
fi
M
 
Marc G. Fournier 已提交
10063

10064 10065 10066 10067 10068 10069 10070
# We only use libld in port/dynloader/aix.c
case $host_os in
     aix*)
	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing ldopen" >&5
$as_echo_n "checking for library containing ldopen... " >&6; }
if ${ac_cv_search_ldopen+:} false; then :
  $as_echo_n "(cached) " >&6
10071
else
10072 10073
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10074
/* end confdefs.h.  */
10075

10076 10077 10078 10079 10080 10081 10082
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char ldopen ();
10083 10084 10085
int
main ()
{
10086
return ldopen ();
10087 10088 10089 10090
  ;
  return 0;
}
_ACEOF
10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108
for ac_lib in '' ld; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_ldopen=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_ldopen+:} false; then :
  break
fi
done
if ${ac_cv_search_ldopen+:} false; then :

10109
else
10110 10111 10112 10113 10114 10115 10116 10117 10118 10119
  ac_cv_search_ldopen=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_ldopen" >&5
$as_echo "$ac_cv_search_ldopen" >&6; }
ac_res=$ac_cv_search_ldopen
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10120

10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131
fi

	;;
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing getopt_long" >&5
$as_echo_n "checking for library containing getopt_long... " >&6; }
if ${ac_cv_search_getopt_long+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10132 10133
/* end confdefs.h.  */

10134 10135 10136 10137 10138 10139 10140
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char getopt_long ();
10141 10142 10143
int
main ()
{
10144
return getopt_long ();
10145 10146 10147 10148
  ;
  return 0;
}
_ACEOF
10149 10150 10151 10152 10153 10154 10155 10156 10157
for ac_lib in '' getopt gnugetopt; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_getopt_long=$ac_res
10158
fi
10159 10160 10161 10162
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_getopt_long+:} false; then :
  break
10163
fi
10164 10165
done
if ${ac_cv_search_getopt_long+:} false; then :
10166

10167
else
10168
  ac_cv_search_getopt_long=no
10169
fi
10170 10171
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
10172
fi
10173 10174 10175 10176 10177
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_getopt_long" >&5
$as_echo "$ac_cv_search_getopt_long" >&6; }
ac_res=$ac_cv_search_getopt_long
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10178

10179
fi
10180

10181 10182 10183 10184
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing crypt" >&5
$as_echo_n "checking for library containing crypt... " >&6; }
if ${ac_cv_search_crypt+:} false; then :
  $as_echo_n "(cached) " >&6
10185
else
10186 10187
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10188
/* end confdefs.h.  */
10189 10190 10191 10192 10193 10194 10195 10196

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char crypt ();
10197 10198 10199
int
main ()
{
10200
return crypt ();
10201 10202 10203 10204
  ;
  return 0;
}
_ACEOF
10205 10206 10207 10208 10209 10210 10211 10212 10213
for ac_lib in '' crypt; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_crypt=$ac_res
10214
fi
10215 10216 10217 10218
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_crypt+:} false; then :
  break
10219
fi
10220 10221
done
if ${ac_cv_search_crypt+:} false; then :
10222

10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233
else
  ac_cv_search_crypt=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_crypt" >&5
$as_echo "$ac_cv_search_crypt" >&6; }
ac_res=$ac_cv_search_crypt
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10234 10235

fi
10236 10237 10238 10239 10240 10241

# Solaris:
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing fdatasync" >&5
$as_echo_n "checking for library containing fdatasync... " >&6; }
if ${ac_cv_search_fdatasync+:} false; then :
  $as_echo_n "(cached) " >&6
B
Bruce Momjian 已提交
10242
else
10243 10244
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10245
/* end confdefs.h.  */
10246 10247 10248 10249 10250 10251

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
10252
#endif
10253
char fdatasync ();
10254 10255 10256
int
main ()
{
10257
return fdatasync ();
10258 10259 10260 10261
  ;
  return 0;
}
_ACEOF
10262 10263 10264 10265 10266 10267 10268 10269 10270
for ac_lib in '' rt posix4; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_fdatasync=$ac_res
10271
fi
10272 10273 10274 10275
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_fdatasync+:} false; then :
  break
10276
fi
10277 10278
done
if ${ac_cv_search_fdatasync+:} false; then :
10279

10280 10281
else
  ac_cv_search_fdatasync=no
10282
fi
10283 10284
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
10285
fi
10286 10287 10288 10289 10290
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_fdatasync" >&5
$as_echo "$ac_cv_search_fdatasync" >&6; }
ac_res=$ac_cv_search_fdatasync
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
B
Bruce Momjian 已提交
10291 10292

fi
10293

10294 10295 10296 10297 10298 10299
# Required for thread_test.c on Solaris 2.5:
# Other ports use it too (HP-UX) so test unconditionally
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname_r" >&5
$as_echo_n "checking for library containing gethostbyname_r... " >&6; }
if ${ac_cv_search_gethostbyname_r+:} false; then :
  $as_echo_n "(cached) " >&6
M
 
Marc G. Fournier 已提交
10300
else
10301 10302
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10303
/* end confdefs.h.  */
10304 10305 10306 10307 10308 10309 10310 10311

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char gethostbyname_r ();
10312 10313 10314
int
main ()
{
10315
return gethostbyname_r ();
10316 10317 10318 10319
  ;
  return 0;
}
_ACEOF
10320 10321 10322 10323 10324 10325 10326 10327 10328
for ac_lib in '' nsl; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_gethostbyname_r=$ac_res
10329
fi
10330 10331 10332 10333
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_gethostbyname_r+:} false; then :
  break
10334
fi
10335 10336
done
if ${ac_cv_search_gethostbyname_r+:} false; then :
M
 
Marc G. Fournier 已提交
10337

10338 10339
else
  ac_cv_search_gethostbyname_r=no
10340
fi
10341 10342 10343 10344 10345 10346 10347 10348
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname_r" >&5
$as_echo "$ac_cv_search_gethostbyname_r" >&6; }
ac_res=$ac_cv_search_gethostbyname_r
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10349

10350
fi
10351

10352 10353 10354 10355 10356
# Cygwin:
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing shmget" >&5
$as_echo_n "checking for library containing shmget... " >&6; }
if ${ac_cv_search_shmget+:} false; then :
  $as_echo_n "(cached) " >&6
10357
else
10358 10359
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10360 10361
/* end confdefs.h.  */

10362 10363
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
10364 10365
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
10366
extern "C"
10367
#endif
10368
char shmget ();
10369 10370 10371
int
main ()
{
10372
return shmget ();
10373 10374 10375 10376
  ;
  return 0;
}
_ACEOF
10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393
for ac_lib in '' cygipc; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_shmget=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_shmget+:} false; then :
  break
fi
done
if ${ac_cv_search_shmget+:} false; then :
10394

10395 10396
else
  ac_cv_search_shmget=no
10397
fi
10398 10399
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
10400
fi
10401 10402 10403 10404 10405
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_shmget" >&5
$as_echo "$ac_cv_search_shmget" >&6; }
ac_res=$ac_cv_search_shmget
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10406

10407
fi
M
 
Marc G. Fournier 已提交
10408

10409

10410 10411 10412 10413 10414
if test "$with_readline" = yes; then


if ${pgac_cv_check_readline+:} false; then :
  $as_echo_n "(cached) " >&6
10415
else
10416 10417 10418 10419 10420 10421 10422
  pgac_cv_check_readline=no
pgac_save_LIBS=$LIBS
if test x"$with_libedit_preferred" != x"yes"
then	READLINE_ORDER="-lreadline -ledit"
else	READLINE_ORDER="-ledit -lreadline"
fi
for pgac_rllib in $READLINE_ORDER ; do
10423 10424
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${pgac_rllib}" >&5
$as_echo_n "checking for ${pgac_rllib}... " >&6; }
10425 10426 10427
  for pgac_lib in "" " -ltermcap" " -lncurses" " -lcurses" ; do
    LIBS="${pgac_rllib}${pgac_lib} $pgac_save_LIBS"
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10428
/* end confdefs.h.  */
10429

10430 10431 10432 10433 10434 10435 10436
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char readline ();
10437 10438 10439
int
main ()
{
10440
return readline ();
10441 10442 10443 10444
  ;
  return 0;
}
_ACEOF
10445
if ac_fn_c_try_link "$LINENO"; then :
10446

10447 10448 10449 10450 10451 10452 10453 10454 10455
      # Older NetBSD, OpenBSD, and Irix have a broken linker that does not
      # recognize dependent libraries; assume curses is needed if we didn't
      # find any dependency.
      case $host_os in
        netbsd* | openbsd* | irix*)
          if test x"$pgac_lib" = x"" ; then
            pgac_lib=" -lcurses"
          fi ;;
      esac
10456

10457 10458
      pgac_cv_check_readline="${pgac_rllib}${pgac_lib}"
      break
10459

10460 10461 10462 10463 10464
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
  done
  if test "$pgac_cv_check_readline" != no ; then
10465 10466
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes ($pgac_cv_check_readline)" >&5
$as_echo "yes ($pgac_cv_check_readline)" >&6; }
10467
    break
10468 10469 10470
  else
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
10471 10472 10473
  fi
done
LIBS=$pgac_save_LIBS
10474

10475
fi
10476

10477 10478
if test "$pgac_cv_check_readline" != no ; then
  LIBS="$pgac_cv_check_readline $LIBS"
10479

10480
$as_echo "#define HAVE_LIBREADLINE 1" >>confdefs.h
10481 10482 10483

fi

10484

10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497
  if test x"$pgac_cv_check_readline" = x"no"; then
    as_fn_error $? "readline library not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support." "$LINENO" 5
  fi
fi

if test "$with_zlib" = yes; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflate in -lz" >&5
$as_echo_n "checking for inflate in -lz... " >&6; }
if ${ac_cv_lib_z_inflate+:} false; then :
  $as_echo_n "(cached) " >&6
10498
else
10499 10500 10501
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lz  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10502 10503
/* end confdefs.h.  */

10504 10505 10506 10507 10508 10509 10510
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char inflate ();
10511 10512 10513
int
main ()
{
10514
return inflate ();
10515 10516 10517 10518
  ;
  return 0;
}
_ACEOF
10519 10520
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_z_inflate=yes
10521
else
10522
  ac_cv_lib_z_inflate=no
10523
fi
10524 10525 10526
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
10527
fi
10528 10529 10530 10531 10532
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_inflate" >&5
$as_echo "$ac_cv_lib_z_inflate" >&6; }
if test "x$ac_cv_lib_z_inflate" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBZ 1
10533 10534
_ACEOF

10535
  LIBS="-lz $LIBS"
10536 10537

else
10538 10539 10540 10541 10542
  as_fn_error $? "zlib library not found
If you have zlib already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-zlib to disable zlib support." "$LINENO" 5
fi
10543 10544 10545

fi

10546 10547 10548
if test "$enable_spinlocks" = yes; then

$as_echo "#define HAVE_SPINLOCKS 1" >>confdefs.h
10549

10550
else
10551 10552 10553 10554 10555 10556
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** Not using spinlocks will cause poor performance." >&5
$as_echo "$as_me: WARNING:
*** Not using spinlocks will cause poor performance." >&2;}
fi

10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567
if test "$enable_atomics" = yes; then

$as_echo "#define HAVE_ATOMICS 1" >>confdefs.h

else
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
*** Not using atomic operations will cause poor performance." >&5
$as_echo "$as_me: WARNING:
*** Not using atomic operations will cause poor performance." >&2;}
fi

10568 10569 10570 10571 10572 10573 10574 10575 10576
if test "$with_gssapi" = yes ; then
  if test "$PORTNAME" != "win32"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gss_init_sec_context" >&5
$as_echo_n "checking for library containing gss_init_sec_context... " >&6; }
if ${ac_cv_search_gss_init_sec_context+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10577
/* end confdefs.h.  */
10578 10579 10580 10581 10582 10583 10584 10585

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char gss_init_sec_context ();
10586 10587 10588
int
main ()
{
10589
return gss_init_sec_context ();
10590 10591 10592 10593
  ;
  return 0;
}
_ACEOF
10594 10595 10596 10597 10598 10599 10600 10601 10602
for ac_lib in '' gssapi_krb5 gss 'gssapi -lkrb5 -lcrypto'; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_gss_init_sec_context=$ac_res
10603
fi
10604 10605 10606 10607
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_gss_init_sec_context+:} false; then :
  break
10608
fi
10609 10610
done
if ${ac_cv_search_gss_init_sec_context+:} false; then :
10611 10612

else
10613 10614 10615 10616 10617 10618 10619 10620 10621 10622
  ac_cv_search_gss_init_sec_context=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gss_init_sec_context" >&5
$as_echo "$ac_cv_search_gss_init_sec_context" >&6; }
ac_res=$ac_cv_search_gss_init_sec_context
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10623

10624 10625
else
  as_fn_error $? "could not find function 'gss_init_sec_context' required for GSSAPI" "$LINENO" 5
10626 10627
fi

10628 10629 10630 10631
  else
    LIBS="$LIBS -lgssapi32"
  fi
fi
10632

10633 10634 10635 10636 10637 10638
if test "$with_krb5" = yes ; then
  if test "$PORTNAME" != "win32"; then
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing com_err" >&5
$as_echo_n "checking for library containing com_err... " >&6; }
if ${ac_cv_search_com_err+:} false; then :
  $as_echo_n "(cached) " >&6
10639
else
10640 10641
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10642 10643
/* end confdefs.h.  */

10644 10645 10646 10647 10648 10649 10650
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char com_err ();
10651 10652 10653
int
main ()
{
10654
return com_err ();
10655 10656 10657 10658
  ;
  return 0;
}
_ACEOF
10659 10660 10661 10662 10663 10664 10665 10666 10667
for ac_lib in '' krb5 'krb5 -lcrypto -ldes -lasn1 -lroken' com_err 'com_err -lssl -lcrypto'; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_com_err=$ac_res
10668
fi
10669 10670 10671 10672
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_com_err+:} false; then :
  break
10673
fi
10674 10675
done
if ${ac_cv_search_com_err+:} false; then :
10676 10677

else
10678
  ac_cv_search_com_err=no
10679
fi
10680 10681 10682 10683 10684 10685 10686 10687
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_com_err" >&5
$as_echo "$ac_cv_search_com_err" >&6; }
ac_res=$ac_cv_search_com_err
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10688

10689 10690 10691
else
  as_fn_error $? "could not find function 'com_err' required for Kerberos 5" "$LINENO" 5
fi
10692

10693 10694 10695 10696
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing krb5_sendauth" >&5
$as_echo_n "checking for library containing krb5_sendauth... " >&6; }
if ${ac_cv_search_krb5_sendauth+:} false; then :
  $as_echo_n "(cached) " >&6
10697
else
10698 10699
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10700
/* end confdefs.h.  */
10701

10702 10703 10704 10705 10706 10707 10708
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char krb5_sendauth ();
10709 10710 10711
int
main ()
{
10712
return krb5_sendauth ();
10713 10714 10715 10716
  ;
  return 0;
}
_ACEOF
10717 10718 10719 10720 10721 10722 10723 10724 10725
for ac_lib in '' krb5 'krb5 -lcrypto -ldes -lasn1 -lroken'; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_krb5_sendauth=$ac_res
10726
fi
10727 10728 10729 10730
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_krb5_sendauth+:} false; then :
  break
10731
fi
10732 10733
done
if ${ac_cv_search_krb5_sendauth+:} false; then :
10734

10735 10736
else
  ac_cv_search_krb5_sendauth=no
10737
fi
10738 10739 10740 10741 10742 10743 10744 10745
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_krb5_sendauth" >&5
$as_echo "$ac_cv_search_krb5_sendauth" >&6; }
ac_res=$ac_cv_search_krb5_sendauth
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10746

10747 10748 10749
else
  as_fn_error $? "could not find function 'krb5_sendauth' required for Kerberos 5" "$LINENO" 5
fi
10750

10751 10752 10753 10754 10755
  else
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing com_err" >&5
$as_echo_n "checking for library containing com_err... " >&6; }
if ${ac_cv_search_com_err+:} false; then :
  $as_echo_n "(cached) " >&6
10756
else
10757 10758
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
10759
/* end confdefs.h.  */
10760

10761 10762 10763 10764 10765 10766 10767
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char com_err ();
10768 10769 10770
int
main ()
{
10771
return com_err ();
10772 10773 10774 10775
  ;
  return 0;
}
_ACEOF
10776 10777 10778 10779 10780 10781 10782 10783 10784
for ac_lib in '' 'comerr32 -lkrb5_32'; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_com_err=$ac_res
10785
fi
10786 10787 10788 10789
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_com_err+:} false; then :
  break
10790
fi
10791 10792
done
if ${ac_cv_search_com_err+:} false; then :
10793

10794 10795
else
  ac_cv_search_com_err=no
10796
fi
10797 10798 10799 10800 10801 10802 10803 10804
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_com_err" >&5
$as_echo "$ac_cv_search_com_err" >&6; }
ac_res=$ac_cv_search_com_err
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
10805

10806
else
10807 10808
  as_fn_error $? "could not find function 'com_err' required for Kerberos 5" "$LINENO" 5
fi
10809

10810 10811 10812
  fi
fi

10813 10814


10815 10816
if test "$enable_gpfdist" = yes ; then

10817

10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849
if test x"$with_apr_config" != x; then
  APR_1_CONFIG=$with_apr_config
fi
if test -z "$APR_1_CONFIG"; then
  for ac_prog in apr-1-config
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_APR_1_CONFIG+:} false; then :
  $as_echo_n "(cached) " >&6
else
  case $APR_1_CONFIG in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_APR_1_CONFIG="$APR_1_CONFIG" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_APR_1_CONFIG="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
M
Marbin Tan 已提交
10850

10851 10852 10853 10854
  ;;
esac
fi
APR_1_CONFIG=$ac_cv_path_APR_1_CONFIG
10855
if test -n "$APR_1_CONFIG"; then
10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $APR_1_CONFIG" >&5
$as_echo "$APR_1_CONFIG" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


  test -n "$APR_1_CONFIG" && break
done

fi

if test -n "$APR_1_CONFIG"; then
  gpac_apr_1_config_version=`$APR_1_CONFIG --version 2>/dev/null | sed q`
  if test -z "$gpac_apr_1_config_version"; then
    as_fn_error $? "apr-1-config is required for gpfdist, unable to identify version" "$LINENO" 5
  fi
  { $as_echo "$as_me:${as_lineno-$LINENO}: using apr-1-config $gpac_apr_1_config_version" >&5
$as_echo "$as_me: using apr-1-config $gpac_apr_1_config_version" >&6;}
10876 10877 10878 10879
  apr_includes=`"$APR_1_CONFIG" --includes`
  apr_link_ld_libs=`"$APR_1_CONFIG" --link-ld --libs`
  apr_cflags=`"$APR_1_CONFIG" --cflags`
  apr_cppflags=`"$APR_1_CONFIG" --cppflags`
10880 10881 10882 10883 10884 10885




else
  as_fn_error $? "apr-1-config is required for gpfdist, unable to find binary" "$LINENO" 5
M
Marbin Tan 已提交
10886 10887 10888 10889 10890 10891
fi

  # If the 'apr-1-config --link-ld' produced correct output, -lapr-1 is already
  # in LIBS, hence AC_SEARCH_LIBS rather than AC_CHECK_LIB. (and the autoconf
  # manual recommends always using AC_SEARCH_LIBS rather than AC_CHECK_LIB
  # anyway)
10892 10893
  _LIBS="$LIBS"
  LIBS="$LIBS $apr_link_ld_libs"
M
Marbin Tan 已提交
10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing apr_getopt_long" >&5
$as_echo_n "checking for library containing apr_getopt_long... " >&6; }
if ${ac_cv_search_apr_getopt_long+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char apr_getopt_long ();
int
main ()
{
return apr_getopt_long ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' apr-1; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_apr_getopt_long=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_apr_getopt_long+:} false; then :
  break
fi
done
if ${ac_cv_search_apr_getopt_long+:} false; then :

else
  ac_cv_search_apr_getopt_long=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_apr_getopt_long" >&5
$as_echo "$ac_cv_search_apr_getopt_long" >&6; }
ac_res=$ac_cv_search_apr_getopt_long
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"

else
10949
  as_fn_error $? "libapr-1 is required by gpfdist and gpperfmon" "$LINENO" 5
M
Marbin Tan 已提交
10950 10951
fi

10952

M
Marbin Tan 已提交
10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing event_add" >&5
$as_echo_n "checking for library containing event_add... " >&6; }
if ${ac_cv_search_event_add+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char event_add ();
int
main ()
{
return event_add ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' event; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_event_add=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_event_add+:} false; then :
  break
fi
done
if ${ac_cv_search_event_add+:} false; then :

else
  ac_cv_search_event_add=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_event_add" >&5
$as_echo "$ac_cv_search_event_add" >&6; }
ac_res=$ac_cv_search_event_add
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"

else
  as_fn_error $? "libevent is required for gpfdist" "$LINENO" 5
fi


  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing yaml_parser_initialize" >&5
$as_echo_n "checking for library containing yaml_parser_initialize... " >&6; }
if ${ac_cv_search_yaml_parser_initialize+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char yaml_parser_initialize ();
int
main ()
{
return yaml_parser_initialize ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' yaml; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_yaml_parser_initialize=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_yaml_parser_initialize+:} false; then :
  break
fi
done
if ${ac_cv_search_yaml_parser_initialize+:} false; then :

else
  ac_cv_search_yaml_parser_initialize=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_yaml_parser_initialize" >&5
$as_echo "$ac_cv_search_yaml_parser_initialize" >&6; }
ac_res=$ac_cv_search_yaml_parser_initialize
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
  have_yaml=yes
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: libyaml is not found. disabling transformations for gpfdist." >&5
$as_echo "$as_me: WARNING: libyaml is not found. disabling transformations for gpfdist." >&2;}
fi

11071
  LIBS="$_LIBS"
M
Marbin Tan 已提交
11072 11073 11074

fi

11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460
if test "$enable_gpperfmon" = yes; then


if test x"$with_apr_config" != x; then
  APR_1_CONFIG=$with_apr_config
fi
if test -z "$APR_1_CONFIG"; then
  for ac_prog in apr-1-config
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_APR_1_CONFIG+:} false; then :
  $as_echo_n "(cached) " >&6
else
  case $APR_1_CONFIG in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_APR_1_CONFIG="$APR_1_CONFIG" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_APR_1_CONFIG="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS

  ;;
esac
fi
APR_1_CONFIG=$ac_cv_path_APR_1_CONFIG
if test -n "$APR_1_CONFIG"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $APR_1_CONFIG" >&5
$as_echo "$APR_1_CONFIG" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


  test -n "$APR_1_CONFIG" && break
done

fi

if test -n "$APR_1_CONFIG"; then
  gpac_apr_1_config_version=`$APR_1_CONFIG --version 2>/dev/null | sed q`
  if test -z "$gpac_apr_1_config_version"; then
    as_fn_error $? "apr-1-config is required for gpfdist, unable to identify version" "$LINENO" 5
  fi
  { $as_echo "$as_me:${as_lineno-$LINENO}: using apr-1-config $gpac_apr_1_config_version" >&5
$as_echo "$as_me: using apr-1-config $gpac_apr_1_config_version" >&6;}
  apr_includes=`"$APR_1_CONFIG" --includes`
  apr_link_ld_libs=`"$APR_1_CONFIG" --link-ld --libs`
  apr_cflags=`"$APR_1_CONFIG" --cflags`
  apr_cppflags=`"$APR_1_CONFIG" --cppflags`




else
  as_fn_error $? "apr-1-config is required for gpfdist, unable to find binary" "$LINENO" 5
fi

  # If the 'apr-1-config --link-ld' produced correct output, -lapr-1 is already
  # in LIBS, hence AC_SEARCH_LIBS rather than AC_CHECK_LIB. (and the autoconf
  # manual recommends always using AC_SEARCH_LIBS rather than AC_CHECK_LIB
  # anyway)
  _LIBS="$LIBS"
  LIBS="$LIBS $apr_link_ld_libs"
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing apr_getopt_long" >&5
$as_echo_n "checking for library containing apr_getopt_long... " >&6; }
if ${ac_cv_search_apr_getopt_long+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char apr_getopt_long ();
int
main ()
{
return apr_getopt_long ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' apr-1; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_apr_getopt_long=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_apr_getopt_long+:} false; then :
  break
fi
done
if ${ac_cv_search_apr_getopt_long+:} false; then :

else
  ac_cv_search_apr_getopt_long=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_apr_getopt_long" >&5
$as_echo "$ac_cv_search_apr_getopt_long" >&6; }
ac_res=$ac_cv_search_apr_getopt_long
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"

else
  as_fn_error $? "libapr-1 is required by gpfdist and gpperfmon" "$LINENO" 5
fi



if test x"$with_apu_config" != x; then
  APU_1_CONFIG=$with_apu_config
fi
if test -z "$APU_1_CONFIG"; then
  for ac_prog in apu-1-config
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_APU_1_CONFIG+:} false; then :
  $as_echo_n "(cached) " >&6
else
  case $APU_1_CONFIG in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_APU_1_CONFIG="$APU_1_CONFIG" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_APU_1_CONFIG="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS

  ;;
esac
fi
APU_1_CONFIG=$ac_cv_path_APU_1_CONFIG
if test -n "$APU_1_CONFIG"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $APU_1_CONFIG" >&5
$as_echo "$APU_1_CONFIG" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


  test -n "$APU_1_CONFIG" && break
done

fi

if test -n "$APU_1_CONFIG"; then
  gpac_apu_1_config_version=`$APU_1_CONFIG --version 2>/dev/null | sed q`
  if test -z "$gpac_apu_1_config_version"; then
    as_fn_error $? "apu-1-config is required for gpperfmon, unable to identify version" "$LINENO" 5
  fi
  { $as_echo "$as_me:${as_lineno-$LINENO}: using apu-1-config $gpac_apu_1_config_version" >&5
$as_echo "$as_me: using apu-1-config $gpac_apu_1_config_version" >&6;}
  apu_includes=`"$APU_1_CONFIG" --includes`
  apu_link_ld_libs=`"$APU_1_CONFIG" --link-ld --libs`


else
  as_fn_error $? "apu-1-config is required for gpperfmon, unable to find binary" "$LINENO" 5
fi

  LIBS="$LIBS $apu_link_ld_libs"
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing event_add" >&5
$as_echo_n "checking for library containing event_add... " >&6; }
if ${ac_cv_search_event_add+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char event_add ();
int
main ()
{
return event_add ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' event; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_event_add=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_event_add+:} false; then :
  break
fi
done
if ${ac_cv_search_event_add+:} false; then :

else
  ac_cv_search_event_add=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_event_add" >&5
$as_echo "$ac_cv_search_event_add" >&6; }
ac_res=$ac_cv_search_event_add
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"

else
  as_fn_error $? "libevent is required for gpperfrmon" "$LINENO" 5
fi

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing apr_queue_push" >&5
$as_echo_n "checking for library containing apr_queue_push... " >&6; }
if ${ac_cv_search_apr_queue_push+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char apr_queue_push ();
int
main ()
{
return apr_queue_push ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' aprutil-1; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_apr_queue_push=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_apr_queue_push+:} false; then :
  break
fi
done
if ${ac_cv_search_apr_queue_push+:} false; then :

else
  ac_cv_search_apr_queue_push=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_apr_queue_push" >&5
$as_echo "$ac_cv_search_apr_queue_push" >&6; }
ac_res=$ac_cv_search_apr_queue_push
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"

else
  as_fn_error $? "libaprutil-1 is required for gpperfmon" "$LINENO" 5
fi


  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sigar_open" >&5
$as_echo_n "checking for library containing sigar_open... " >&6; }
if ${ac_cv_search_sigar_open+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_func_search_save_LIBS=$LIBS
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char sigar_open ();
int
main ()
{
return sigar_open ();
  ;
  return 0;
}
_ACEOF
for ac_lib in '' sigar; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_sigar_open=$ac_res
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_sigar_open+:} false; then :
  break
fi
done
if ${ac_cv_search_sigar_open+:} false; then :

else
  ac_cv_search_sigar_open=no
fi
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_sigar_open" >&5
$as_echo "$ac_cv_search_sigar_open" >&6; }
ac_res=$ac_cv_search_sigar_open
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
  with_libsigar=yes
else
  as_fn_error $? "libsigar is required for gpperfmon" "$LINENO" 5
fi

  LIBS="$_LIBS"

fi


11461 11462 11463 11464 11465 11466
if test "$with_openssl" = yes ; then
    if test "$PORTNAME" != "win32"; then
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO_new_ex_data in -lcrypto" >&5
$as_echo_n "checking for CRYPTO_new_ex_data in -lcrypto... " >&6; }
if ${ac_cv_lib_crypto_CRYPTO_new_ex_data+:} false; then :
  $as_echo_n "(cached) " >&6
11467
else
11468 11469 11470
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lcrypto  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11471 11472
/* end confdefs.h.  */

11473 11474
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11475 11476
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11477
extern "C"
11478
#endif
11479
char CRYPTO_new_ex_data ();
11480 11481 11482
int
main ()
{
11483
return CRYPTO_new_ex_data ();
11484 11485 11486 11487
  ;
  return 0;
}
_ACEOF
11488 11489
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_crypto_CRYPTO_new_ex_data=yes
11490
else
11491
  ac_cv_lib_crypto_CRYPTO_new_ex_data=no
11492
fi
11493 11494 11495
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
11496
fi
11497 11498 11499
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_CRYPTO_new_ex_data" >&5
$as_echo "$ac_cv_lib_crypto_CRYPTO_new_ex_data" >&6; }
if test "x$ac_cv_lib_crypto_CRYPTO_new_ex_data" = xyes; then :
11500
  cat >>confdefs.h <<_ACEOF
11501
#define HAVE_LIBCRYPTO 1
11502
_ACEOF
11503

11504 11505
  LIBS="-lcrypto $LIBS"

11506
else
11507
  as_fn_error $? "library 'crypto' is required for OpenSSL" "$LINENO" 5
11508
fi
11509

11510 11511 11512 11513
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_library_init in -lssl" >&5
$as_echo_n "checking for SSL_library_init in -lssl... " >&6; }
if ${ac_cv_lib_ssl_SSL_library_init+:} false; then :
  $as_echo_n "(cached) " >&6
11514
else
11515 11516 11517
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lssl  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11518 11519
/* end confdefs.h.  */

11520 11521
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11522 11523
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11524
extern "C"
11525
#endif
11526
char SSL_library_init ();
11527 11528 11529
int
main ()
{
11530
return SSL_library_init ();
11531 11532 11533 11534
  ;
  return 0;
}
_ACEOF
11535 11536
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_ssl_SSL_library_init=yes
11537
else
11538
  ac_cv_lib_ssl_SSL_library_init=no
11539
fi
11540 11541 11542
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
11543
fi
11544 11545 11546
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_library_init" >&5
$as_echo "$ac_cv_lib_ssl_SSL_library_init" >&6; }
if test "x$ac_cv_lib_ssl_SSL_library_init" = xyes; then :
11547
  cat >>confdefs.h <<_ACEOF
11548
#define HAVE_LIBSSL 1
11549
_ACEOF
11550

11551
  LIBS="-lssl $LIBS"
11552

11553 11554
else
  as_fn_error $? "library 'ssl' is required for OpenSSL" "$LINENO" 5
11555
fi
11556

11557 11558 11559 11560 11561
  else
     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CRYPTO_new_ex_data in -leay32" >&5
$as_echo_n "checking for CRYPTO_new_ex_data in -leay32... " >&6; }
if ${ac_cv_lib_eay32_CRYPTO_new_ex_data+:} false; then :
  $as_echo_n "(cached) " >&6
11562
else
11563 11564 11565
  ac_check_lib_save_LIBS=$LIBS
LIBS="-leay32  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11566
/* end confdefs.h.  */
11567 11568 11569 11570 11571 11572 11573 11574

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char CRYPTO_new_ex_data ();
11575 11576 11577
int
main ()
{
11578
return CRYPTO_new_ex_data ();
11579
  ;
11580 11581
  return 0;
}
11582
_ACEOF
11583 11584
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_eay32_CRYPTO_new_ex_data=yes
11585
else
11586 11587 11588 11589 11590 11591 11592 11593 11594
  ac_cv_lib_eay32_CRYPTO_new_ex_data=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_eay32_CRYPTO_new_ex_data" >&5
$as_echo "$ac_cv_lib_eay32_CRYPTO_new_ex_data" >&6; }
if test "x$ac_cv_lib_eay32_CRYPTO_new_ex_data" = xyes; then :
11595
  cat >>confdefs.h <<_ACEOF
11596
#define HAVE_LIBEAY32 1
11597 11598
_ACEOF

11599
  LIBS="-leay32 $LIBS"
11600

11601 11602
else
  as_fn_error $? "library 'eay32' is required for OpenSSL" "$LINENO" 5
11603
fi
11604 11605 11606 11607 11608

     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_library_init in -lssleay32" >&5
$as_echo_n "checking for SSL_library_init in -lssleay32... " >&6; }
if ${ac_cv_lib_ssleay32_SSL_library_init+:} false; then :
  $as_echo_n "(cached) " >&6
11609
else
11610 11611 11612
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lssleay32  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11613
/* end confdefs.h.  */
11614 11615 11616 11617 11618 11619 11620 11621

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char SSL_library_init ();
11622 11623 11624
int
main ()
{
11625
return SSL_library_init ();
11626 11627 11628 11629
  ;
  return 0;
}
_ACEOF
11630 11631
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_ssleay32_SSL_library_init=yes
11632
else
11633
  ac_cv_lib_ssleay32_SSL_library_init=no
11634
fi
11635 11636 11637
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
11638
fi
11639 11640 11641
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssleay32_SSL_library_init" >&5
$as_echo "$ac_cv_lib_ssleay32_SSL_library_init" >&6; }
if test "x$ac_cv_lib_ssleay32_SSL_library_init" = xyes; then :
11642
  cat >>confdefs.h <<_ACEOF
11643
#define HAVE_LIBSSLEAY32 1
11644 11645
_ACEOF

11646
  LIBS="-lssleay32 $LIBS"
11647

11648 11649
else
  as_fn_error $? "library 'ssleay32' is required for OpenSSL" "$LINENO" 5
11650 11651
fi

11652 11653
  fi
fi
11654

11655 11656 11657 11658 11659
if test "$with_rt" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5
$as_echo_n "checking for clock_gettime in -lrt... " >&6; }
if ${ac_cv_lib_rt_clock_gettime+:} false; then :
  $as_echo_n "(cached) " >&6
11660
else
11661 11662 11663
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lrt  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11664
/* end confdefs.h.  */
11665

11666 11667 11668 11669 11670 11671 11672
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char clock_gettime ();
11673 11674 11675
int
main ()
{
11676
return clock_gettime ();
11677 11678 11679 11680
  ;
  return 0;
}
_ACEOF
11681 11682
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_rt_clock_gettime=yes
11683
else
11684
  ac_cv_lib_rt_clock_gettime=no
11685
fi
11686 11687 11688
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
M
Marc G. Fournier 已提交
11689
fi
11690 11691 11692 11693 11694
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5
$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; }
if test "x$ac_cv_lib_rt_clock_gettime" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBRT 1
11695
_ACEOF
11696

11697
  LIBS="-lrt $LIBS"
11698

11699 11700 11701 11702
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Realtime library not found" >&5
$as_echo "$as_me: WARNING: Realtime library not found" >&2;}
fi
11703

11704
fi
11705

11706 11707 11708 11709 11710
if test "$with_pam" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pam_start in -lpam" >&5
$as_echo_n "checking for pam_start in -lpam... " >&6; }
if ${ac_cv_lib_pam_pam_start+:} false; then :
  $as_echo_n "(cached) " >&6
11711
else
11712 11713 11714
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lpam  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11715 11716
/* end confdefs.h.  */

11717 11718
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11719 11720
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11721
extern "C"
B
Bruce Momjian 已提交
11722
#endif
11723
char pam_start ();
11724 11725 11726
int
main ()
{
11727
return pam_start ();
11728 11729 11730 11731
  ;
  return 0;
}
_ACEOF
11732 11733
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_pam_pam_start=yes
11734
else
11735
  ac_cv_lib_pam_pam_start=no
11736
fi
11737 11738 11739
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
11740
fi
11741 11742 11743
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pam_pam_start" >&5
$as_echo "$ac_cv_lib_pam_pam_start" >&6; }
if test "x$ac_cv_lib_pam_pam_start" = xyes; then :
11744
  cat >>confdefs.h <<_ACEOF
11745
#define HAVE_LIBPAM 1
11746
_ACEOF
11747

11748
  LIBS="-lpam $LIBS"
11749

11750 11751 11752
else
  as_fn_error $? "library 'pam' is required for PAM" "$LINENO" 5
fi
11753

11754
fi
11755

11756 11757 11758 11759 11760
if test "$with_libxml" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xmlSaveToBuffer in -lxml2" >&5
$as_echo_n "checking for xmlSaveToBuffer in -lxml2... " >&6; }
if ${ac_cv_lib_xml2_xmlSaveToBuffer+:} false; then :
  $as_echo_n "(cached) " >&6
11761
else
11762 11763 11764
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lxml2  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11765 11766
/* end confdefs.h.  */

11767 11768
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11769 11770
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11771
extern "C"
11772
#endif
11773
char xmlSaveToBuffer ();
11774 11775 11776
int
main ()
{
11777
return xmlSaveToBuffer ();
11778 11779 11780 11781
  ;
  return 0;
}
_ACEOF
11782 11783
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_xml2_xmlSaveToBuffer=yes
11784
else
11785
  ac_cv_lib_xml2_xmlSaveToBuffer=no
11786
fi
11787 11788 11789
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
11790
fi
11791 11792 11793
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_xmlSaveToBuffer" >&5
$as_echo "$ac_cv_lib_xml2_xmlSaveToBuffer" >&6; }
if test "x$ac_cv_lib_xml2_xmlSaveToBuffer" = xyes; then :
11794
  cat >>confdefs.h <<_ACEOF
11795
#define HAVE_LIBXML2 1
11796 11797
_ACEOF

11798 11799
  LIBS="-lxml2 $LIBS"

11800
else
11801 11802
  as_fn_error $? "library 'xml2' (version >= 2.6.23) is required for XML support" "$LINENO" 5
fi
11803

11804
fi
11805 11806

# Check for curl.
11807
# CURLOPT_MAIL_FROM is introduced in curl 7.20 and only needed for email alerts.
11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835
if test "$with_libcurl" = yes ; then

  succeeded=no

  if test -z "$CURL_CONFIG"; then
    # Extract the first word of "curl-config", so it can be a program name with args.
set dummy curl-config; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_CURL_CONFIG+:} false; then :
  $as_echo_n "(cached) " >&6
else
  case $CURL_CONFIG in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_CURL_CONFIG="$CURL_CONFIG" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_path_CURL_CONFIG="$as_dir/$ac_word$ac_exec_ext"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
11836
done
11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851
  done
IFS=$as_save_IFS

  test -z "$ac_cv_path_CURL_CONFIG" && ac_cv_path_CURL_CONFIG="no"
  ;;
esac
fi
CURL_CONFIG=$ac_cv_path_CURL_CONFIG
if test -n "$CURL_CONFIG"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CURL_CONFIG" >&5
$as_echo "$CURL_CONFIG" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
11852 11853


11854
  fi
11855

11856 11857 11858 11859 11860 11861
  if test "$CURL_CONFIG" = "no" ; then
    echo "*** The curl-config script could not be found. Make sure it is"
    echo "*** in your path, and that curl is properly installed."
    echo "*** Or see http://curl.haxx.se/"
  else
        CURL_VERSION=`$CURL_CONFIG --version | cut -d" " -f2`
11862 11863 11864
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for curl >= 7.19.0" >&5
$as_echo_n "checking for curl >= 7.19.0... " >&6; }
        VERSION_CHECK=`expr $CURL_VERSION \>\= 7.19.0`
11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885
        if test "$VERSION_CHECK" = "1" ; then
            { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
            succeeded=yes

            { $as_echo "$as_me:${as_lineno-$LINENO}: checking CURL_CFLAGS" >&5
$as_echo_n "checking CURL_CFLAGS... " >&6; }
            CURL_CFLAGS=`$CURL_CONFIG --cflags`
            { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CURL_CFLAGS" >&5
$as_echo "$CURL_CFLAGS" >&6; }

            { $as_echo "$as_me:${as_lineno-$LINENO}: checking CURL_LIBS" >&5
$as_echo_n "checking CURL_LIBS... " >&6; }
            CURL_LIBS=`$CURL_CONFIG --libs`
            { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CURL_LIBS" >&5
$as_echo "$CURL_LIBS" >&6; }
        else
            CURL_CFLAGS=""
            CURL_LIBS=""
            ## If we have a custom action on failure, don't print errors, but
            ## do set a variable so people can do so.
11886
            echo "can't find curl >= 7.19.0"
11887
        fi
11888

A
 
Andrew Dunstan 已提交
11889

11890

11891
  fi
A
 
Andrew Dunstan 已提交
11892

11893 11894 11895 11896 11897
  if test $succeeded = yes; then
     :
  else
     as_fn_error $? "Library requirements (curl) not met." "$LINENO" 5
  fi
A
 
Andrew Dunstan 已提交
11898

11899 11900
  CFLAGS="$CFLAGS $CURL_CFLAGS"
  LIBS="$LIBS $CURL_LIBS"
A
 
Andrew Dunstan 已提交
11901

11902 11903
$as_echo "#define USE_CURL 1" >>confdefs.h

11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915
  ac_fn_c_check_decl "$LINENO" "CURLOPT_MAIL_FROM" "ac_cv_have_decl_CURLOPT_MAIL_FROM" "#include <curl/curl.h>
"
if test "x$ac_cv_have_decl_CURLOPT_MAIL_FROM" = xyes; then :
  ac_have_decl=1
else
  ac_have_decl=0
fi

cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_CURLOPT_MAIL_FROM $ac_have_decl
_ACEOF

11916 11917 11918
fi

# Check for bzip2
11919 11920 11921 11922
if test "$with_libbz2" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BZ2_bzDecompress in -lbz2" >&5
$as_echo_n "checking for BZ2_bzDecompress in -lbz2... " >&6; }
if ${ac_cv_lib_bz2_BZ2_bzDecompress+:} false; then :
11923 11924
  $as_echo_n "(cached) " >&6
else
11925 11926
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lbz2  $LIBS"
11927 11928 11929 11930 11931
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11932 11933
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11934
extern "C"
A
 
Andrew Dunstan 已提交
11935
#endif
11936
char BZ2_bzDecompress ();
11937 11938 11939
int
main ()
{
11940
return BZ2_bzDecompress ();
11941 11942 11943 11944
  ;
  return 0;
}
_ACEOF
11945 11946 11947 11948
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_bz2_BZ2_bzDecompress=yes
else
  ac_cv_lib_bz2_BZ2_bzDecompress=no
11949 11950
fi
rm -f core conftest.err conftest.$ac_objext \
11951 11952
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
A
 
Andrew Dunstan 已提交
11953
fi
11954 11955 11956 11957 11958 11959 11960 11961
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bz2_BZ2_bzDecompress" >&5
$as_echo "$ac_cv_lib_bz2_BZ2_bzDecompress" >&6; }
if test "x$ac_cv_lib_bz2_BZ2_bzDecompress" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBBZ2 1
_ACEOF

  LIBS="-lbz2 $LIBS"
A
 
Andrew Dunstan 已提交
11962

11963
else
11964
  as_fn_error $? "library 'bz2' is required for bzip2 support" "$LINENO" 5
11965
fi
11966

11967 11968
fi

11969 11970 11971 11972 11973 11974
# Check for net-snmp
if test "$enable_snmp" = yes ; then
	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for netsnmp_ds_set_string in -lnetsnmp" >&5
$as_echo_n "checking for netsnmp_ds_set_string in -lnetsnmp... " >&6; }
if ${ac_cv_lib_netsnmp_netsnmp_ds_set_string+:} false; then :
  $as_echo_n "(cached) " >&6
11975
else
11976 11977 11978
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lnetsnmp  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
11979 11980
/* end confdefs.h.  */

11981 11982
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
11983 11984
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
11985
extern "C"
11986
#endif
11987
char netsnmp_ds_set_string ();
11988 11989 11990
int
main ()
{
11991
return netsnmp_ds_set_string ();
11992 11993 11994 11995
  ;
  return 0;
}
_ACEOF
11996 11997
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_netsnmp_netsnmp_ds_set_string=yes
11998
else
11999
  ac_cv_lib_netsnmp_netsnmp_ds_set_string=no
12000
fi
12001 12002 12003
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
12004
fi
12005 12006 12007
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_netsnmp_netsnmp_ds_set_string" >&5
$as_echo "$ac_cv_lib_netsnmp_netsnmp_ds_set_string" >&6; }
if test "x$ac_cv_lib_netsnmp_netsnmp_ds_set_string" = xyes; then :
12008
  cat >>confdefs.h <<_ACEOF
12009
#define HAVE_LIBNETSNMP 1
12010 12011
_ACEOF

12012
  LIBS="-lnetsnmp $LIBS"
12013 12014

else
12015
  as_fn_error $? "library 'netsnmp' is required for snmp support" "$LINENO" 5
12016
fi
12017

12018
fi
12019

12020 12021 12022 12023 12024
if test "$with_libxslt" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xsltCleanupGlobals in -lxslt" >&5
$as_echo_n "checking for xsltCleanupGlobals in -lxslt... " >&6; }
if ${ac_cv_lib_xslt_xsltCleanupGlobals+:} false; then :
  $as_echo_n "(cached) " >&6
12025
else
12026 12027 12028
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lxslt  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12029 12030
/* end confdefs.h.  */

12031 12032 12033 12034 12035 12036 12037
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char xsltCleanupGlobals ();
12038 12039 12040
int
main ()
{
12041
return xsltCleanupGlobals ();
12042 12043 12044 12045
  ;
  return 0;
}
_ACEOF
12046 12047
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_xslt_xsltCleanupGlobals=yes
12048
else
12049
  ac_cv_lib_xslt_xsltCleanupGlobals=no
12050
fi
12051 12052 12053
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
12054
fi
12055 12056 12057
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xslt_xsltCleanupGlobals" >&5
$as_echo "$ac_cv_lib_xslt_xsltCleanupGlobals" >&6; }
if test "x$ac_cv_lib_xslt_xsltCleanupGlobals" = xyes; then :
12058
  cat >>confdefs.h <<_ACEOF
12059
#define HAVE_LIBXSLT 1
12060 12061
_ACEOF

12062
  LIBS="-lxslt $LIBS"
12063

12064 12065
else
  as_fn_error $? "library 'xslt' is required for XSLT support" "$LINENO" 5
12066 12067
fi

12068
fi
12069

12070 12071 12072 12073 12074 12075
# for contrib/uuid-ossp
if test "$with_ossp_uuid" = yes ; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_export in -lossp-uuid" >&5
$as_echo_n "checking for uuid_export in -lossp-uuid... " >&6; }
if ${ac_cv_lib_ossp_uuid_uuid_export+:} false; then :
  $as_echo_n "(cached) " >&6
12076
else
12077 12078 12079
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lossp-uuid  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12080
/* end confdefs.h.  */
12081

12082 12083 12084 12085 12086 12087 12088
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char uuid_export ();
12089 12090 12091
int
main ()
{
12092
return uuid_export ();
12093 12094 12095 12096
  ;
  return 0;
}
_ACEOF
12097 12098
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_ossp_uuid_uuid_export=yes
12099
else
12100
  ac_cv_lib_ossp_uuid_uuid_export=no
12101
fi
12102 12103 12104
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
12105
fi
12106 12107 12108 12109
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossp_uuid_uuid_export" >&5
$as_echo "$ac_cv_lib_ossp_uuid_uuid_export" >&6; }
if test "x$ac_cv_lib_ossp_uuid_uuid_export" = xyes; then :
  OSSP_UUID_LIBS="-lossp-uuid"
12110
else
12111 12112 12113 12114 12115 12116 12117 12118
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uuid_export in -luuid" >&5
$as_echo_n "checking for uuid_export in -luuid... " >&6; }
if ${ac_cv_lib_uuid_uuid_export+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-luuid  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
12119
/* end confdefs.h.  */
12120

12121 12122 12123 12124 12125 12126 12127
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char uuid_export ();
12128 12129 12130
int
main ()
{
12131
return uuid_export ();
12132 12133 12134 12135
  ;
  return 0;
}
_ACEOF
12136 12137
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_uuid_uuid_export=yes
12138
else
12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208
  ac_cv_lib_uuid_uuid_export=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_uuid_uuid_export" >&5
$as_echo "$ac_cv_lib_uuid_uuid_export" >&6; }
if test "x$ac_cv_lib_uuid_uuid_export" = xyes; then :
  OSSP_UUID_LIBS="-luuid"
else
  as_fn_error $? "library 'ossp-uuid' or 'uuid' is required for OSSP-UUID" "$LINENO" 5
fi

fi

fi


# Check for DD Boost
if test "$enable_ddboost" = yes ; then
  _LIBS="$LIBS"
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lDDBoost" >&5
$as_echo_n "checking for main in -lDDBoost... " >&6; }
if ${ac_cv_lib_DDBoost_main+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lDDBoost  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */


int
main ()
{
return main ();
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_DDBoost_main=yes
else
  ac_cv_lib_DDBoost_main=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_DDBoost_main" >&5
$as_echo "$ac_cv_lib_DDBoost_main" >&6; }
if test "x$ac_cv_lib_DDBoost_main" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBDDBOOST 1
_ACEOF

  LIBS="-lDDBoost $LIBS"

else
  as_fn_error $? "library 'DDBoost' is required for DD Boost support" "$LINENO" 5
fi

  LIBS="$_LIBS"
fi

##
## Header files
##

12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
$as_echo_n "checking for ANSI C header files... " >&6; }
if ${ac_cv_header_stdc+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <float.h>

int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_header_stdc=yes
else
  ac_cv_header_stdc=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext

if test $ac_cv_header_stdc = yes; then
  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <string.h>

_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  $EGREP "memchr" >/dev/null 2>&1; then :

else
  ac_cv_header_stdc=no
fi
rm -f conftest*

fi

if test $ac_cv_header_stdc = yes; then
  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <stdlib.h>

_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  $EGREP "free" >/dev/null 2>&1; then :

else
  ac_cv_header_stdc=no
fi
rm -f conftest*

fi

if test $ac_cv_header_stdc = yes; then
  # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  if test "$cross_compiling" = yes; then :
  :
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <ctype.h>
#include <stdlib.h>
#if ((' ' & 0x0FF) == 0x020)
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
#else
# define ISLOWER(c) \
		   (('a' <= (c) && (c) <= 'i') \
		     || ('j' <= (c) && (c) <= 'r') \
		     || ('s' <= (c) && (c) <= 'z'))
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
#endif

#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
int
main ()
{
  int i;
  for (i = 0; i < 256; i++)
    if (XOR (islower (i), ISLOWER (i))
	|| toupper (i) != TOUPPER (i))
      return 2;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :

else
  ac_cv_header_stdc=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
$as_echo "$ac_cv_header_stdc" >&6; }
if test $ac_cv_header_stdc = yes; then

$as_echo "#define STDC_HEADERS 1" >>confdefs.h

fi

# On IRIX 5.3, sys/types and inttypes.h are conflicting.
for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
		  inttypes.h stdint.h unistd.h
do :
  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
"
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
_ACEOF

fi

done


12338
$ac_includes_default
12339

12340
# Check for Greenplum Query Optimizer (orca) and supporting Greenplum OS header files.
12341 12342
if test "$enable_orca" = yes; then
  ac_ext=cpp
12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
if test -z "$CXXCPP"; then
  if ${ac_cv_prog_CXXCPP+:} false; then :
  $as_echo_n "(cached) " >&6
else
      # Double quotes because CXXCPP needs to be expanded
    for CXXCPP in "$CXX -E" "/lib/cpp"
    do
      ac_preproc_ok=false
for ac_cxx_preproc_warn_flag in '' yes
do
  # Use a header file that comes with gcc, so configuring glibc
  # with a fresh cross-compiler works.
  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  # <limits.h> exists even on freestanding compilers.
  # On the NeXT, cc -E runs the code through the compiler's parser,
  # not just through cpp. "Syntax error" is here to catch this case.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
		     Syntax error
_ACEOF
if ac_fn_cxx_try_cpp "$LINENO"; then :

else
  # Broken: fails on valid input.
continue
fi
rm -f conftest.err conftest.i conftest.$ac_ext

  # OK, works on sane cases.  Now check whether nonexistent headers
  # can be detected and how.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <ac_nonexistent.h>
_ACEOF
if ac_fn_cxx_try_cpp "$LINENO"; then :
  # Broken: success on invalid input.
continue
else
  # Passes both tests.
ac_preproc_ok=:
break
fi
rm -f conftest.err conftest.i conftest.$ac_ext

done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :
  break
fi

    done
    ac_cv_prog_CXXCPP=$CXXCPP

fi
  CXXCPP=$ac_cv_prog_CXXCPP
else
  ac_cv_prog_CXXCPP=$CXXCPP
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5
$as_echo "$CXXCPP" >&6; }
ac_preproc_ok=false
for ac_cxx_preproc_warn_flag in '' yes
do
  # Use a header file that comes with gcc, so configuring glibc
  # with a fresh cross-compiler works.
  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  # <limits.h> exists even on freestanding compilers.
  # On the NeXT, cc -E runs the code through the compiler's parser,
  # not just through cpp. "Syntax error" is here to catch this case.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
		     Syntax error
_ACEOF
if ac_fn_cxx_try_cpp "$LINENO"; then :

else
  # Broken: fails on valid input.
continue
fi
rm -f conftest.err conftest.i conftest.$ac_ext

  # OK, works on sane cases.  Now check whether nonexistent headers
  # can be detected and how.
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <ac_nonexistent.h>
_ACEOF
if ac_fn_cxx_try_cpp "$LINENO"; then :
  # Broken: success on invalid input.
continue
else
  # Passes both tests.
ac_preproc_ok=:
break
fi
rm -f conftest.err conftest.i conftest.$ac_ext

done
# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
rm -f conftest.i conftest.err conftest.$ac_ext
if $ac_preproc_ok; then :

else
  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
See \`config.log' for more details" "$LINENO" 5; }
fi

ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu



ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu

for ac_header in gpos/_api.h
12484
do :
12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513
  ac_fn_cxx_check_header_mongrel "$LINENO" "gpos/_api.h" "ac_cv_header_gpos__api_h" "$ac_includes_default"
if test "x$ac_cv_header_gpos__api_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_GPOS__API_H 1
_ACEOF

else
  as_fn_error $? "GPOS header files are required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

done

for ac_header in naucrates/init.h
do :
  ac_fn_cxx_check_header_mongrel "$LINENO" "naucrates/init.h" "ac_cv_header_naucrates_init_h" "$ac_includes_default"
if test "x$ac_cv_header_naucrates_init_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_NAUCRATES_INIT_H 1
_ACEOF

else
  as_fn_error $? "Naucrates header files are required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

done

for ac_header in gpopt/init.h
do :
  ac_fn_cxx_check_header_mongrel "$LINENO" "gpopt/init.h" "ac_cv_header_gpopt_init_h" "$ac_includes_default"
12514 12515 12516 12517 12518 12519
if test "x$ac_cv_header_gpopt_init_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_GPOPT_INIT_H 1
_ACEOF

else
12520
  as_fn_error $? "GPOPT header files are required for Pivotal Query Optimizer (orca)" "$LINENO" 5
12521 12522 12523 12524
fi

done

12525
for ac_header in gpdbcost/CCostModelGPDB.h
12526
do :
12527 12528
  ac_fn_cxx_check_header_mongrel "$LINENO" "gpdbcost/CCostModelGPDB.h" "ac_cv_header_gpdbcost_CCostModelGPDB_h" "$ac_includes_default"
if test "x$ac_cv_header_gpdbcost_CCostModelGPDB_h" = xyes; then :
12529
  cat >>confdefs.h <<_ACEOF
12530
#define HAVE_GPDBCOST_CCOSTMODELGPDB_H 1
12531 12532 12533
_ACEOF

else
12534
  as_fn_error $? "GPDB Cost Model header files are required for Pivotal Query Optimizer (orca)" "$LINENO" 5
12535 12536 12537 12538
fi

done

12539 12540 12541 12542 12543 12544 12545 12546
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu



12547

12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strnicmp in -lxerces-c" >&5
$as_echo_n "checking for strnicmp in -lxerces-c... " >&6; }
if ${ac_cv_lib_xerces_c_strnicmp+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lxerces-c  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char strnicmp ();
int
main ()
{
return strnicmp ();
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_xerces_c_strnicmp=yes
else
  ac_cv_lib_xerces_c_strnicmp=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xerces_c_strnicmp" >&5
$as_echo "$ac_cv_lib_xerces_c_strnicmp" >&6; }
if test "x$ac_cv_lib_xerces_c_strnicmp" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBXERCES_C 1
_ACEOF

  LIBS="-lxerces-c $LIBS"

else
12592
  as_fn_error $? "library xerces-c is required to build with Pivotal Query Optimizer" "$LINENO" 5
12593 12594 12595

fi

12596 12597
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Xerces-C" >&5
$as_echo_n "checking for Xerces-C... " >&6; }
12598 12599


12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gpos_init in -lgpos" >&5
$as_echo_n "checking for gpos_init in -lgpos... " >&6; }
if ${ac_cv_lib_gpos_gpos_init+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpos  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char gpos_init ();
int
main ()
{
return gpos_init ();
  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
  ac_cv_lib_gpos_gpos_init=yes
else
  ac_cv_lib_gpos_gpos_init=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpos_gpos_init" >&5
$as_echo "$ac_cv_lib_gpos_gpos_init" >&6; }
if test "x$ac_cv_lib_gpos_gpos_init" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBGPOS 1
_ACEOF

  LIBS="-lgpos $LIBS"

else
  as_fn_error $? "library 'gpos' is required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lgpdbcost" >&5
$as_echo_n "checking for main in -lgpdbcost... " >&6; }
if ${ac_cv_lib_gpdbcost_main+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
12659
LIBS="-lgpdbcost -lgpopt -lnaucrates $LIBS"
12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */


int
main ()
{
return main ();
  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
  ac_cv_lib_gpdbcost_main=yes
else
  ac_cv_lib_gpdbcost_main=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpdbcost_main" >&5
$as_echo "$ac_cv_lib_gpdbcost_main" >&6; }
if test "x$ac_cv_lib_gpdbcost_main" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBGPDBCOST 1
_ACEOF

  LIBS="-lgpdbcost $LIBS"

else
  as_fn_error $? "library 'gpdbcost' is required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for InitDXL in -lnaucrates" >&5
$as_echo_n "checking for InitDXL in -lnaucrates... " >&6; }
if ${ac_cv_lib_naucrates_InitDXL+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lnaucrates -lgpopt $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char InitDXL ();
int
main ()
{
return InitDXL ();
  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
  ac_cv_lib_naucrates_InitDXL=yes
else
  ac_cv_lib_naucrates_InitDXL=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_naucrates_InitDXL" >&5
$as_echo "$ac_cv_lib_naucrates_InitDXL" >&6; }
if test "x$ac_cv_lib_naucrates_InitDXL" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBNAUCRATES 1
_ACEOF

  LIBS="-lnaucrates $LIBS"

else
  as_fn_error $? "library 'naucrates' is required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for gpopt_init in -lgpopt" >&5
$as_echo_n "checking for gpopt_init in -lgpopt... " >&6; }
if ${ac_cv_lib_gpopt_gpopt_init+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lgpopt  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char gpopt_init ();
int
main ()
{
return gpopt_init ();
  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
  ac_cv_lib_gpopt_gpopt_init=yes
else
  ac_cv_lib_gpopt_gpopt_init=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpopt_gpopt_init" >&5
$as_echo "$ac_cv_lib_gpopt_gpopt_init" >&6; }
if test "x$ac_cv_lib_gpopt_gpopt_init" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBGPOPT 1
_ACEOF

  LIBS="-lgpopt $LIBS"

else
  as_fn_error $? "library 'gpopt' is required for Pivotal Query Optimizer (orca)" "$LINENO" 5
fi

ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu




12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Checking ORCA version" >&5
$as_echo_n "checking Checking ORCA version... " >&6; }
ac_ext=cpp
ac_cpp='$CXXCPP $CPPFLAGS'
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu

if test "$cross_compiling" = yes; then :
  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error $? "cannot run test program while cross compiling
See \`config.log' for more details" "$LINENO" 5; }
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

#include "gpopt/version.h"
#include <string.h>

int
main ()
{

12821
return strncmp("2.50.", GPORCA_VERSION_STRING, 5);
12822 12823 12824 12825 12826 12827 12828 12829 12830

  ;
  return 0;
}
_ACEOF
if ac_fn_cxx_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
else
12831
  as_fn_error $? "Your ORCA version is expected to be 2.50.XXX" "$LINENO" 5
12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844

fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu


12845
fi
12846

12847
for ac_header in atomic.h crypt.h dld.h endian.h fp_class.h getopt.h ieeefp.h ifaddrs.h langinfo.h mbarrier.h poll.h pwd.h sys/ioctl.h sys/ipc.h sys/poll.h sys/pstat.h sys/resource.h sys/select.h sys/sem.h sys/shm.h sys/socket.h sys/sockio.h sys/tas.h sys/time.h sys/un.h termios.h ucred.h utime.h wchar.h wctype.h kernel/OS.h kernel/image.h SupportDefs.h
12848 12849 12850 12851 12852 12853
do :
  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
12854 12855
_ACEOF

12856
fi
12857

12858
done
12859 12860


12861 12862 12863 12864 12865 12866 12867
# On BSD, cpp test for net/if.h will fail unless sys/socket.h
# is included first.
for ac_header in net/if.h
do :
  ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "$ac_includes_default
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
12868
#endif
12869

12870 12871 12872 12873
"
if test "x$ac_cv_header_net_if_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_NET_IF_H 1
12874
_ACEOF
12875

12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903
fi

done


# At least on IRIX, cpp test for netinet/tcp.h will fail unless
# netinet/in.h is included first.
for ac_header in netinet/in.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
if test "x$ac_cv_header_netinet_in_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_NETINET_IN_H 1
_ACEOF

fi

done

for ac_header in netinet/tcp.h
do :
  ac_fn_c_check_header_compile "$LINENO" "netinet/tcp.h" "ac_cv_header_netinet_tcp_h" "$ac_includes_default
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif

"
if test "x$ac_cv_header_netinet_tcp_h" = xyes; then :
12904
  cat >>confdefs.h <<_ACEOF
12905
#define HAVE_NETINET_TCP_H 1
12906 12907
_ACEOF

12908
fi
12909

12910
done
12911 12912


12913 12914 12915 12916 12917 12918 12919 12920
if expr x"$pgac_cv_check_readline" : 'x-lreadline' >/dev/null ; then
  for ac_header in readline/readline.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_readline_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_READLINE_H 1
_ACEOF
12921

12922 12923 12924 12925 12926 12927 12928
else
  for ac_header in readline.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline.h" "ac_cv_header_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_H 1
12929
_ACEOF
12930

12931 12932 12933 12934 12935 12936
else
  as_fn_error $? "readline header not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support." "$LINENO" 5
fi
12937

12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949
done

fi

done

  for ac_header in readline/history.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline/history.h" "ac_cv_header_readline_history_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_history_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_HISTORY_H 1
12950
_ACEOF
12951

12952 12953 12954 12955 12956 12957 12958
else
  for ac_header in history.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "history.h" "ac_cv_header_history_h" "$ac_includes_default"
if test "x$ac_cv_header_history_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_HISTORY_H 1
12959 12960
_ACEOF

12961
else
12962 12963 12964 12965 12966 12967 12968
  as_fn_error $? "history header not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support." "$LINENO" 5
fi

done
12969

12970
fi
12971

12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986
done

fi

if expr x"$pgac_cv_check_readline" : 'x-ledit' >/dev/null ; then
# Some installations of libedit usurp /usr/include/readline/, which seems
# bad practice, since in combined installations readline will have its headers
# there.  We might have to resort to AC_EGREP checks to make sure we found
# the proper header...
  for ac_header in editline/readline.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_editline_readline_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_EDITLINE_READLINE_H 1
12987
_ACEOF
12988

12989 12990 12991 12992 12993 12994 12995
else
  for ac_header in readline.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline.h" "ac_cv_header_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_H 1
12996 12997 12998
_ACEOF

else
12999 13000 13001 13002 13003 13004 13005
  for ac_header in readline/readline.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline/readline.h" "ac_cv_header_readline_readline_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_readline_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_READLINE_H 1
_ACEOF
13006

13007 13008 13009 13010 13011
else
  as_fn_error $? "readline header not found
If you have libedit already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable libedit support." "$LINENO" 5
M
Marc G. Fournier 已提交
13012
fi
13013

13014
done
13015

13016
fi
13017

13018
done
13019

13020
fi
13021

13022
done
13023

13024 13025 13026 13027 13028 13029 13030 13031 13032
# Note: in a libedit installation, history.h is sometimes a dummy, and may
# not be there at all.  Hence, don't complain if not found.  We must check
# though, since in yet other versions it is an independent header.
  for ac_header in editline/history.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "editline/history.h" "ac_cv_header_editline_history_h" "$ac_includes_default"
if test "x$ac_cv_header_editline_history_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_EDITLINE_HISTORY_H 1
13033
_ACEOF
13034

13035
else
13036 13037 13038 13039 13040 13041
  for ac_header in history.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "history.h" "ac_cv_header_history_h" "$ac_includes_default"
if test "x$ac_cv_header_history_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_HISTORY_H 1
13042
_ACEOF
13043

13044
else
13045 13046 13047 13048 13049 13050 13051
  for ac_header in readline/history.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "readline/history.h" "ac_cv_header_readline_history_h" "$ac_includes_default"
if test "x$ac_cv_header_readline_history_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_READLINE_HISTORY_H 1
_ACEOF
13052

13053
fi
13054

13055
done
13056

13057 13058
fi

13059 13060
done

13061
fi
13062 13063

done
13064

M
Marbin Tan 已提交
13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082
fi

if test "$enable_gpfdist" = yes; then
  if test "$PORTNAME" = "win32"; then
    for ac_header in winsock2.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default"
if test "x$ac_cv_header_winsock2_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_WINSOCK2_H 1
_ACEOF

fi

done

  fi

13083 13084
  for ac_header in yaml.h
do :
M
Marbin Tan 已提交
13085 13086
  ac_fn_c_check_header_mongrel "$LINENO" "yaml.h" "ac_cv_header_yaml_h" "$ac_includes_default"
if test "x$ac_cv_header_yaml_h" = xyes; then :
13087 13088 13089
  cat >>confdefs.h <<_ACEOF
#define HAVE_YAML_H 1
_ACEOF
M
Marbin Tan 已提交
13090 13091 13092 13093 13094 13095

else
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: header file <yaml.h> is not found. disabling transformations for gpfdist." >&5
$as_echo "$as_me: WARNING: header file <yaml.h> is not found. disabling transformations for gpfdist." >&2;}
fi

13096
done
M
Marbin Tan 已提交
13097

13098 13099 13100 13101 13102 13103 13104
  for ac_header in event.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "event.h" "ac_cv_header_event_h" "$ac_includes_default"
if test "x$ac_cv_header_event_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_EVENT_H 1
_ACEOF
M
Marbin Tan 已提交
13105 13106

else
13107
  as_fn_error $? "header file <event.h> is required for gpfdist" "$LINENO" 5
M
Marbin Tan 已提交
13108 13109
fi

13110
done
M
Marbin Tan 已提交
13111

13112 13113 13114 13115 13116 13117 13118 13119 13120 13121

  ac_save_CPPFLAGS=$CPPFLAGS
  CPPFLAGS="$apr_includes $CPPFLAGS"
  for ac_header in apr_getopt.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "apr_getopt.h" "ac_cv_header_apr_getopt_h" "$ac_includes_default"
if test "x$ac_cv_header_apr_getopt_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_APR_GETOPT_H 1
_ACEOF
M
Marbin Tan 已提交
13122 13123

else
13124
  as_fn_error $? "'header file <apr_getopt.h> is required for gpfdist'" "$LINENO" 5
M
Marbin Tan 已提交
13125 13126
fi

13127
done
M
Marbin Tan 已提交
13128

13129
  CPPFLAGS=$ac_save_CPPFLAGS
13130
fi
13131

13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148
if test "enable_gpperfmon" = yes; then
  for ac_header in event.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "event.h" "ac_cv_header_event_h" "$ac_includes_default"
if test "x$ac_cv_header_event_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_EVENT_H 1
_ACEOF

else
  as_fn_error $? "header file <event.h> is required for gpperfmon" "$LINENO" 5
fi

done

fi

13149 13150 13151
if test "$with_zlib" = yes; then
  ac_fn_c_check_header_mongrel "$LINENO" "zlib.h" "ac_cv_header_zlib_h" "$ac_includes_default"
if test "x$ac_cv_header_zlib_h" = xyes; then :
13152

13153 13154 13155 13156 13157
else
  as_fn_error $? "zlib header not found
If you have zlib already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-zlib to disable zlib support." "$LINENO" 5
13158 13159 13160
fi


13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172
fi

# Check for bzlib.h
if test "$with_libbz2" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "bzlib.h" "ac_cv_header_bzlib_h" "$ac_includes_default"
if test "x$ac_cv_header_bzlib_h" = xyes; then :

else
  as_fn_error $? "header file <bzlib.h> is required for bzip2 support" "$LINENO" 5
fi


13173 13174
fi

13175 13176 13177 13178 13179 13180 13181 13182
if test "$with_gssapi" = yes ; then
  for ac_header in gssapi/gssapi.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "gssapi/gssapi.h" "ac_cv_header_gssapi_gssapi_h" "$ac_includes_default"
if test "x$ac_cv_header_gssapi_gssapi_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_GSSAPI_GSSAPI_H 1
_ACEOF
13183 13184

else
13185 13186 13187 13188 13189 13190
  for ac_header in gssapi.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "gssapi.h" "ac_cv_header_gssapi_h" "$ac_includes_default"
if test "x$ac_cv_header_gssapi_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_GSSAPI_H 1
13191
_ACEOF
13192

13193
else
13194 13195 13196 13197 13198 13199 13200 13201
  as_fn_error $? "gssapi.h header file is required for GSSAPI" "$LINENO" 5
fi

done

fi

done
13202

13203
fi
13204 13205 13206 13207 13208 13209 13210

if test "$with_krb5" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "krb5.h" "ac_cv_header_krb5_h" "$ac_includes_default"
if test "x$ac_cv_header_krb5_h" = xyes; then :

else
  as_fn_error $? "header file <krb5.h> is required for Kerberos 5" "$LINENO" 5
13211 13212 13213
fi


13214 13215 13216 13217 13218 13219 13220 13221
fi

if test "$with_openssl" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "openssl/ssl.h" "ac_cv_header_openssl_ssl_h" "$ac_includes_default"
if test "x$ac_cv_header_openssl_ssl_h" = xyes; then :

else
  as_fn_error $? "header file <openssl/ssl.h> is required for OpenSSL" "$LINENO" 5
13222 13223 13224
fi


13225 13226
  ac_fn_c_check_header_mongrel "$LINENO" "openssl/err.h" "ac_cv_header_openssl_err_h" "$ac_includes_default"
if test "x$ac_cv_header_openssl_err_h" = xyes; then :
13227

13228
else
13229 13230
  as_fn_error $? "header file <openssl/err.h> is required for OpenSSL" "$LINENO" 5
fi
13231 13232


13233 13234 13235 13236 13237 13238 13239
  for ac_func in ERR_set_mark
do :
  ac_fn_c_check_func "$LINENO" "ERR_set_mark" "ac_cv_func_ERR_set_mark"
if test "x$ac_cv_func_ERR_set_mark" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_ERR_SET_MARK 1
_ACEOF
13240

13241 13242
fi
done
13243

13244
fi
13245

13246 13247 13248 13249 13250 13251 13252
if test "$with_pam" = yes ; then
  for ac_header in security/pam_appl.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "security/pam_appl.h" "ac_cv_header_security_pam_appl_h" "$ac_includes_default"
if test "x$ac_cv_header_security_pam_appl_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_SECURITY_PAM_APPL_H 1
13253
_ACEOF
13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279

else
  for ac_header in pam/pam_appl.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "pam/pam_appl.h" "ac_cv_header_pam_pam_appl_h" "$ac_includes_default"
if test "x$ac_cv_header_pam_pam_appl_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_PAM_PAM_APPL_H 1
_ACEOF

else
  as_fn_error $? "header file <security/pam_appl.h> or <pam/pam_appl.h> is required for PAM." "$LINENO" 5
fi

done

fi

done

fi

if test "$with_libxml" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "libxml/parser.h" "ac_cv_header_libxml_parser_h" "$ac_includes_default"
if test "x$ac_cv_header_libxml_parser_h" = xyes; then :

13280
else
13281 13282 13283
  as_fn_error $? "header file <libxml/parser.h> is required for XML support" "$LINENO" 5
fi

13284

13285
fi
13286

13287 13288 13289
if test "$with_libxslt" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "libxslt/xslt.h" "ac_cv_header_libxslt_xslt_h" "$ac_includes_default"
if test "x$ac_cv_header_libxslt_xslt_h" = xyes; then :
13290

13291
else
13292
  as_fn_error $? "header file <libxslt/xslt.h> is required for XSLT support" "$LINENO" 5
13293
fi
13294

13295

13296
fi
13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309

if test "$with_ldap" = yes ; then
  if test "$PORTNAME" != "win32"; then
     for ac_header in ldap.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "ldap.h" "ac_cv_header_ldap_h" "$ac_includes_default"
if test "x$ac_cv_header_ldap_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LDAP_H 1
_ACEOF

else
  as_fn_error $? "header file <ldap.h> is required for LDAP" "$LINENO" 5
13310
fi
13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321

done

  else
     for ac_header in winldap.h
do :
  ac_fn_c_check_header_compile "$LINENO" "winldap.h" "ac_cv_header_winldap_h" "$ac_includes_default
#include <windows.h>

"
if test "x$ac_cv_header_winldap_h" = xyes; then :
13322
  cat >>confdefs.h <<_ACEOF
13323
#define HAVE_WINLDAP_H 1
13324
_ACEOF
13325 13326 13327

else
  as_fn_error $? "header file <winldap.h> is required for LDAP" "$LINENO" 5
13328
fi
13329

13330
done
13331

13332 13333
  fi
fi
13334

13335 13336 13337
if test "$with_bonjour" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "DNSServiceDiscovery/DNSServiceDiscovery.h" "ac_cv_header_DNSServiceDiscovery_DNSServiceDiscovery_h" "$ac_includes_default"
if test "x$ac_cv_header_DNSServiceDiscovery_DNSServiceDiscovery_h" = xyes; then :
13338

13339
else
13340 13341
  as_fn_error $? "header file <DNSServiceDiscovery/DNSServiceDiscovery.h> is required for Bonjour" "$LINENO" 5
fi
13342 13343


13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354
fi

if test "$enable_ddboost" = yes ; then
  ac_fn_c_check_header_mongrel "$LINENO" "ddp_api.h" "ac_cv_header_ddp_api_h" "$ac_includes_default"
if test "x$ac_cv_header_ddp_api_h" = xyes; then :

else
  as_fn_error $? "header file <ddp_api.h> is required for DD Boost" "$LINENO" 5
fi


13355
fi
13356

13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371
# For processor affinity support in Linux on NUMA platforms such as
# AMD x86_64, the 'numactl' or 'libnuma' package is required.  See
#  http://lwn.net/Articles/67005/
#  http://www.x86-64.org/pipermail/discuss/2003-May/003528.html
case $template in
  linux*)
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for numa_available in -lnuma" >&5
$as_echo_n "checking for numa_available in -lnuma... " >&6; }
if ${ac_cv_lib_numa_numa_available+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lnuma  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
13372

13373 13374
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
13375 13376
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
13377
extern "C"
P
Peter Eisentraut 已提交
13378
#endif
13379
char numa_available ();
13380 13381 13382
int
main ()
{
13383
return numa_available ();
13384 13385 13386 13387
  ;
  return 0;
}
_ACEOF
13388 13389
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_numa_numa_available=yes
13390
else
13391
  ac_cv_lib_numa_numa_available=no
13392
fi
13393 13394 13395
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
13396
fi
13397 13398 13399
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_numa_numa_available" >&5
$as_echo "$ac_cv_lib_numa_numa_available" >&6; }
if test "x$ac_cv_lib_numa_numa_available" = xyes; then :
13400
  cat >>confdefs.h <<_ACEOF
13401
#define HAVE_LIBNUMA 1
13402
_ACEOF
13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415

  LIBS="-lnuma $LIBS"

fi

    for ac_header in numa.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "numa.h" "ac_cv_header_numa_h" "$ac_includes_default"
if test "x$ac_cv_header_numa_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_NUMA_H 1
_ACEOF

B
Bruce Momjian 已提交
13416
fi
13417

13418
done
B
Bruce Momjian 已提交
13419

13420 13421
    ;;
esac
13422

13423 13424 13425 13426 13427 13428 13429 13430 13431
# net-snmp
if test "$enable_snmp" = yes; then
	for ac_header in net-snmp/net-snmp-config.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "net-snmp/net-snmp-config.h" "ac_cv_header_net_snmp_net_snmp_config_h" "$ac_includes_default"
if test "x$ac_cv_header_net_snmp_net_snmp_config_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_NET_SNMP_NET_SNMP_CONFIG_H 1
_ACEOF
13432 13433

else
13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449
  as_fn_error $? "header file <<net-snmp/net-snmp-config.h> is required for snmp support" "$LINENO" 5
fi

done

fi


# realtime library header
if test "$with_rt" = yes; then
	for ac_header in time.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "time.h" "ac_cv_header_time_h" "$ac_includes_default"
if test "x$ac_cv_header_time_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_TIME_H 1
13450 13451
_ACEOF

13452 13453 13454
else
  as_fn_error $? "header file <time.h> is required for realtime library support" "$LINENO" 5
fi
13455

13456 13457 13458
done

fi
13459

13460
if test "$enable_mapreduce" = yes; then
13461 13462 13463
  if test "$with_perl" = no; then
    as_fn_error $? "Greenplum Mapreduce requires Perl, reconfigure with --with-perl" "$LINENO" 5
  fi
13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478
  for ac_header in yaml.h
do :
  ac_fn_c_check_header_mongrel "$LINENO" "yaml.h" "ac_cv_header_yaml_h" "$ac_includes_default"
if test "x$ac_cv_header_yaml_h" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_YAML_H 1
_ACEOF

else
  as_fn_error $? "YAML includes required for Greenplum Mapreduce" "$LINENO" 5
fi

done

fi
13479

13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532
##
## Types, structures, compiler characteristics
##

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
if ${ac_cv_c_bigendian+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_cv_c_bigendian=unknown
    # See if we're dealing with a universal compiler.
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#ifndef __APPLE_CC__
	       not a universal capable compiler
	     #endif
	     typedef int dummy;

_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :

	# Check for potential -arch flags.  It is not universal unless
	# there are at least two -arch flags with different values.
	ac_arch=
	ac_prev=
	for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do
	 if test -n "$ac_prev"; then
	   case $ac_word in
	     i?86 | x86_64 | ppc | ppc64)
	       if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then
		 ac_arch=$ac_word
	       else
		 ac_cv_c_bigendian=universal
		 break
	       fi
	       ;;
	   esac
	   ac_prev=
	 elif test "x$ac_word" = "x-arch"; then
	   ac_prev=arch
	 fi
       done
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    if test $ac_cv_c_bigendian = unknown; then
      # See if sys/param.h defines the BYTE_ORDER macro.
      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <sys/types.h>
	     #include <sys/param.h>

int
main ()
M
Michael Meskes 已提交
13533
{
13534 13535 13536 13537 13538 13539 13540 13541
#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \
		     && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \
		     && LITTLE_ENDIAN)
	      bogus endian macros
	     #endif

  ;
  return 0;
M
Michael Meskes 已提交
13542
}
13543 13544 13545 13546 13547 13548 13549
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  # It does; now see whether it defined to BIG_ENDIAN or not.
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <sys/types.h>
		#include <sys/param.h>
P
Peter Eisentraut 已提交
13550

13551 13552 13553
int
main ()
{
13554 13555 13556 13557
#if BYTE_ORDER != BIG_ENDIAN
		 not big endian
		#endif

13558 13559 13560 13561
  ;
  return 0;
}
_ACEOF
13562 13563
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_c_bigendian=yes
13564
else
13565
  ac_cv_c_bigendian=no
13566
fi
13567
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13568
fi
13569 13570 13571 13572 13573 13574 13575
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    fi
    if test $ac_cv_c_bigendian = unknown; then
      # See if <limits.h> defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris).
      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <limits.h>
13576

13577 13578 13579 13580 13581 13582
int
main ()
{
#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN)
	      bogus endian macros
	     #endif
13583

13584 13585 13586
  ;
  return 0;
}
13587
_ACEOF
13588 13589 13590
if ac_fn_c_try_compile "$LINENO"; then :
  # It does; now see whether it defined to _BIG_ENDIAN or not.
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13591
/* end confdefs.h.  */
13592
#include <limits.h>
13593

13594 13595
int
main ()
M
Michael Meskes 已提交
13596
{
13597 13598 13599 13600 13601 13602
#ifndef _BIG_ENDIAN
		 not big endian
		#endif

  ;
  return 0;
M
Michael Meskes 已提交
13603
}
13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_c_bigendian=yes
else
  ac_cv_c_bigendian=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    fi
    if test $ac_cv_c_bigendian = unknown; then
      # Compile a test program.
      if test "$cross_compiling" = yes; then :
  # Try to guess by grepping values from an object file.
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
short int ascii_mm[] =
		  { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
		short int ascii_ii[] =
		  { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
		int use_ascii (int i) {
		  return ascii_mm[i] + ascii_ii[i];
		}
		short int ebcdic_ii[] =
		  { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
		short int ebcdic_mm[] =
		  { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
		int use_ebcdic (int i) {
		  return ebcdic_mm[i] + ebcdic_ii[i];
		}
		extern int foo;
13635

13636 13637 13638
int
main ()
{
13639
return use_ascii (foo) == use_ebcdic (foo);
13640 13641 13642 13643
  ;
  return 0;
}
_ACEOF
13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657
if ac_fn_c_try_compile "$LINENO"; then :
  if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then
	      ac_cv_c_bigendian=yes
	    fi
	    if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
	      if test "$ac_cv_c_bigendian" = unknown; then
		ac_cv_c_bigendian=no
	      else
		# finding both strings is unlikely to happen, but who knows?
		ac_cv_c_bigendian=unknown
	      fi
	    fi
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13658
else
13659 13660 13661 13662 13663 13664
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$ac_includes_default
int
main ()
{
13665

13666 13667 13668 13669 13670 13671 13672 13673
	     /* Are we little or big endian?  From Harbison&Steele.  */
	     union
	     {
	       long int l;
	       char c[sizeof (long int)];
	     } u;
	     u.l = 1;
	     return u.c[sizeof (long int) - 1] == 1;
13674

13675 13676 13677 13678 13679 13680
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  ac_cv_c_bigendian=no
13681
else
13682 13683 13684 13685
  ac_cv_c_bigendian=yes
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
13686 13687
fi

13688
    fi
13689
fi
13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5
$as_echo "$ac_cv_c_bigendian" >&6; }
 case $ac_cv_c_bigendian in #(
   yes)
     $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h
;; #(
   no)
      ;; #(
   universal)

$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
13701

13702 13703 13704 13705 13706
     ;; #(
   *)
     as_fn_error $? "unknown endianness
 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
 esac
13707

13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5
$as_echo_n "checking for inline... " >&6; }
if ${ac_cv_c_inline+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_cv_c_inline=no
for ac_kw in inline __inline__ __inline; do
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#ifndef __cplusplus
typedef int foo_t;
static $ac_kw foo_t static_foo () {return 0; }
$ac_kw foo_t foo () {return 0; }
#endif

_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_c_inline=$ac_kw
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  test "$ac_cv_c_inline" != no && break
done

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5
$as_echo "$ac_cv_c_inline" >&6; }

case $ac_cv_c_inline in
  inline | yes) ;;
  *)
    case $ac_cv_c_inline in
      no) ac_val=;;
      *) ac_val=$ac_cv_c_inline;;
    esac
    cat >>confdefs.h <<_ACEOF
#ifndef __cplusplus
#define inline $ac_val
#endif
_ACEOF
    ;;
esac

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for quiet inline (no complaint if unreferenced)" >&5
$as_echo_n "checking for quiet inline (no complaint if unreferenced)... " >&6; }
if ${pgac_cv_c_inline_quietly+:} false; then :
  $as_echo_n "(cached) " >&6
else
  pgac_cv_c_inline_quietly=no
  if test "$ac_cv_c_inline" != no; then
    pgac_c_inline_save_werror=$ac_c_werror_flag
    ac_c_werror_flag=yes
    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include "$srcdir/config/test_quiet_include.h"
int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_c_inline_quietly=yes
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
    ac_c_werror_flag=$pgac_c_inline_save_werror
  fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_c_inline_quietly" >&5
$as_echo "$pgac_cv_c_inline_quietly" >&6; }
if test "$pgac_cv_c_inline_quietly" != no; then

cat >>confdefs.h <<_ACEOF
#define PG_USE_INLINE 1
_ACEOF

fi

13788 13789 13790 13791
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
$as_echo_n "checking for an ANSI C-conforming const... " >&6; }
if ${ac_cv_c_const+:} false; then :
  $as_echo_n "(cached) " >&6
P
Peter Eisentraut 已提交
13792
else
13793
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13794
/* end confdefs.h.  */
13795

P
Peter Eisentraut 已提交
13796 13797 13798
int
main ()
{
13799

13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849
#ifndef __cplusplus
  /* Ultrix mips cc rejects this sort of thing.  */
  typedef int charset[2];
  const charset cs = { 0, 0 };
  /* SunOS 4.1.1 cc rejects this.  */
  char const *const *pcpcc;
  char **ppc;
  /* 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";
  pcpcc = &g + (g ? g-g : 0);
  /* HPUX 7.0 cc rejects these. */
  ++pcpcc;
  ppc = (char**) pcpcc;
  pcpcc = (char const *const *) ppc;
  { /* SCO 3.2v4 cc rejects this sort of thing.  */
    char tx;
    char *t = &tx;
    char const *s = 0 ? (char *) 0 : (char const *) 0;

    *t++ = 0;
    if (s) return 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 sort of thing, saying
       "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
    struct s { int j; const int *ap[3]; } bx;
    struct s *b = &bx; b->j = 5;
  }
  { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
    const int foo = 10;
    if (!foo) return 0;
  }
  return !cs[0] && !zero.x;
#endif

P
Peter Eisentraut 已提交
13850 13851 13852 13853
  ;
  return 0;
}
_ACEOF
13854 13855
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_c_const=yes
P
Peter Eisentraut 已提交
13856
else
13857
  ac_cv_c_const=no
P
Peter Eisentraut 已提交
13858
fi
13859
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
P
Peter Eisentraut 已提交
13860
fi
13861 13862 13863
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5
$as_echo "$ac_cv_c_const" >&6; }
if test $ac_cv_c_const = no; then
P
Peter Eisentraut 已提交
13864

13865
$as_echo "#define const /**/" >>confdefs.h
P
Peter Eisentraut 已提交
13866 13867 13868

fi

13869 13870 13871 13872 13873 13874 13875 13876
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for preprocessor stringizing operator" >&5
$as_echo_n "checking for preprocessor stringizing operator... " >&6; }
if ${ac_cv_c_stringize+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#define x(y) #y
13877

13878 13879 13880 13881 13882 13883 13884 13885 13886
char *s = x(teststring);
_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  $EGREP "#teststring" >/dev/null 2>&1; then :
  ac_cv_c_stringize=no
else
  ac_cv_c_stringize=yes
fi
rm -f conftest*
M
Michael Meskes 已提交
13887

13888 13889 13890 13891
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stringize" >&5
$as_echo "$ac_cv_c_stringize" >&6; }
if test $ac_cv_c_stringize = yes; then
13892

13893
$as_echo "#define HAVE_STRINGIZE 1" >>confdefs.h
13894

13895
fi
13896

13897 13898 13899 13900 13901 13902
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for signed types" >&5
$as_echo_n "checking for signed types... " >&6; }
if ${pgac_cv_c_signed+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13903
/* end confdefs.h.  */
13904 13905 13906 13907

int
main ()
{
13908
signed char c; signed short s; signed int i;
13909 13910 13911 13912
  ;
  return 0;
}
_ACEOF
13913 13914
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_c_signed=yes
13915
else
13916
  pgac_cv_c_signed=no
13917
fi
13918
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13919
fi
13920 13921 13922
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_c_signed" >&5
$as_echo "$pgac_cv_c_signed" >&6; }
if test x"$pgac_cv_c_signed" = xno ; then
13923

13924
$as_echo "#define signed /**/" >>confdefs.h
13925 13926

fi
13927 13928 13929 13930
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
$as_echo_n "checking for working volatile... " >&6; }
if ${ac_cv_c_volatile+:} false; then :
  $as_echo_n "(cached) " >&6
13931
else
13932
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13933
/* end confdefs.h.  */
13934

13935 13936 13937
int
main ()
{
13938 13939 13940 13941

volatile int x;
int * volatile y = (int *) 0;
return !x && !y;
13942 13943 13944 13945
  ;
  return 0;
}
_ACEOF
13946 13947
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_c_volatile=yes
13948
else
13949 13950 13951 13952 13953 13954 13955 13956 13957
  ac_cv_c_volatile=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_volatile" >&5
$as_echo "$ac_cv_c_volatile" >&6; }
if test $ac_cv_c_volatile = no; then

$as_echo "#define volatile /**/" >>confdefs.h
13958

13959 13960
fi

13961 13962 13963 13964 13965 13966 13967 13968
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __func__" >&5
$as_echo_n "checking for __func__... " >&6; }
if ${pgac_cv_funcname_func_support+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <stdio.h>
13969
int
13970
main ()
13971
{
13972 13973
printf("%s\n", __func__);
  ;
13974 13975 13976
  return 0;
}
_ACEOF
13977 13978 13979 13980 13981 13982
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_funcname_func_support=yes
else
  pgac_cv_funcname_func_support=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
13983
fi
13984 13985 13986
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_funcname_func_support" >&5
$as_echo "$pgac_cv_funcname_func_support" >&6; }
if test x"$pgac_cv_funcname_func_support" = xyes ; then
13987

13988
$as_echo "#define HAVE_FUNCNAME__FUNC 1" >>confdefs.h
13989

13990 13991 13992 13993 13994 13995 13996
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __FUNCTION__" >&5
$as_echo_n "checking for __FUNCTION__... " >&6; }
if ${pgac_cv_funcname_function_support+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
13997
/* end confdefs.h.  */
13998
#include <stdio.h>
13999 14000 14001
int
main ()
{
14002
printf("%s\n", __FUNCTION__);
14003 14004 14005 14006
  ;
  return 0;
}
_ACEOF
14007 14008
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_funcname_function_support=yes
14009
else
14010 14011 14012 14013 14014 14015 14016 14017 14018
  pgac_cv_funcname_function_support=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_funcname_function_support" >&5
$as_echo "$pgac_cv_funcname_function_support" >&6; }
if test x"$pgac_cv_funcname_function_support" = xyes ; then

$as_echo "#define HAVE_FUNCNAME__FUNCTION 1" >>confdefs.h
14019

14020
fi
14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _Static_assert" >&5
$as_echo_n "checking for _Static_assert... " >&6; }
if ${pgac_cv__static_assert+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
({ _Static_assert(1, "foo"); })
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv__static_assert=yes
else
  pgac_cv__static_assert=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__static_assert" >&5
$as_echo "$pgac_cv__static_assert" >&6; }
if test x"$pgac_cv__static_assert" = xyes ; then

$as_echo "#define HAVE__STATIC_ASSERT 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_types_compatible_p" >&5
$as_echo_n "checking for __builtin_types_compatible_p... " >&6; }
if ${pgac_cv__types_compatible+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
 int x; static int y[__builtin_types_compatible_p(__typeof__(x), int)];
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv__types_compatible=yes
else
  pgac_cv__types_compatible=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__types_compatible" >&5
$as_echo "$pgac_cv__types_compatible" >&6; }
if test x"$pgac_cv__types_compatible" = xyes ; then

$as_echo "#define HAVE__BUILTIN_TYPES_COMPATIBLE_P 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_constant_p" >&5
$as_echo_n "checking for __builtin_constant_p... " >&6; }
if ${pgac_cv__builtin_constant_p+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
static int x; static int y[__builtin_constant_p(x) ? x : 1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv__builtin_constant_p=yes
else
  pgac_cv__builtin_constant_p=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__builtin_constant_p" >&5
$as_echo "$pgac_cv__builtin_constant_p" >&6; }
if test x"$pgac_cv__builtin_constant_p" = xyes ; then

$as_echo "#define HAVE__BUILTIN_CONSTANT_P 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_unreachable" >&5
$as_echo_n "checking for __builtin_unreachable... " >&6; }
if ${pgac_cv__builtin_unreachable+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
__builtin_unreachable();
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv__builtin_unreachable=yes
else
  pgac_cv__builtin_unreachable=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__builtin_unreachable" >&5
$as_echo "$pgac_cv__builtin_unreachable" >&6; }
if test x"$pgac_cv__builtin_unreachable" = xyes ; then

$as_echo "#define HAVE__BUILTIN_UNREACHABLE 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __VA_ARGS__" >&5
$as_echo_n "checking for __VA_ARGS__... " >&6; }
if ${pgac_cv__va_args+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <stdio.h>
int
main ()
{
#define debug(...) fprintf(stderr, __VA_ARGS__)
debug("%s", "blarg");

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv__va_args=yes
else
  pgac_cv__va_args=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv__va_args" >&5
$as_echo "$pgac_cv__va_args" >&6; }
if test x"$pgac_cv__va_args" = xyes ; then

$as_echo "#define HAVE__VA_ARGS 1" >>confdefs.h

14175 14176 14177 14178 14179 14180 14181
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; }
if ${ac_cv_struct_tm+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14182
/* end confdefs.h.  */
14183 14184 14185
#include <sys/types.h>
#include <time.h>

14186 14187 14188
int
main ()
{
14189 14190 14191
struct tm tm;
				     int *p = &tm.tm_sec;
				     return !p;
14192 14193 14194 14195
  ;
  return 0;
}
_ACEOF
14196 14197
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_struct_tm=time.h
14198
else
14199 14200 14201 14202 14203 14204 14205 14206 14207
  ac_cv_struct_tm=sys/time.h
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5
$as_echo "$ac_cv_struct_tm" >&6; }
if test $ac_cv_struct_tm = sys/time.h; then

$as_echo "#define TM_IN_SYS_TIME 1" >>confdefs.h
14208

14209 14210
fi

14211 14212 14213 14214 14215 14216 14217 14218
ac_fn_c_check_member "$LINENO" "struct tm" "tm_zone" "ac_cv_member_struct_tm_tm_zone" "#include <sys/types.h>
#include <$ac_cv_struct_tm>

"
if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_TM_TM_ZONE 1
14219 14220 14221
_ACEOF


14222
fi
14223

14224
if test "$ac_cv_member_struct_tm_tm_zone" = yes; then
14225

14226
$as_echo "#define HAVE_TM_ZONE 1" >>confdefs.h
14227 14228

fi
14229 14230 14231 14232
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5
$as_echo_n "checking for tzname... " >&6; }
if ${ac_cv_var_tzname+:} false; then :
  $as_echo_n "(cached) " >&6
14233
else
14234 14235 14236 14237 14238 14239
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <time.h>
#ifndef tzname /* For SGI.  */
extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
#endif
14240

14241 14242 14243 14244 14245 14246 14247 14248 14249 14250
int
main ()
{
atoi(*tzname);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_var_tzname=yes
14251
else
14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262
  ac_cv_var_tzname=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_var_tzname" >&5
$as_echo "$ac_cv_var_tzname" >&6; }
if test $ac_cv_var_tzname = yes; then

$as_echo "#define HAVE_TZNAME 1" >>confdefs.h

14263 14264
fi

14265 14266 14267 14268 14269 14270 14271 14272 14273
ac_fn_c_check_type "$LINENO" "union semun" "ac_cv_type_union_semun" "#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
"
if test "x$ac_cv_type_union_semun" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_UNION_SEMUN 1
_ACEOF
14274 14275


14276
fi
14277

14278 14279 14280 14281
ac_fn_c_check_type "$LINENO" "struct sockaddr_un" "ac_cv_type_struct_sockaddr_un" "#include <sys/types.h>
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
14282

14283 14284
"
if test "x$ac_cv_type_struct_sockaddr_un" = xyes; then :
14285

14286 14287
cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_UN 1
14288 14289
_ACEOF

14290 14291

$as_echo "#define HAVE_UNIX_SOCKETS 1" >>confdefs.h
14292 14293 14294

fi

14295 14296 14297 14298
ac_fn_c_check_type "$LINENO" "struct sockaddr_storage" "ac_cv_type_struct_sockaddr_storage" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
14299

14300 14301
"
if test "x$ac_cv_type_struct_sockaddr_storage" = xyes; then :
B
Bruce Momjian 已提交
14302

14303 14304 14305
cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_STORAGE 1
_ACEOF
B
Bruce Momjian 已提交
14306

14307 14308 14309

fi

14310 14311 14312 14313
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_family" "ac_cv_member_struct_sockaddr_storage_ss_family" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
14314

14315 14316 14317 14318 14319
"
if test "x$ac_cv_member_struct_sockaddr_storage_ss_family" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1
14320
_ACEOF
14321

14322

14323
fi
14324 14325 14326 14327
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_family" "ac_cv_member_struct_sockaddr_storage___ss_family" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
14328

14329 14330 14331 14332 14333
"
if test "x$ac_cv_member_struct_sockaddr_storage___ss_family" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY 1
14334
_ACEOF
14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347


fi
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "ss_len" "ac_cv_member_struct_sockaddr_storage_ss_len" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif

"
if test "x$ac_cv_member_struct_sockaddr_storage_ss_len" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_STORAGE_SS_LEN 1
14348
_ACEOF
14349 14350


14351
fi
14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363
ac_fn_c_check_member "$LINENO" "struct sockaddr_storage" "__ss_len" "ac_cv_member_struct_sockaddr_storage___ss_len" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif

"
if test "x$ac_cv_member_struct_sockaddr_storage___ss_len" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_STORAGE___SS_LEN 1
_ACEOF

14364

14365
fi
14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377
ac_fn_c_check_member "$LINENO" "struct sockaddr" "sa_len" "ac_cv_member_struct_sockaddr_sa_len" "#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif

"
if test "x$ac_cv_member_struct_sockaddr_sa_len" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKADDR_SA_LEN 1
_ACEOF

14378 14379 14380

fi

14381 14382 14383 14384 14385 14386 14387 14388 14389 14390
ac_fn_c_check_type "$LINENO" "struct addrinfo" "ac_cv_type_struct_addrinfo" "#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>

"
if test "x$ac_cv_type_struct_addrinfo" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_ADDRINFO 1
_ACEOF
14391 14392


14393
fi
14394

14395

14396 14397
  ac_fn_c_check_type "$LINENO" "intptr_t" "ac_cv_type_intptr_t" "$ac_includes_default"
if test "x$ac_cv_type_intptr_t" = xyes; then :
14398

14399
$as_echo "#define HAVE_INTPTR_T 1" >>confdefs.h
14400 14401

else
14402 14403
  for ac_type in 'int' 'long int' 'long long int'; do
       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14404
/* end confdefs.h.  */
14405 14406 14407 14408 14409 14410 14411
$ac_includes_default
int
main ()
{
static int test_array [1 - 2 * !(sizeof (void *) <= sizeof ($ac_type))];
test_array [0] = 0;
return test_array [0];
14412

14413 14414 14415 14416 14417
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_compile "$LINENO"; then :
14418

14419 14420 14421 14422 14423 14424 14425 14426 14427 14428
cat >>confdefs.h <<_ACEOF
#define intptr_t $ac_type
_ACEOF

	  ac_type=
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
       test -z "$ac_type" && break
     done
fi
14429 14430


14431

14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442
  ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "$ac_includes_default"
if test "x$ac_cv_type_uintptr_t" = xyes; then :

$as_echo "#define HAVE_UINTPTR_T 1" >>confdefs.h

else
  for ac_type in 'unsigned int' 'unsigned long int' \
	'unsigned long long int'; do
       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
$ac_includes_default
14443 14444 14445
int
main ()
{
14446 14447 14448 14449
static int test_array [1 - 2 * !(sizeof (void *) <= sizeof ($ac_type))];
test_array [0] = 0;
return test_array [0];

14450 14451 14452 14453
  ;
  return 0;
}
_ACEOF
14454
if ac_fn_c_try_compile "$LINENO"; then :
14455

14456 14457
cat >>confdefs.h <<_ACEOF
#define uintptr_t $ac_type
14458
_ACEOF
B
Bruce Momjian 已提交
14459

14460 14461 14462 14463 14464
	  ac_type=
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
       test -z "$ac_type" && break
     done
14465 14466
fi

14467

14468 14469 14470 14471 14472

  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5
$as_echo_n "checking for unsigned long long int... " >&6; }
if ${ac_cv_type_unsigned_long_long_int+:} false; then :
  $as_echo_n "(cached) " >&6
14473
else
14474 14475 14476
  ac_cv_type_unsigned_long_long_int=yes
     if test "x${ac_cv_prog_cc_c99-no}" = xno; then
       cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14477
/* end confdefs.h.  */
14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492

  /* For now, do not test the preprocessor; as of 2007 there are too many
	 implementations with broken preprocessors.  Perhaps this can
	 be revisited in 2012.  In the meantime, code should not expect
	 #if to work with literals wider than 32 bits.  */
      /* Test literals.  */
      long long int ll = 9223372036854775807ll;
      long long int nll = -9223372036854775807LL;
      unsigned long long int ull = 18446744073709551615ULL;
      /* Test constant expressions.   */
      typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)
		     ? 1 : -1)];
      typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1
		     ? 1 : -1)];
      int i = 63;
14493 14494 14495
int
main ()
{
14496 14497 14498 14499 14500 14501 14502
/* Test availability of runtime routines for shift and division.  */
      long long int llmax = 9223372036854775807ll;
      unsigned long long int ullmax = 18446744073709551615ull;
      return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)
	      | (llmax / ll) | (llmax % ll)
	      | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)
	      | (ullmax / ull) | (ullmax % ull));
14503 14504 14505
  ;
  return 0;
}
14506

14507
_ACEOF
14508
if ac_fn_c_try_link "$LINENO"; then :
14509

14510 14511
else
  ac_cv_type_unsigned_long_long_int=no
14512
fi
14513 14514 14515
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
     fi
14516
fi
14517 14518 14519
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long_int" >&5
$as_echo "$ac_cv_type_unsigned_long_long_int" >&6; }
  if test $ac_cv_type_unsigned_long_long_int = yes; then
14520

14521
$as_echo "#define HAVE_UNSIGNED_LONG_LONG_INT 1" >>confdefs.h
14522

14523
  fi
14524

14525 14526 14527 14528 14529 14530


  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5
$as_echo_n "checking for long long int... " >&6; }
if ${ac_cv_type_long_long_int+:} false; then :
  $as_echo_n "(cached) " >&6
14531
else
14532 14533 14534 14535 14536 14537 14538 14539
  ac_cv_type_long_long_int=yes
      if test "x${ac_cv_prog_cc_c99-no}" = xno; then
	ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int
	if test $ac_cv_type_long_long_int = yes; then
	  	  	  	  if test "$cross_compiling" = yes; then :
  :
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14540
/* end confdefs.h.  */
14541 14542 14543 14544 14545 14546
#include <limits.h>
		 #ifndef LLONG_MAX
		 # define HALF \
			  (1LL << (sizeof (long long int) * CHAR_BIT - 2))
		 # define LLONG_MAX (HALF - 1 + HALF)
		 #endif
14547 14548 14549
int
main ()
{
14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560
long long int n = 1;
		 int i;
		 for (i = 0; ; i++)
		   {
		     long long int m = n << i;
		     if (m >> i != n)
		       return 1;
		     if (LLONG_MAX / 2 < m)
		       break;
		   }
		 return 0;
14561 14562 14563 14564
  ;
  return 0;
}
_ACEOF
14565 14566
if ac_fn_c_try_run "$LINENO"; then :

14567
else
14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596
  ac_cv_type_long_long_int=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

	fi
      fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long_int" >&5
$as_echo "$ac_cv_type_long_long_int" >&6; }
  if test $ac_cv_type_long_long_int = yes; then

$as_echo "#define HAVE_LONG_LONG_INT 1" >>confdefs.h

  fi


ac_fn_c_check_type "$LINENO" "struct cmsgcred" "ac_cv_type_struct_cmsgcred" "#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ucred.h>
"
if test "x$ac_cv_type_struct_cmsgcred" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_CMSGCRED 1
_ACEOF

14597

14598
fi
14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610
ac_fn_c_check_type "$LINENO" "struct fcred" "ac_cv_type_struct_fcred" "#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ucred.h>
"
if test "x$ac_cv_type_struct_fcred" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_FCRED 1
_ACEOF


14611
fi
14612 14613 14614 14615 14616 14617
ac_fn_c_check_type "$LINENO" "struct sockcred" "ac_cv_type_struct_sockcred" "#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ucred.h>
"
if test "x$ac_cv_type_struct_sockcred" = xyes; then :
14618

14619 14620
cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_SOCKCRED 1
14621 14622
_ACEOF

14623

14624 14625
fi

14626

14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647
ac_fn_c_check_type "$LINENO" "struct option" "ac_cv_type_struct_option" "#ifdef HAVE_GETOPT_H
#include <getopt.h>
#endif
"
if test "x$ac_cv_type_struct_option" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_STRUCT_OPTION 1
_ACEOF


fi


if test "$with_zlib" = yes; then
  # Check that <zlib.h> defines z_streamp (versions before about 1.0.4
  # did not).  While we could work around the lack of z_streamp, it
  # seems unwise to encourage people to use such old zlib versions...
  ac_fn_c_check_type "$LINENO" "z_streamp" "ac_cv_type_z_streamp" "#include <zlib.h>
"
if test "x$ac_cv_type_z_streamp" = xyes; then :
14648 14649

else
14650 14651 14652 14653
  as_fn_error $? "zlib version is too old
Use --without-zlib to disable zlib support." "$LINENO" 5
fi

14654 14655
fi

14656 14657 14658 14659 14660 14661 14662 14663 14664
if test "$with_krb5" = yes; then
# Check for differences between MIT and Heimdal (KTH) releases
  ac_fn_c_check_member "$LINENO" "krb5_ticket" "enc_part2" "ac_cv_member_krb5_ticket_enc_part2" "#include <krb5.h>
"
if test "x$ac_cv_member_krb5_ticket_enc_part2" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_KRB5_TICKET_ENC_PART2 1
_ACEOF
14665 14666


14667 14668 14669 14670
else
  ac_fn_c_check_member "$LINENO" "krb5_ticket" "client" "ac_cv_member_krb5_ticket_client" "#include <krb5.h>
"
if test "x$ac_cv_member_krb5_ticket_client" = xyes; then :
14671

14672 14673 14674
cat >>confdefs.h <<_ACEOF
#define HAVE_KRB5_TICKET_CLIENT 1
_ACEOF
14675

14676

14677
else
14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688
  as_fn_error $? "could not determine how to get client name from Kerberos 5 ticket" "$LINENO" 5
fi

fi

  ac_fn_c_check_member "$LINENO" "krb5_error" "text.data" "ac_cv_member_krb5_error_text_data" "#include <krb5.h>
"
if test "x$ac_cv_member_krb5_error_text_data" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_KRB5_ERROR_TEXT_DATA 1
14689 14690
_ACEOF

14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715

else
  ac_fn_c_check_member "$LINENO" "krb5_error" "e_data" "ac_cv_member_krb5_error_e_data" "#include <krb5.h>
"
if test "x$ac_cv_member_krb5_error_e_data" = xyes; then :

cat >>confdefs.h <<_ACEOF
#define HAVE_KRB5_ERROR_E_DATA 1
_ACEOF


else
  as_fn_error $? "could not determine how to extract Kerberos 5 error messages" "$LINENO" 5
fi

fi


# Win32 requires headers to be loaded for __stdcall, so can't use
# AC_CHECK_FUNCS here.
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb5_free_unparsed_name" >&5
$as_echo_n "checking for krb5_free_unparsed_name... " >&6; }
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <krb5.h>
14716 14717 14718
int
main ()
{
14719
krb5_free_unparsed_name(NULL,NULL);
14720 14721 14722 14723
  ;
  return 0;
}
_ACEOF
14724 14725 14726
if ac_fn_c_try_link "$LINENO"; then :

$as_echo "#define HAVE_KRB5_FREE_UNPARSED_NAME 1" >>confdefs.h
14727

14728 14729 14730 14731 14732
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
14733
fi
14734 14735
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
14736 14737 14738
fi


14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765
##
## Functions, global variables
##

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for int timezone" >&5
$as_echo_n "checking for int timezone... " >&6; }
if ${pgac_cv_var_int_timezone+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <time.h>
int res;
int
main ()
{
#ifndef __CYGWIN__
res = timezone / 60;
#else
res = _timezone / 60;
#endif
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_var_int_timezone=yes
14766
else
14767 14768 14769 14770
  pgac_cv_var_int_timezone=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
14771
fi
14772 14773 14774
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_var_int_timezone" >&5
$as_echo "$pgac_cv_var_int_timezone" >&6; }
if test x"$pgac_cv_var_int_timezone" = xyes ; then
14775

14776
$as_echo "#define HAVE_INT_TIMEZONE /**/" >>confdefs.h
14777

14778 14779 14780 14781 14782
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking types of arguments for accept()" >&5
$as_echo_n "checking types of arguments for accept()... " >&6; }
 if ${ac_cv_func_accept_return+:} false; then :
  $as_echo_n "(cached) " >&6
14783
else
14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797
   if ${ac_cv_func_accept_arg1+:} false; then :
  $as_echo_n "(cached) " >&6
else
    if ${ac_cv_func_accept_arg2+:} false; then :
  $as_echo_n "(cached) " >&6
else
     if ${ac_cv_func_accept_arg3+:} false; then :
  $as_echo_n "(cached) " >&6
else
      for ac_cv_func_accept_return in 'int' 'unsigned int PASCAL' 'SOCKET'; do
      for ac_cv_func_accept_arg1 in 'int' 'unsigned int' 'SOCKET'; do
       for ac_cv_func_accept_arg2 in 'struct sockaddr *' 'const struct sockaddr *' 'void *'; do
        for ac_cv_func_accept_arg3 in 'int' 'size_t' 'socklen_t' 'unsigned int' 'void'; do
         cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14798
/* end confdefs.h.  */
14799 14800
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
14801
#endif
14802 14803 14804 14805
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
extern $ac_cv_func_accept_return accept ($ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *);
14806 14807 14808
int
main ()
{
14809

14810 14811 14812 14813
  ;
  return 0;
}
_ACEOF
14814 14815
if ac_fn_c_try_compile "$LINENO"; then :
  ac_not_found=no; break 4
14816
else
14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829
  ac_not_found=yes
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
       done
      done
     done
    done
    if test "$ac_not_found" = yes; then
      as_fn_error $? "could not determine argument types" "$LINENO" 5
    fi
    if test "$ac_cv_func_accept_arg3" = "void"; then
      ac_cv_func_accept_arg3=int
    fi
14830 14831

fi
14832

14833 14834
fi

14835
fi
14836 14837

fi
14838 14839
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_accept_return, $ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *" >&5
$as_echo "$ac_cv_func_accept_return, $ac_cv_func_accept_arg1, $ac_cv_func_accept_arg2, $ac_cv_func_accept_arg3 *" >&6; }
14840

14841 14842 14843
cat >>confdefs.h <<_ACEOF
#define ACCEPT_TYPE_RETURN $ac_cv_func_accept_return
_ACEOF
14844

14845 14846 14847

cat >>confdefs.h <<_ACEOF
#define ACCEPT_TYPE_ARG1 $ac_cv_func_accept_arg1
14848 14849
_ACEOF

14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868

cat >>confdefs.h <<_ACEOF
#define ACCEPT_TYPE_ARG2 $ac_cv_func_accept_arg2
_ACEOF


cat >>confdefs.h <<_ACEOF
#define ACCEPT_TYPE_ARG3 $ac_cv_func_accept_arg3
_ACEOF


{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday takes only one argument" >&5
$as_echo_n "checking whether gettimeofday takes only one argument... " >&6; }
if ${pgac_cv_func_gettimeofday_1arg+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
#include <sys/time.h>
14869 14870 14871
int
main ()
{
14872 14873
struct timeval *tp = 0;
struct timezone *tzp = 0;
14874
gettimeofday(tp,tzp);
14875 14876 14877 14878
  ;
  return 0;
}
_ACEOF
14879 14880
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_func_gettimeofday_1arg=no
14881
else
14882
  pgac_cv_func_gettimeofday_1arg=yes
14883
fi
14884
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14885
fi
14886 14887 14888
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_func_gettimeofday_1arg" >&5
$as_echo "$pgac_cv_func_gettimeofday_1arg" >&6; }
if test x"$pgac_cv_func_gettimeofday_1arg" = xyes ; then
14889

14890
$as_echo "#define GETTIMEOFDAY_1ARG /**/" >>confdefs.h
14891

14892
fi
14893

14894

14895 14896 14897 14898 14899 14900
# Some versions of libedit contain strlcpy(), setproctitle(), and other
# symbols that that library has no business exposing to the world.  Pending
# acquisition of a clue by those developers, ignore libedit (including its
# possible alias of libreadline) while checking for everything else.
LIBS_including_readline="$LIBS"
LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`
14901

14902 14903 14904 14905 14906 14907 14908 14909 14910
for ac_func in cbrt dlopen fcvt fdatasync getifaddrs getpeereid getpeerucred getrlimit memmove poll pstat readlink setproctitle setsid sigprocmask symlink sysconf towlower utime utimes waitpid wcstombs
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF

14911
fi
14912
done
14913

14914

14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925
# posix_fadvise() is a no-op on Solaris, so don't incur function overhead
# by calling it, 2009-04-02
# http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libc/port/gen/posix_fadvise.c
if test "$PORTNAME" != "solaris"; then
for ac_func in posix_fadvise
do :
  ac_fn_c_check_func "$LINENO" "posix_fadvise" "ac_cv_func_posix_fadvise"
if test "x$ac_cv_func_posix_fadvise" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_POSIX_FADVISE 1
_ACEOF
14926

14927 14928
fi
done
14929

14930 14931 14932 14933
ac_fn_c_check_decl "$LINENO" "posix_fadvise" "ac_cv_have_decl_posix_fadvise" "#include <fcntl.h>
"
if test "x$ac_cv_have_decl_posix_fadvise" = xyes; then :
  ac_have_decl=1
14934
else
14935 14936 14937 14938 14939
  ac_have_decl=0
fi

cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_POSIX_FADVISE $ac_have_decl
14940
_ACEOF
14941

14942
fi
14943 14944 14945 14946 14947 14948 14949

ac_fn_c_check_decl "$LINENO" "fdatasync" "ac_cv_have_decl_fdatasync" "#include <unistd.h>
"
if test "x$ac_cv_have_decl_fdatasync" = xyes; then :
  ac_have_decl=1
else
  ac_have_decl=0
14950 14951
fi

14952 14953 14954
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_FDATASYNC $ac_have_decl
_ACEOF
14955

14956 14957 14958
ac_fn_c_check_decl "$LINENO" "strlcat" "ac_cv_have_decl_strlcat" "$ac_includes_default"
if test "x$ac_cv_have_decl_strlcat" = xyes; then :
  ac_have_decl=1
14959
else
14960 14961 14962 14963 14964 14965 14966 14967 14968
  ac_have_decl=0
fi

cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_STRLCAT $ac_have_decl
_ACEOF
ac_fn_c_check_decl "$LINENO" "strlcpy" "ac_cv_have_decl_strlcpy" "$ac_includes_default"
if test "x$ac_cv_have_decl_strlcpy" = xyes; then :
  ac_have_decl=1
14969
else
14970 14971 14972 14973 14974
  ac_have_decl=0
fi

cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_STRLCPY $ac_have_decl
14975
_ACEOF
14976

14977 14978 14979 14980 14981 14982 14983 14984
# This is probably only present on Darwin, but may as well check always
ac_fn_c_check_decl "$LINENO" "F_FULLFSYNC" "ac_cv_have_decl_F_FULLFSYNC" "#include <fcntl.h>
"
if test "x$ac_cv_have_decl_F_FULLFSYNC" = xyes; then :
  ac_have_decl=1
else
  ac_have_decl=0
fi
14985

14986 14987
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_F_FULLFSYNC $ac_have_decl
14988
_ACEOF
14989

14990

14991 14992 14993 14994 14995
HAVE_IPV6=no
ac_fn_c_check_type "$LINENO" "struct sockaddr_in6" "ac_cv_type_struct_sockaddr_in6" "$ac_includes_default
#include <netinet/in.h>
"
if test "x$ac_cv_type_struct_sockaddr_in6" = xyes; then :
14996

14997 14998 14999
$as_echo "#define HAVE_IPV6 1" >>confdefs.h

         HAVE_IPV6=yes
15000 15001 15002
fi


15003

15004 15005 15006 15007
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for PS_STRINGS" >&5
$as_echo_n "checking for PS_STRINGS... " >&6; }
if ${pgac_cv_var_PS_STRINGS+:} false; then :
  $as_echo_n "(cached) " >&6
15008
else
15009
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15010
/* end confdefs.h.  */
15011 15012
#include <machine/vmparam.h>
#include <sys/exec.h>
15013

15014 15015 15016
int
main ()
{
15017 15018
PS_STRINGS->ps_nargvstr = 1;
PS_STRINGS->ps_argvstr = "foo";
15019 15020 15021 15022
  ;
  return 0;
}
_ACEOF
15023 15024
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_var_PS_STRINGS=yes
15025
else
15026
  pgac_cv_var_PS_STRINGS=no
15027
fi
15028 15029 15030 15031 15032 15033
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_var_PS_STRINGS" >&5
$as_echo "$pgac_cv_var_PS_STRINGS" >&6; }
if test "$pgac_cv_var_PS_STRINGS" = yes ; then
15034

15035
$as_echo "#define HAVE_PS_STRINGS /**/" >>confdefs.h
15036

15037 15038
fi

15039

15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079
# We use our snprintf.c emulation if either snprintf() or vsnprintf()
# is missing.  Yes, there are machines that have only one.  We may
# also decide to use snprintf.c if snprintf() is present but does not
# have all the features we need --- see below.

if test "$PORTNAME" = "win32"; then
  # Win32 gets snprintf.c built unconditionally.
  #
  # To properly translate all NLS languages strings, we must support the
  # *printf() %$ format, which allows *printf() arguments to be selected
  # by position in the translated string.
  #
  # libintl versions < 0.13 use the native *printf() functions, and Win32
  # *printf() doesn't understand %$, so we must use our /port versions,
  # which do understand %$. libintl versions >= 0.13 include their own
  # *printf versions on Win32.  The libintl 0.13 release note text is:
  #
  #   C format strings with positions, as they arise when a translator
  #   needs to reorder a sentence, are now supported on all platforms.
  #   On those few platforms (NetBSD and Woe32) for which the native
  #   printf()/fprintf()/... functions don't support such format
  #   strings, replacements are provided through <libintl.h>.
  #
  # We could use libintl >= 0.13's *printf() if we were sure that we had
  # a litint >= 0.13 at runtime, but seeing that there is no clean way
  # to guarantee that, it is best to just use our own, so we are sure to
  # get %$ support. In include/port.h we disable the *printf() macros
  # that might have been defined by libintl.
  #
  # We do this unconditionally whether NLS is used or not so we are sure
  # that all Win32 libraries and binaries behave the same.
  pgac_need_repl_snprintf=yes
else
  pgac_need_repl_snprintf=no
  for ac_func in snprintf
do :
  ac_fn_c_check_func "$LINENO" "snprintf" "ac_cv_func_snprintf"
if test "x$ac_cv_func_snprintf" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_SNPRINTF 1
15080 15081
_ACEOF

15082 15083
else
  pgac_need_repl_snprintf=yes
15084
fi
15085
done
15086

15087 15088 15089 15090 15091 15092
  for ac_func in vsnprintf
do :
  ac_fn_c_check_func "$LINENO" "vsnprintf" "ac_cv_func_vsnprintf"
if test "x$ac_cv_func_vsnprintf" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_VSNPRINTF 1
15093
_ACEOF
15094 15095

else
15096
  pgac_need_repl_snprintf=yes
15097
fi
15098
done
15099

15100
fi
15101

15102

15103 15104 15105 15106
# Check whether <stdio.h> declares snprintf() and vsnprintf(); if not,
# include/c.h will provide declarations.  Note this is a separate test
# from whether the functions exist in the C library --- there are
# systems that have the functions but don't bother to declare them :-(
15107

15108 15109 15110
ac_fn_c_check_decl "$LINENO" "snprintf" "ac_cv_have_decl_snprintf" "$ac_includes_default"
if test "x$ac_cv_have_decl_snprintf" = xyes; then :
  ac_have_decl=1
15111
else
15112
  ac_have_decl=0
15113
fi
15114

15115 15116
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_SNPRINTF $ac_have_decl
15117
_ACEOF
15118 15119 15120 15121 15122
ac_fn_c_check_decl "$LINENO" "vsnprintf" "ac_cv_have_decl_vsnprintf" "$ac_includes_default"
if test "x$ac_cv_have_decl_vsnprintf" = xyes; then :
  ac_have_decl=1
else
  ac_have_decl=0
15123 15124
fi

15125 15126 15127
cat >>confdefs.h <<_ACEOF
#define HAVE_DECL_VSNPRINTF $ac_have_decl
_ACEOF
15128

15129

15130

15131 15132 15133 15134 15135 15136
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for isinf" >&5
$as_echo_n "checking for isinf... " >&6; }
if ${ac_cv_func_isinf+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15137
/* end confdefs.h.  */
15138

15139 15140
#include <math.h>
double glob_double;
15141 15142 15143 15144

int
main ()
{
15145
return isinf(glob_double) ? 0 : 1;
15146 15147 15148 15149
  ;
  return 0;
}
_ACEOF
15150 15151
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_func_isinf=yes
15152
else
15153
  ac_cv_func_isinf=no
15154
fi
15155 15156
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
15157
fi
15158 15159
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_isinf" >&5
$as_echo "$ac_cv_func_isinf" >&6; }
15160

15161
if test $ac_cv_func_isinf = yes ; then
15162

15163
$as_echo "#define HAVE_ISINF 1" >>confdefs.h
15164 15165

else
15166 15167 15168 15169 15170
  case " $LIBOBJS " in
  *" isinf.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS isinf.$ac_objext"
 ;;
esac
15171

15172 15173 15174 15175 15176 15177 15178 15179
  # Look for a way to implement a substitute for isinf()
  for ac_func in fpclass fp_class fp_class_d class
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
15180
_ACEOF
15181
 break
15182
fi
15183
done
15184

15185
fi
15186

15187 15188 15189 15190 15191
# Some versions of libedit contain strlcpy(); so disregard that library while
# checking for these standard libc functions.
pgac_save_LIBS="$LIBS"
LIBS=`echo "$LIBS" | sed -e 's/-ledit//g' -e 's/-lreadline//g'`

15192 15193 15194
# net-snmp has the same problem..
LIBS=`echo "$LIBS" | sed -e 's/-lnetsnmp//g'`

15195 15196 15197
ac_fn_c_check_func "$LINENO" "crypt" "ac_cv_func_crypt"
if test "x$ac_cv_func_crypt" = xyes; then :
  $as_echo "#define HAVE_CRYPT 1" >>confdefs.h
15198

15199
else
15200 15201 15202 15203 15204
  case " $LIBOBJS " in
  *" crypt.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS crypt.$ac_objext"
 ;;
esac
15205

15206
fi
T
Tatsuo Ishii 已提交
15207

15208 15209 15210
ac_fn_c_check_func "$LINENO" "fseeko" "ac_cv_func_fseeko"
if test "x$ac_cv_func_fseeko" = xyes; then :
  $as_echo "#define HAVE_FSEEKO 1" >>confdefs.h
15211

15212 15213 15214 15215 15216 15217
else
  case " $LIBOBJS " in
  *" fseeko.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS fseeko.$ac_objext"
 ;;
esac
15218

15219
fi
15220

15221 15222 15223
ac_fn_c_check_func "$LINENO" "getopt" "ac_cv_func_getopt"
if test "x$ac_cv_func_getopt" = xyes; then :
  $as_echo "#define HAVE_GETOPT 1" >>confdefs.h
15224

15225 15226 15227 15228 15229 15230
else
  case " $LIBOBJS " in
  *" getopt.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt.$ac_objext"
 ;;
esac
15231

15232
fi
15233

15234 15235 15236
ac_fn_c_check_func "$LINENO" "getpeereid" "ac_cv_func_getpeereid"
if test "x$ac_cv_func_getpeereid" = xyes; then :
  $as_echo "#define HAVE_GETPEEREID 1" >>confdefs.h
15237

15238 15239 15240 15241 15242
else
  case " $LIBOBJS " in
  *" getpeereid.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getpeereid.$ac_objext"
 ;;
15243 15244
esac

15245 15246
fi

15247 15248 15249 15250
ac_fn_c_check_func "$LINENO" "getrusage" "ac_cv_func_getrusage"
if test "x$ac_cv_func_getrusage" = xyes; then :
  $as_echo "#define HAVE_GETRUSAGE 1" >>confdefs.h

15251
else
15252 15253 15254 15255 15256
  case " $LIBOBJS " in
  *" getrusage.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getrusage.$ac_objext"
 ;;
esac
15257

15258 15259
fi

15260 15261 15262 15263
ac_fn_c_check_func "$LINENO" "inet_aton" "ac_cv_func_inet_aton"
if test "x$ac_cv_func_inet_aton" = xyes; then :
  $as_echo "#define HAVE_INET_ATON 1" >>confdefs.h

15264
else
15265 15266 15267 15268 15269
  case " $LIBOBJS " in
  *" inet_aton.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS inet_aton.$ac_objext"
 ;;
esac
15270

15271 15272 15273 15274 15275
fi

ac_fn_c_check_func "$LINENO" "random" "ac_cv_func_random"
if test "x$ac_cv_func_random" = xyes; then :
  $as_echo "#define HAVE_RANDOM 1" >>confdefs.h
15276 15277

else
15278 15279 15280 15281 15282
  case " $LIBOBJS " in
  *" random.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS random.$ac_objext"
 ;;
esac
15283

15284
fi
15285 15286 15287 15288 15289

ac_fn_c_check_func "$LINENO" "rint" "ac_cv_func_rint"
if test "x$ac_cv_func_rint" = xyes; then :
  $as_echo "#define HAVE_RINT 1" >>confdefs.h

T
Tatsuo Ishii 已提交
15290
else
15291 15292 15293 15294 15295
  case " $LIBOBJS " in
  *" rint.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS rint.$ac_objext"
 ;;
esac
15296

15297
fi
15298

15299 15300 15301
ac_fn_c_check_func "$LINENO" "srandom" "ac_cv_func_srandom"
if test "x$ac_cv_func_srandom" = xyes; then :
  $as_echo "#define HAVE_SRANDOM 1" >>confdefs.h
15302 15303

else
15304 15305 15306 15307 15308
  case " $LIBOBJS " in
  *" srandom.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS srandom.$ac_objext"
 ;;
esac
15309

15310
fi
15311 15312 15313 15314 15315

ac_fn_c_check_func "$LINENO" "strdup" "ac_cv_func_strdup"
if test "x$ac_cv_func_strdup" = xyes; then :
  $as_echo "#define HAVE_STRDUP 1" >>confdefs.h

15316
else
15317 15318 15319 15320 15321
  case " $LIBOBJS " in
  *" strdup.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strdup.$ac_objext"
 ;;
esac
15322

15323 15324
fi

15325 15326 15327 15328
ac_fn_c_check_func "$LINENO" "strerror" "ac_cv_func_strerror"
if test "x$ac_cv_func_strerror" = xyes; then :
  $as_echo "#define HAVE_STRERROR 1" >>confdefs.h

15329
else
15330 15331 15332 15333 15334
  case " $LIBOBJS " in
  *" strerror.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strerror.$ac_objext"
 ;;
esac
15335

15336
fi
T
Tatsuo Ishii 已提交
15337

15338 15339 15340
ac_fn_c_check_func "$LINENO" "strlcat" "ac_cv_func_strlcat"
if test "x$ac_cv_func_strlcat" = xyes; then :
  $as_echo "#define HAVE_STRLCAT 1" >>confdefs.h
15341 15342

else
15343 15344 15345 15346 15347
  case " $LIBOBJS " in
  *" strlcat.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strlcat.$ac_objext"
 ;;
esac
15348

M
Michael Meskes 已提交
15349
fi
15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361

ac_fn_c_check_func "$LINENO" "strlcpy" "ac_cv_func_strlcpy"
if test "x$ac_cv_func_strlcpy" = xyes; then :
  $as_echo "#define HAVE_STRLCPY 1" >>confdefs.h

else
  case " $LIBOBJS " in
  *" strlcpy.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strlcpy.$ac_objext"
 ;;
esac

15362
fi
15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374

ac_fn_c_check_func "$LINENO" "strtol" "ac_cv_func_strtol"
if test "x$ac_cv_func_strtol" = xyes; then :
  $as_echo "#define HAVE_STRTOL 1" >>confdefs.h

else
  case " $LIBOBJS " in
  *" strtol.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strtol.$ac_objext"
 ;;
esac

15375
fi
15376 15377 15378 15379 15380

ac_fn_c_check_func "$LINENO" "strtoul" "ac_cv_func_strtoul"
if test "x$ac_cv_func_strtoul" = xyes; then :
  $as_echo "#define HAVE_STRTOUL 1" >>confdefs.h

15381
else
15382 15383 15384 15385 15386 15387
  case " $LIBOBJS " in
  *" strtoul.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS strtoul.$ac_objext"
 ;;
esac

15388
fi
15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400

ac_fn_c_check_func "$LINENO" "unsetenv" "ac_cv_func_unsetenv"
if test "x$ac_cv_func_unsetenv" = xyes; then :
  $as_echo "#define HAVE_UNSETENV 1" >>confdefs.h

else
  case " $LIBOBJS " in
  *" unsetenv.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS unsetenv.$ac_objext"
 ;;
esac

T
Tatsuo Ishii 已提交
15401
fi
15402 15403


T
Tatsuo Ishii 已提交
15404

15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417
case $host_os in

        # Windows uses a specialised env handler
        mingw*)

$as_echo "#define HAVE_UNSETENV 1" >>confdefs.h

                ac_cv_func_unsetenv=yes;;
        *)
                ac_fn_c_check_func "$LINENO" "unsetenv" "ac_cv_func_unsetenv"
if test "x$ac_cv_func_unsetenv" = xyes; then :
  $as_echo "#define HAVE_UNSETENV 1" >>confdefs.h

15418
else
15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440
  case " $LIBOBJS " in
  *" unsetenv.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS unsetenv.$ac_objext"
 ;;
esac

fi


		;;
esac

# System's version of getaddrinfo(), if any, may be used only if we found
# a definition for struct addrinfo; see notes in src/include/getaddrinfo.h.
# (Note: the AC_REPLACE_FUNCS probe fails on Windows, where the available
# versions of getaddrinfo don't follow normal C call protocol.  This is OK
# because we want to use our own getaddrinfo.c on Windows anyway.)
if test x"$ac_cv_type_struct_addrinfo" = xyes ; then
  ac_fn_c_check_func "$LINENO" "getaddrinfo" "ac_cv_func_getaddrinfo"
if test "x$ac_cv_func_getaddrinfo" = xyes; then :
  $as_echo "#define HAVE_GETADDRINFO 1" >>confdefs.h

15441
else
15442 15443 15444 15445 15446
  case " $LIBOBJS " in
  *" getaddrinfo.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getaddrinfo.$ac_objext"
 ;;
esac
15447 15448

fi
15449 15450 15451 15452 15453 15454 15455 15456 15457


else
  case " $LIBOBJS " in
  *" getaddrinfo.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getaddrinfo.$ac_objext"
 ;;
esac

15458 15459
fi

15460
# Similarly, use system's getopt_long() only if system provides struct option.
15461 15462 15463 15464 15465 15466 15467
# Solaris' getopt() doesn't do what we want for long options, so always use
# our versions on that platform.
if test "$PORTNAME" = "solaris"; then
  case " $LIBOBJS " in
  *" getopt.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt.$ac_objext"
 ;;
15468
esac
T
Tatsuo Ishii 已提交
15469

15470 15471 15472 15473 15474 15475 15476
  case " $LIBOBJS " in
  *" getopt_long.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt_long.$ac_objext"
 ;;
esac

elif test x"$ac_cv_type_struct_option" = xyes ; then
15477 15478 15479 15480
  ac_fn_c_check_func "$LINENO" "getopt_long" "ac_cv_func_getopt_long"
if test "x$ac_cv_func_getopt_long" = xyes; then :
  $as_echo "#define HAVE_GETOPT_LONG 1" >>confdefs.h

15481
else
15482 15483 15484 15485 15486 15487 15488
  case " $LIBOBJS " in
  *" getopt_long.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt_long.$ac_objext"
 ;;
esac

fi
15489 15490 15491


else
15492 15493 15494 15495 15496
  case " $LIBOBJS " in
  *" getopt_long.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt_long.$ac_objext"
 ;;
esac
15497 15498

fi
15499

15500 15501 15502 15503 15504 15505 15506 15507
# mingw has adopted a GNU-centric interpretation of optind/optreset,
# so always use our version on Windows.
if test "$PORTNAME" = "win32"; then
  case " $LIBOBJS " in
  *" getopt.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt.$ac_objext"
 ;;
esac
15508

15509 15510 15511 15512 15513 15514 15515 15516
  case " $LIBOBJS " in
  *" getopt_long.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS getopt_long.$ac_objext"
 ;;
esac

fi

15517 15518 15519 15520 15521 15522
# Win32 support
if test "$PORTNAME" = "win32"; then
ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday"
if test "x$ac_cv_func_gettimeofday" = xyes; then :
  $as_echo "#define HAVE_GETTIMEOFDAY 1" >>confdefs.h

15523
else
15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566
  case " $LIBOBJS " in
  *" gettimeofday.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS gettimeofday.$ac_objext"
 ;;
esac

fi


case " $LIBOBJS " in
  *" kill.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS kill.$ac_objext"
 ;;
esac

case " $LIBOBJS " in
  *" open.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS open.$ac_objext"
 ;;
esac

case " $LIBOBJS " in
  *" rand.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS rand.$ac_objext"
 ;;
esac

case " $LIBOBJS " in
  *" win32env.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS win32env.$ac_objext"
 ;;
esac

case " $LIBOBJS " in
  *" win32error.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS win32error.$ac_objext"
 ;;
esac


$as_echo "#define HAVE_SYMLINK 1" >>confdefs.h

fi
15567

15568 15569 15570
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sigsetjmp" >&5
$as_echo_n "checking for sigsetjmp... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15571
/* end confdefs.h.  */
15572
#include <setjmp.h>
15573 15574 15575
int
main ()
{
15576
sigjmp_buf x; sigsetjmp(x, 1);
15577 15578 15579 15580
  ;
  return 0;
}
_ACEOF
15581
if ac_fn_c_try_link "$LINENO"; then :
15582

15583 15584 15585 15586
$as_echo "#define HAVE_SIGSETJMP 1" >>confdefs.h

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
15587
else
15588 15589
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
15590
fi
15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext

ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "#include <signal.h>
/* NetBSD declares sys_siglist in unistd.h.  */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

"
if test "x$ac_cv_have_decl_sys_siglist" = xyes; then :
  ac_have_decl=1
else
  ac_have_decl=0
15605
fi
15606

15607
cat >>confdefs.h <<_ACEOF
15608
#define HAVE_DECL_SYS_SIGLIST $ac_have_decl
15609 15610 15611 15612
_ACEOF



15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623
ac_fn_c_check_func "$LINENO" "syslog" "ac_cv_func_syslog"
if test "x$ac_cv_func_syslog" = xyes; then :
  ac_fn_c_check_header_mongrel "$LINENO" "syslog.h" "ac_cv_header_syslog_h" "$ac_includes_default"
if test "x$ac_cv_header_syslog_h" = xyes; then :

$as_echo "#define HAVE_SYSLOG 1" >>confdefs.h

fi


fi
15624

15625 15626 15627 15628 15629

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for opterr" >&5
$as_echo_n "checking for opterr... " >&6; }
if ${pgac_cv_var_int_opterr+:} false; then :
  $as_echo_n "(cached) " >&6
15630
else
15631
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15632
/* end confdefs.h.  */
15633
#include <unistd.h>
15634 15635 15636
int
main ()
{
15637
extern int opterr; opterr = 1;
15638 15639 15640 15641
  ;
  return 0;
}
_ACEOF
15642 15643
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_var_int_opterr=yes
15644
else
15645 15646 15647 15648
  pgac_cv_var_int_opterr=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
15649
fi
15650 15651 15652 15653 15654 15655
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_var_int_opterr" >&5
$as_echo "$pgac_cv_var_int_opterr" >&6; }
if test x"$pgac_cv_var_int_opterr" = x"yes"; then

$as_echo "#define HAVE_INT_OPTERR 1" >>confdefs.h

15656 15657
fi

15658 15659 15660 15661
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for optreset" >&5
$as_echo_n "checking for optreset... " >&6; }
if ${pgac_cv_var_int_optreset+:} false; then :
  $as_echo_n "(cached) " >&6
15662
else
15663
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15664
/* end confdefs.h.  */
15665
#include <unistd.h>
15666 15667 15668
int
main ()
{
15669
extern int optreset; optreset = 1;
15670 15671 15672 15673
  ;
  return 0;
}
_ACEOF
15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_var_int_optreset=yes
else
  pgac_cv_var_int_optreset=no
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_var_int_optreset" >&5
$as_echo "$pgac_cv_var_int_optreset" >&6; }
if test x"$pgac_cv_var_int_optreset" = x"yes"; then

$as_echo "#define HAVE_INT_OPTRESET 1" >>confdefs.h

fi

for ac_func in strtoll strtoq
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
15697
_ACEOF
15698 15699 15700
 break
fi
done
15701

15702 15703 15704 15705 15706 15707 15708
for ac_func in strtoull strtouq
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
15709
_ACEOF
15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723
 break
fi
done


# Check for one of atexit() or on_exit()
for ac_func in atexit
do :
  ac_fn_c_check_func "$LINENO" "atexit" "ac_cv_func_atexit"
if test "x$ac_cv_func_atexit" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_ATEXIT 1
_ACEOF

15724
else
15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736
  for ac_func in on_exit
do :
  ac_fn_c_check_func "$LINENO" "on_exit" "ac_cv_func_on_exit"
if test "x$ac_cv_func_on_exit" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_ON_EXIT 1
_ACEOF

else
  as_fn_error $? "neither atexit() nor on_exit() found" "$LINENO" 5
fi
done
15737

15738
fi
15739 15740 15741 15742 15743 15744 15745
done


ac_fn_c_check_func "$LINENO" "fseeko" "ac_cv_func_fseeko"
if test "x$ac_cv_func_fseeko" = xyes; then :
  $as_echo "#define HAVE_FSEEKO 1" >>confdefs.h

15746
else
15747 15748 15749 15750 15751
  case " $LIBOBJS " in
  *" fseeko.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS fseeko.$ac_objext"
 ;;
esac
15752

15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771
fi


case $host_os in
	# BSD/OS & NetBSD use a custom fseeko/ftello built on fsetpos/fgetpos
	# Mingw uses macros to access Win32 API calls
	bsdi*|netbsd*|mingw*)

$as_echo "#define HAVE_FSEEKO 1" >>confdefs.h

		ac_cv_func_fseeko=yes;;
	*)
		{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
if ${ac_cv_sys_largefile_source+:} false; then :
  $as_echo_n "(cached) " >&6
else
  while :; do
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15772
/* end confdefs.h.  */
15773 15774
#include <sys/types.h> /* for off_t */
     #include <stdio.h>
15775 15776 15777
int
main ()
{
15778 15779
int (*fp) (FILE *, off_t, int) = fseeko;
     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
15780 15781 15782 15783
  ;
  return 0;
}
_ACEOF
15784 15785 15786 15787 15788 15789
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_sys_largefile_source=no; break
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15790
/* end confdefs.h.  */
15791 15792 15793
#define _LARGEFILE_SOURCE 1
#include <sys/types.h> /* for off_t */
     #include <stdio.h>
15794 15795 15796
int
main ()
{
15797 15798
int (*fp) (FILE *, off_t, int) = fseeko;
     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
15799 15800 15801 15802
  ;
  return 0;
}
_ACEOF
15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_sys_largefile_source=1; break
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
  ac_cv_sys_largefile_source=unknown
  break
done
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_source" >&5
$as_echo "$ac_cv_sys_largefile_source" >&6; }
case $ac_cv_sys_largefile_source in #(
  no | unknown) ;;
  *)
cat >>confdefs.h <<_ACEOF
#define _LARGEFILE_SOURCE $ac_cv_sys_largefile_source
_ACEOF
;;
esac
rm -rf conftest*

# We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
# in glibc 2.1.3, but that breaks too many other things.
# If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
if test $ac_cv_sys_largefile_source != unknown; then

$as_echo "#define HAVE_FSEEKO 1" >>confdefs.h

fi
;;
esac

15835 15836 15837 15838 15839 15840
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin locking functions" >&5
$as_echo_n "checking for builtin locking functions... " >&6; }
if ${pgac_cv_gcc_int_atomics+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15841
/* end confdefs.h.  */
15842

15843 15844 15845
int
main ()
{
15846 15847 15848
int lock = 0;
   __sync_lock_test_and_set(&lock, 1);
   __sync_lock_release(&lock);
15849 15850 15851 15852
  ;
  return 0;
}
_ACEOF
15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_int_atomics="yes"
else
  pgac_cv_gcc_int_atomics="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_int_atomics" >&5
$as_echo "$pgac_cv_gcc_int_atomics" >&6; }
if test x"$pgac_cv_gcc_int_atomics" = x"yes"; then

$as_echo "#define HAVE_GCC_INT_ATOMICS 1" >>confdefs.h

fi

# Lastly, restore full LIBS list and check for readline/libedit symbols
LIBS="$LIBS_including_readline"

if test "$with_readline" = yes; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rl_completion_append_character" >&5
$as_echo_n "checking for rl_completion_append_character... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15876
/* end confdefs.h.  */
15877 15878 15879 15880 15881 15882 15883
#include <stdio.h>
#ifdef HAVE_READLINE_READLINE_H
# include <readline/readline.h>
#elif defined(HAVE_READLINE_H)
# include <readline.h>
#endif

15884 15885 15886
int
main ()
{
15887
rl_completion_append_character = 'x';
15888 15889 15890 15891
  ;
  return 0;
}
_ACEOF
15892 15893 15894 15895 15896 15897
if ac_fn_c_try_link "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }

$as_echo "#define HAVE_RL_COMPLETION_APPEND_CHARACTER 1" >>confdefs.h

15898
else
15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
  for ac_func in rl_completion_matches rl_filename_completion_function
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF
15912

15913
fi
15914 15915 15916 15917 15918 15919 15920 15921 15922
done

  for ac_func in replace_history_entry
do :
  ac_fn_c_check_func "$LINENO" "replace_history_entry" "ac_cv_func_replace_history_entry"
if test "x$ac_cv_func_replace_history_entry" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_REPLACE_HISTORY_ENTRY 1
_ACEOF
15923

15924
fi
15925 15926
done

15927
fi
15928 15929


15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947
#
# Pthreads
#
# For each platform, we need to know about any special compile and link
# libraries, and whether the normal C function names are thread-safe.
# See the comment at the top of src/port/thread.c for more information.
# WIN32 doesn't need the pthread tests;  it always uses threads
if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then



ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu

acx_pthread_ok=no
15948

15949 15950 15951
# We used to check for pthread.h first, but this fails if pthread.h
# requires special compiler flags (e.g. on True64 or Sequent).
# It gets checked for in the link test anyway.
15952

15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963
# First of all, check if the user has set any of the PTHREAD_LIBS,
# etcetera environment variables, and if threads linking works using
# them:
if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then
        save_CFLAGS="$CFLAGS"
        CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
        save_LIBS="$LIBS"
        LIBS="$PTHREAD_LIBS $LIBS"
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5
$as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; }
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15964
/* end confdefs.h.  */
15965 15966 15967 15968 15969 15970 15971 15972

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char pthread_join ();
15973 15974 15975
int
main ()
{
15976
return pthread_join ();
15977 15978 15979 15980
  ;
  return 0;
}
_ACEOF
15981 15982
if ac_fn_c_try_link "$LINENO"; then :
  acx_pthread_ok=yes
15983
fi
15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5
$as_echo "$acx_pthread_ok" >&6; }
        if test x"$acx_pthread_ok" = xno; then
                PTHREAD_LIBS=""
                PTHREAD_CFLAGS=""
        fi
        LIBS="$save_LIBS"
        CFLAGS="$save_CFLAGS"
fi

# We must check for the threads library under a number of different
# names; the ordering is very important because some systems
# (e.g. DEC) have both -lpthread and -lpthreads, where one of the
# libraries is broken (non-POSIX).

# Create a list of thread flags to try.  Items starting with a "-" are
# C compiler flags, and other items are library names, except for "none"
# which indicates that we try without any flags at all, and "pthread-config"
# which is a program returning the flags for the Pth emulation library.

acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config pthreadGC2"

# The ordering *is* (sometimes) important.  Some notes on the
# individual items follow:

# pthreads: AIX (must check this before -lpthread)
# none: in case threads are in libc; should be tried before -Kthread and
#       other compiler flags to prevent continual compiler warnings
# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)
# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)
# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread)
# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads)
# -pthreads: Solaris/gcc
# -mthreads: Mingw32/gcc, Lynx/gcc
# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it
#      doesn't hurt to check since this sometimes defines pthreads too;
#      also defines -D_REENTRANT)
# pthread: Linux, etcetera
# --thread-safe: KAI C++
# pthread-config: use pthread-config program (for GNU Pth library)

case "${host_cpu}-${host_os}" in
        *solaris*)

        # On Solaris (at least, for some versions), libc contains stubbed
        # (non-functional) versions of the pthreads routines, so link-based
        # tests will erroneously succeed.  (We need to link with -pthread or
        # -lpthread.)  (The stubs are missing pthread_cleanup_push, or rather
        # a function called by this macro, so we could check for that, but
        # who knows whether they'll stub that too in a future libc.)  So,
        # we'll just look for -pthreads and -lpthread first:

        acx_pthread_flags="-pthread -pthreads pthread -mt $acx_pthread_flags"
        ;;
16040 16041
esac

16042 16043
if test x"$acx_pthread_ok" = xno; then
for flag in $acx_pthread_flags; do
16044

16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067
        tryPTHREAD_CFLAGS=""
        tryPTHREAD_LIBS=""
        case $flag in
                none)
                { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5
$as_echo_n "checking whether pthreads work without any flags... " >&6; }
                ;;

                -*)
                { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5
$as_echo_n "checking whether pthreads work with $flag... " >&6; }
                tryPTHREAD_CFLAGS="$flag"
                ;;

                pthread-config)
                # skip this if we already have flags defined, for PostgreSQL
                if test x"$PTHREAD_CFLAGS" != x -o x"$PTHREAD_LIBS" != x; then continue; fi
                # Extract the first word of "pthread-config", so it can be a program name with args.
set dummy pthread-config; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_acx_pthread_config+:} false; then :
  $as_echo_n "(cached) " >&6
16068
else
16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085
  if test -n "$acx_pthread_config"; then
  ac_cv_prog_acx_pthread_config="$acx_pthread_config" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_acx_pthread_config="yes"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
16086

16087
  test -z "$ac_cv_prog_acx_pthread_config" && ac_cv_prog_acx_pthread_config="no"
M
Michael Meskes 已提交
16088
fi
16089
fi
16090 16091 16092 16093
acx_pthread_config=$ac_cv_prog_acx_pthread_config
if test -n "$acx_pthread_config"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_config" >&5
$as_echo "$acx_pthread_config" >&6; }
16094
else
16095 16096
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
16097 16098 16099
fi


16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126
                if test x"$acx_pthread_config" = xno; then continue; fi
                tryPTHREAD_CFLAGS="`pthread-config --cflags`"
                tryPTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`"
                ;;

                *)
                { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5
$as_echo_n "checking for the pthreads library -l$flag... " >&6; }
                tryPTHREAD_LIBS="-l$flag"
                ;;
        esac

        save_LIBS="$LIBS"
        save_CFLAGS="$CFLAGS"
        LIBS="$tryPTHREAD_LIBS $PTHREAD_LIBS $LIBS"
        CFLAGS="$CFLAGS $PTHREAD_CFLAGS $tryPTHREAD_CFLAGS"

        # Check for various functions.  We must include pthread.h,
        # since some functions may be macros.  (On the Sequent, we
        # need a special flag -Kthread to make this header compile.)
        # We check for pthread_join because it is in -lpthread on IRIX
        # while pthread_create is in libc.  We check for pthread_attr_init
        # due to DEC craziness with -lpthreads.  We check for
        # pthread_cleanup_push because it is one of the few pthread
        # functions on Solaris that doesn't have a non-functional libc stub.
        # We try pthread_create on general principles.
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16127
/* end confdefs.h.  */
16128
#include <pthread.h>
16129 16130
                     static void routine(void *a) { a = 0; }
                     static void *start_routine(void *a) { return a; }
16131 16132 16133
int
main ()
{
16134 16135 16136 16137 16138 16139
pthread_t th; pthread_attr_t attr;
                     pthread_create(&th, 0, start_routine, 0);
                     pthread_join(th, 0);
                     pthread_attr_init(&attr);
                     pthread_cleanup_push(routine, 0);
                     pthread_cleanup_pop(0);
16140 16141 16142 16143
  ;
  return 0;
}
_ACEOF
16144 16145
if ac_fn_c_try_link "$LINENO"; then :
  acx_pthread_ok=yes
16146
else
16147
  acx_pthread_ok=no
16148
fi
16149 16150
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
16151

16152 16153 16154 16155
        if test "x$acx_pthread_ok" = xyes; then
            # Don't use options that are ignored by the compiler.
            # We find them by checking stderror.
            cat >conftest.$ac_ext <<_ACEOF
16156
int
16157
main (int argc, char **argv)
16158
{
16159 16160
  (void) argc;
  (void) argv;
16161 16162 16163
  return 0;
}
_ACEOF
16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174
            rm -f conftest.$ac_objext conftest$ac_exeext
            # Check both linking and compiling, because they might tolerate different options.
            if test "`(eval $ac_link 2>&1 1>&5)`" = "" && test "`(eval $ac_compile 2>&1 1>&5)`" = ""; then
                # we continue with more flags because Linux needs -lpthread
                # for libpq builds on PostgreSQL.  The test above only
                # tests for building binaries, not shared libraries.
                PTHREAD_LIBS=" $tryPTHREAD_LIBS $PTHREAD_LIBS"
                PTHREAD_CFLAGS="$PTHREAD_CFLAGS $tryPTHREAD_CFLAGS"
            else   acx_pthread_ok=no
            fi
        fi
16175

16176 16177
        LIBS="$save_LIBS"
        CFLAGS="$save_CFLAGS"
16178

16179 16180 16181
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acx_pthread_ok" >&5
$as_echo "$acx_pthread_ok" >&6; }
done
16182
fi
16183

16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195
# Various other checks:
if test "x$acx_pthread_ok" = xyes; then
        save_LIBS="$LIBS"
        LIBS="$PTHREAD_LIBS $LIBS"
        save_CFLAGS="$CFLAGS"
        CFLAGS="$CFLAGS $PTHREAD_CFLAGS"

        # Detect AIX lossage: threads are created detached by default
        # and the JOINABLE attribute has a nonstandard name (UNDETACHED).
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5
$as_echo_n "checking for joinable pthread attribute... " >&6; }
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16196
/* end confdefs.h.  */
16197
#include <pthread.h>
16198 16199 16200
int
main ()
{
16201
int attr=PTHREAD_CREATE_JOINABLE;
16202 16203 16204 16205
  ;
  return 0;
}
_ACEOF
16206 16207 16208 16209 16210 16211 16212 16213 16214
if ac_fn_c_try_link "$LINENO"; then :
  ok=PTHREAD_CREATE_JOINABLE
else
  ok=unknown
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
        if test x"$ok" = xunknown; then
                cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16215
/* end confdefs.h.  */
16216
#include <pthread.h>
16217 16218 16219
int
main ()
{
16220
int attr=PTHREAD_CREATE_UNDETACHED;
16221 16222 16223 16224
  ;
  return 0;
}
_ACEOF
16225 16226
if ac_fn_c_try_link "$LINENO"; then :
  ok=PTHREAD_CREATE_UNDETACHED
16227
else
16228
  ok=unknown
16229
fi
16230 16231 16232 16233
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
        fi
        if test x"$ok" != xPTHREAD_CREATE_JOINABLE; then
16234

16235
$as_echo "#define PTHREAD_CREATE_JOINABLE \$ok" >>confdefs.h
16236

16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271
        fi
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ok}" >&5
$as_echo "${ok}" >&6; }
        if test x"$ok" = xunknown; then
                { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: we do not know how to create joinable pthreads" >&5
$as_echo "$as_me: WARNING: we do not know how to create joinable pthreads" >&2;}
        fi

        { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5
$as_echo_n "checking if more special flags are required for pthreads... " >&6; }
        flag=no
# We always add these in PostgreSQL
#       case "${host_cpu}-${host_os}" in
#               *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";;
#               *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";;
#       esac
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5
$as_echo "${flag}" >&6; }
        if test "x$flag" != xno; then
                PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS"
        fi

        LIBS="$save_LIBS"
        CFLAGS="$save_CFLAGS"

# Supporting cc_r would require a special CC in all places that
# use libpq, and that is ugly, so we don't do it.  Users can still
# define their compiler as cc_r to do thread builds of everything.
        # More AIX lossage: must compile with cc_r
        # Extract the first word of "cc_r", so it can be a program name with args.
set dummy cc_r; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_PTHREAD_CC+:} false; then :
  $as_echo_n "(cached) " >&6
16272
else
16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289
  if test -n "$PTHREAD_CC"; then
  ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_PTHREAD_CC="cc_r"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS
16290

16291
  test -z "$ac_cv_prog_PTHREAD_CC" && ac_cv_prog_PTHREAD_CC="${CC}"
16292
fi
16293 16294 16295 16296 16297
fi
PTHREAD_CC=$ac_cv_prog_PTHREAD_CC
if test -n "$PTHREAD_CC"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5
$as_echo "$PTHREAD_CC" >&6; }
M
Michael Meskes 已提交
16298
else
16299 16300 16301 16302 16303
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


16304
else
16305 16306
        PTHREAD_CC="$CC"
fi
16307

16308

16309 16310 16311 16312 16313 16314 16315 16316 16317



# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
if test x"$acx_pthread_ok" = xyes; then

$as_echo "#define HAVE_PTHREAD 1" >>confdefs.h

        :
16318
else
16319
        acx_pthread_ok=no
16320

16321
fi
16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341
ac_ext=c
ac_cpp='$CPP $CPPFLAGS'
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
ac_compiler_gnu=$ac_cv_c_compiler_gnu

	# set thread flags

# Some platforms use these, so just define them.  They can't hurt if they
# are not supported.  For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
# enables 5-arg getpwuid_r, among other things.
PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"


# At this point, we don't want to muck with the compiler name for threading.
# Let's see who fails, perhaps AIX.  2004-04-23
if test "$PTHREAD_CC" != "$CC"; then
as_fn_error $? "
PostgreSQL does not support platforms that require a special compiler
for thread safety." "$LINENO" 5
M
Michael Meskes 已提交
16342
fi
16343 16344 16345 16346 16347

if test "$THREAD_SUPPORT" = no; then
as_fn_error $? "cannot enable threads on this platform
This platform is known to not support thread-safe programs.  For details,
compile and run src/bin/pg_thread_test." "$LINENO" 5
16348
fi
16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359

# Check for *_r functions
_CFLAGS="$CFLAGS"
_LIBS="$LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
LIBS="$LIBS $PTHREAD_LIBS"

if test "$PORTNAME" != "win32"; then
ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
if test "x$ac_cv_header_pthread_h" = xyes; then :

16360
else
16361
  as_fn_error $? "pthread.h not found, required for --enable-thread-safety" "$LINENO" 5
16362
fi
16363 16364


16365
fi
16366 16367 16368 16369 16370 16371 16372 16373

for ac_func in strerror_r getpwuid_r gethostbyname_r
do :
  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
  cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
16374 16375
_ACEOF

16376 16377
fi
done
16378

16379 16380 16381 16382 16383 16384

# Do test here with the proper thread flags
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpwuid_r takes a fifth argument" >&5
$as_echo_n "checking whether getpwuid_r takes a fifth argument... " >&6; }
if ${pgac_cv_func_getpwuid_r_5arg+:} false; then :
  $as_echo_n "(cached) " >&6
16385
else
16386
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16387
/* end confdefs.h.  */
16388 16389
#include <sys/types.h>
#include <pwd.h>
16390 16391 16392
int
main ()
{
16393 16394 16395 16396 16397
uid_t uid = 0;
struct passwd *space = 0;
char *buf = 0;
size_t bufsize = 0;
struct passwd **result = 0;
16398
getpwuid_r(uid, space, buf, bufsize, result);
16399 16400 16401 16402
  ;
  return 0;
}
_ACEOF
16403 16404
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_func_getpwuid_r_5arg=yes
16405
else
16406
  pgac_cv_func_getpwuid_r_5arg=no
16407
fi
16408
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16409
fi
16410 16411 16412
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_func_getpwuid_r_5arg" >&5
$as_echo "$pgac_cv_func_getpwuid_r_5arg" >&6; }
if test x"$pgac_cv_func_getpwuid_r_5arg" = xyes ; then
16413

16414
$as_echo "#define GETPWUID_R_5ARG /**/" >>confdefs.h
16415

16416 16417 16418 16419 16420 16421 16422 16423
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror_r returns int" >&5
$as_echo_n "checking whether strerror_r returns int... " >&6; }
if ${pgac_cv_func_strerror_r_int+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16424
/* end confdefs.h.  */
16425
#include <string.h>
16426 16427 16428
int
main ()
{
16429 16430 16431 16432 16433 16434
#ifndef _AIX
int strerror_r(int, char *, size_t);
#else
/* Older AIX has 'int' for the third argument so we don't test the args. */
int strerror_r();
#endif
16435 16436 16437 16438
  ;
  return 0;
}
_ACEOF
16439 16440
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_func_strerror_r_int=yes
16441
else
16442 16443 16444 16445 16446 16447 16448 16449 16450
  pgac_cv_func_strerror_r_int=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_func_strerror_r_int" >&5
$as_echo "$pgac_cv_func_strerror_r_int" >&6; }
if test x"$pgac_cv_func_strerror_r_int" = xyes ; then

$as_echo "#define STRERROR_R_INT /**/" >>confdefs.h
16451

16452
fi
16453 16454 16455 16456 16457


CFLAGS="$_CFLAGS"
LIBS="$_LIBS"

16458
else
16459 16460 16461 16462
# do not use values from template file
PTHREAD_CFLAGS=
PTHREAD_LIBS=
fi
16463

16464

16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479



# We can test for libldap_r only after we know PTHREAD_LIBS
if test "$with_ldap" = yes ; then
  _LIBS="$LIBS"
  if test "$PORTNAME" != "win32"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldap_bind in -lldap" >&5
$as_echo_n "checking for ldap_bind in -lldap... " >&6; }
if ${ac_cv_lib_ldap_ldap_bind+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lldap $EXTRA_LDAP_LIBS $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16480
/* end confdefs.h.  */
16481 16482 16483 16484 16485 16486 16487 16488

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char ldap_bind ();
16489 16490 16491
int
main ()
{
16492
return ldap_bind ();
16493 16494 16495 16496
  ;
  return 0;
}
_ACEOF
16497 16498
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_ldap_ldap_bind=yes
16499
else
16500
  ac_cv_lib_ldap_ldap_bind=no
16501
fi
16502 16503 16504
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
16505
fi
16506 16507 16508 16509 16510
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_ldap_bind" >&5
$as_echo "$ac_cv_lib_ldap_ldap_bind" >&6; }
if test "x$ac_cv_lib_ldap_ldap_bind" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBLDAP 1
16511
_ACEOF
16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527

  LIBS="-lldap $LIBS"

else
  as_fn_error $? "library 'ldap' is required for LDAP" "$LINENO" 5
fi

    LDAP_LIBS_BE="-lldap $EXTRA_LDAP_LIBS"
    if test "$enable_thread_safety" = yes; then
      # on some platforms ldap_r fails to link without PTHREAD_LIBS
      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldap_simple_bind in -lldap_r" >&5
$as_echo_n "checking for ldap_simple_bind in -lldap_r... " >&6; }
if ${ac_cv_lib_ldap_r_ldap_simple_bind+:} false; then :
  $as_echo_n "(cached) " >&6
else
  ac_check_lib_save_LIBS=$LIBS
16528
LIBS="-lldap_r $PTHREAD_CFLAGS $PTHREAD_LIBS $EXTRA_LDAP_LIBS $LIBS"
16529
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16530
/* end confdefs.h.  */
16531 16532 16533 16534 16535 16536 16537 16538

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char ldap_simple_bind ();
16539 16540 16541
int
main ()
{
16542
return ldap_simple_bind ();
16543 16544 16545 16546
  ;
  return 0;
}
_ACEOF
16547 16548
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_ldap_r_ldap_simple_bind=yes
16549
else
16550
  ac_cv_lib_ldap_r_ldap_simple_bind=no
16551
fi
16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ldap_r_ldap_simple_bind" >&5
$as_echo "$ac_cv_lib_ldap_r_ldap_simple_bind" >&6; }
if test "x$ac_cv_lib_ldap_r_ldap_simple_bind" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBLDAP_R 1
_ACEOF

  LIBS="-lldap_r $LIBS"

M
Michael Meskes 已提交
16565
else
16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577
  as_fn_error $? "library 'ldap_r' is required for LDAP" "$LINENO" 5
fi

      LDAP_LIBS_FE="-lldap_r $EXTRA_LDAP_LIBS"
    else
      LDAP_LIBS_FE="-lldap $EXTRA_LDAP_LIBS"
    fi
  else
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ldap_bind in -lwldap32" >&5
$as_echo_n "checking for ldap_bind in -lwldap32... " >&6; }
if ${ac_cv_lib_wldap32_ldap_bind+:} false; then :
  $as_echo_n "(cached) " >&6
16578
else
16579 16580 16581
  ac_check_lib_save_LIBS=$LIBS
LIBS="-lwldap32  $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16582
/* end confdefs.h.  */
16583 16584 16585 16586 16587 16588 16589 16590

/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
   builtin and then its argument prototype would still apply.  */
#ifdef __cplusplus
extern "C"
#endif
char ldap_bind ();
16591 16592 16593
int
main ()
{
16594
return ldap_bind ();
16595 16596 16597 16598
  ;
  return 0;
}
_ACEOF
16599 16600
if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_lib_wldap32_ldap_bind=yes
16601
else
16602
  ac_cv_lib_wldap32_ldap_bind=no
M
Michael Meskes 已提交
16603
fi
16604 16605 16606
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
16607
fi
16608 16609 16610 16611 16612 16613 16614 16615 16616
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_wldap32_ldap_bind" >&5
$as_echo "$ac_cv_lib_wldap32_ldap_bind" >&6; }
if test "x$ac_cv_lib_wldap32_ldap_bind" = xyes; then :
  cat >>confdefs.h <<_ACEOF
#define HAVE_LIBWLDAP32 1
_ACEOF

  LIBS="-lwldap32 $LIBS"

16617
else
16618
  as_fn_error $? "library 'wldap32' is required for LDAP" "$LINENO" 5
16619
fi
16620 16621 16622 16623 16624

    LDAP_LIBS_FE="-lwldap32"
    LDAP_LIBS_BE="-lwldap32"
  fi
  LIBS="$_LIBS"
16625
fi
16626 16627


16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638


# This test makes sure that run tests work at all.  Sometimes a shared
# library is found by the linker, but the runtime linker can't find it.
# This check should come after all modifications of compiler or linker
# variables, and before any other run tests.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking test program" >&5
$as_echo_n "checking test program... " >&6; }
if test "$cross_compiling" = yes; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: cross-compiling" >&5
$as_echo "cross-compiling" >&6; }
16639
else
16640 16641 16642
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
int main() { return 0; }
16643
_ACEOF
16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675
if ac_fn_c_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5
$as_echo "failed" >&6; }
as_fn_error $? "
Could not execute a simple test program.  This may be a problem
related to locating shared libraries.  Check the file 'config.log'
for the exact reason." "$LINENO" 5
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi


# --------------------
# Run tests below here
# --------------------

# Force use of our snprintf if system's doesn't do arg control
# See comment above at snprintf test for details.
if test "$enable_nls" = yes -a "$pgac_need_repl_snprintf" = no; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf supports argument control" >&5
$as_echo_n "checking whether printf supports argument control... " >&6; }
if ${pgac_cv_printf_arg_control+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test "$cross_compiling" = yes; then :
  pgac_cv_printf_arg_control=cross
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16676
/* end confdefs.h.  */
16677 16678 16679 16680
#include <stdio.h>
#include <string.h>

int main()
16681
{
16682 16683 16684 16685 16686 16687
  char buf[100];

  /* can it swap arguments? */
  snprintf(buf, 100, "%2\$d %1\$d", 3, 4);
  if (strcmp(buf, "4 3") != 0)
    return 1;
16688 16689 16690
  return 0;
}
_ACEOF
16691 16692
if ac_fn_c_try_run "$LINENO"; then :
  pgac_cv_printf_arg_control=yes
16693
else
16694 16695 16696 16697 16698 16699
  pgac_cv_printf_arg_control=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

16700

16701
fi
16702 16703 16704 16705 16706 16707
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_printf_arg_control" >&5
$as_echo "$pgac_cv_printf_arg_control" >&6; }

  if test $pgac_cv_printf_arg_control != yes ; then
    pgac_need_repl_snprintf=yes
  fi
16708 16709
fi

16710 16711 16712 16713 16714 16715 16716



{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether long int is 64 bits" >&5
$as_echo_n "checking whether long int is 64 bits... " >&6; }
if ${pgac_cv_type_long_int_64+:} false; then :
  $as_echo_n "(cached) " >&6
16717
else
16718 16719 16720 16721
  if test "$cross_compiling" = yes; then :
  # If cross-compiling, check the size reported by the compiler and
# trust that the arithmetic works.
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16722
/* end confdefs.h.  */
16723

16724 16725 16726
int
main ()
{
16727 16728 16729
static int test_array [1 - 2 * !(sizeof(long int) == 8)];
test_array [0] = 0;
return test_array [0];
16730 16731 16732 16733 16734

  ;
  return 0;
}
_ACEOF
16735 16736 16737 16738 16739 16740 16741 16742
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_type_long_int_64=yes
else
  pgac_cv_type_long_int_64=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16743
/* end confdefs.h.  */
16744 16745 16746 16747 16748 16749 16750 16751 16752 16753
typedef long int ac_int64;

/*
 * These are globals to discourage the compiler from folding all the
 * arithmetic tests down to compile-time constants.
 */
ac_int64 a = 20000001;
ac_int64 b = 40000005;

int does_int64_work()
16754
{
16755
  ac_int64 c,d;
16756

16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768
  if (sizeof(ac_int64) != 8)
    return 0;			/* definitely not the right size */

  /* Do perfunctory checks to see if 64-bit arithmetic seems to work */
  c = a * b;
  d = (c + b) / b;
  if (d != a+1)
    return 0;
  return 1;
}
main() {
  exit(! does_int64_work());
16769 16770
}
_ACEOF
16771 16772
if ac_fn_c_try_run "$LINENO"; then :
  pgac_cv_type_long_int_64=yes
16773
else
16774 16775 16776 16777 16778
  pgac_cv_type_long_int_64=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
16779

16780
fi
16781 16782
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_type_long_int_64" >&5
$as_echo "$pgac_cv_type_long_int_64" >&6; }
16783

16784 16785
HAVE_LONG_INT_64=$pgac_cv_type_long_int_64
if test x"$pgac_cv_type_long_int_64" = xyes ; then
16786

16787 16788 16789 16790 16791
$as_echo "#define HAVE_LONG_INT_64 1" >>confdefs.h

fi


16792 16793 16794
if test x"$HAVE_LONG_INT_64" = x"yes" ; then
  pg_int64_type="long int"
else
16795 16796 16797 16798 16799 16800 16801 16802 16803
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether long long int is 64 bits" >&5
$as_echo_n "checking whether long long int is 64 bits... " >&6; }
if ${pgac_cv_type_long_long_int_64+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test "$cross_compiling" = yes; then :
  # If cross-compiling, check the size reported by the compiler and
# trust that the arithmetic works.
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16804
/* end confdefs.h.  */
16805

16806 16807
int
main ()
16808
{
16809 16810 16811
static int test_array [1 - 2 * !(sizeof(long long int) == 8)];
test_array [0] = 0;
return test_array [0];
16812 16813 16814

  ;
  return 0;
16815
}
16816
_ACEOF
16817 16818
if ac_fn_c_try_compile "$LINENO"; then :
  pgac_cv_type_long_long_int_64=yes
16819
else
16820
  pgac_cv_type_long_long_int_64=no
16821
fi
16822
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16823
else
16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
typedef long long int ac_int64;

/*
 * These are globals to discourage the compiler from folding all the
 * arithmetic tests down to compile-time constants.
 */
ac_int64 a = 20000001;
ac_int64 b = 40000005;

int does_int64_work()
{
  ac_int64 c,d;

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

  /* Do perfunctory checks to see if 64-bit arithmetic seems to work */
  c = a * b;
  d = (c + b) / b;
  if (d != a+1)
    return 0;
  return 1;
}
main() {
  exit(! does_int64_work());
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  pgac_cv_type_long_long_int_64=yes
else
  pgac_cv_type_long_long_int_64=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_type_long_long_int_64" >&5
$as_echo "$pgac_cv_type_long_long_int_64" >&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

$as_echo "#define HAVE_LONG_LONG_INT_64 1" >>confdefs.h
16870

16871
fi
16872

16873 16874 16875
  if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
    pg_int64_type="long long int"
  else
16876 16877
    as_fn_error $? "Cannot find a working 64-bit integer type." "$LINENO" 5
  fi
16878
fi
16879 16880


16881 16882 16883 16884 16885 16886
cat >>confdefs.h <<_ACEOF
#define PG_INT64_TYPE $pg_int64_type
_ACEOF



16887 16888 16889

if test x"$HAVE_LONG_LONG_INT_64" = xyes ; then
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16890
/* end confdefs.h.  */
16891 16892 16893 16894

#define INT64CONST(x)  x##LL
long long int foo = INT64CONST(0x1234567890123456);

16895 16896 16897
int
main ()
{
16898

16899 16900 16901 16902
  ;
  return 0;
}
_ACEOF
16903 16904 16905
if ac_fn_c_try_compile "$LINENO"; then :

$as_echo "#define HAVE_LL_CONSTANTS 1" >>confdefs.h
16906

16907
fi
16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
fi


# If we found "long int" is 64 bits, assume snprintf handles it.  If
# we found we need to use "long long int", better check.  We cope with
# snprintfs that use %lld, %qd, or %I64d as the format.  If none of these
# work, fall back to our own snprintf emulation (which we know uses %lld).

if test "$HAVE_LONG_LONG_INT_64" = yes ; then
  if test $pgac_need_repl_snprintf = no; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking snprintf format for long long int" >&5
$as_echo_n "checking snprintf format for long long int... " >&6; }
if ${pgac_cv_snprintf_long_long_int_format+:} false; then :
  $as_echo_n "(cached) " >&6
M
Michael Meskes 已提交
16923
else
16924 16925 16926
  for pgac_format in '%lld' '%qd' '%I64d'; do
if test "$cross_compiling" = yes; then :
  pgac_cv_snprintf_long_long_int_format=cross; break
16927
else
16928
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16929
/* end confdefs.h.  */
16930
#include <stdio.h>
16931 16932 16933 16934 16935 16936 16937
typedef long long int ac_int64;
#define INT64_FORMAT "$pgac_format"

ac_int64 a = 20000001;
ac_int64 b = 40000005;

int does_int64_snprintf_work()
16938
{
16939 16940
  ac_int64 c;
  char buf[100];
16941

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

16945 16946 16947 16948 16949 16950 16951 16952
  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());
16953 16954
}
_ACEOF
16955 16956
if ac_fn_c_try_run "$LINENO"; then :
  pgac_cv_snprintf_long_long_int_format=$pgac_format; break
16957
fi
16958 16959
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
M
Michael Meskes 已提交
16960
fi
16961 16962

done
16963
fi
16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987

LONG_LONG_INT_FORMAT=''

case $pgac_cv_snprintf_long_long_int_format in
  cross) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot test (not on host machine)" >&5
$as_echo "cannot test (not on host machine)" >&6; };;
  ?*)    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_snprintf_long_long_int_format" >&5
$as_echo "$pgac_cv_snprintf_long_long_int_format" >&6; }
         LONG_LONG_INT_FORMAT=$pgac_cv_snprintf_long_long_int_format;;
  *)     { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5
$as_echo "none" >&6; };;
esac
    if test "$LONG_LONG_INT_FORMAT" = ""; then
      # Force usage of our own snprintf, since system snprintf is broken
      pgac_need_repl_snprintf=yes
      LONG_LONG_INT_FORMAT='%lld'
    fi
  else
    # Here if we previously decided we needed to use our own snprintf
    LONG_LONG_INT_FORMAT='%lld'
  fi
  LONG_LONG_UINT_FORMAT=`echo "$LONG_LONG_INT_FORMAT" | sed 's/d$/u/'`
  INT64_FORMAT="\"$LONG_LONG_INT_FORMAT\""
  UINT64_FORMAT="\"$LONG_LONG_UINT_FORMAT\""
16988
else
16989 16990 16991
  # Here if we are not using 'long long int' at all
  INT64_FORMAT='"%ld"'
  UINT64_FORMAT='"%lu"'
16992
fi
16993 16994


16995
cat >>confdefs.h <<_ACEOF
16996 16997 16998 16999 17000 17001 17002
#define INT64_FORMAT $INT64_FORMAT
_ACEOF



cat >>confdefs.h <<_ACEOF
#define UINT64_FORMAT $UINT64_FORMAT
17003
_ACEOF
17004 17005


17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016
# Now we have checked all the reasons to replace snprintf
if test $pgac_need_repl_snprintf = yes; then

$as_echo "#define USE_REPL_SNPRINTF 1" >>confdefs.h

  case " $LIBOBJS " in
  *" snprintf.$ac_objext "* ) ;;
  *) LIBOBJS="$LIBOBJS snprintf.$ac_objext"
 ;;
esac

17017
fi
17018 17019 17020 17021 17022 17023 17024 17025 17026 17027

# Need a #define for the size of Datum (unsigned long)
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of unsigned long" >&5
$as_echo_n "checking size of unsigned long... " >&6; }
if ${ac_cv_sizeof_unsigned_long+:} false; then :
  $as_echo_n "(cached) " >&6
17028
else
17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049
  if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (unsigned long))" "ac_cv_sizeof_unsigned_long"        "$ac_includes_default"; then :

else
  if test "$ac_cv_type_unsigned_long" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute sizeof (unsigned long)
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_sizeof_unsigned_long=0
   fi
fi

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_unsigned_long" >&5
$as_echo "$ac_cv_sizeof_unsigned_long" >&6; }



cat >>confdefs.h <<_ACEOF
#define SIZEOF_UNSIGNED_LONG $ac_cv_sizeof_unsigned_long
17050
_ACEOF
17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062



# And check size of void *, size_t (enables tweaks for > 32bit address space)
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5
$as_echo_n "checking size of void *... " >&6; }
if ${ac_cv_sizeof_void_p+:} false; then :
  $as_echo_n "(cached) " >&6
17063
else
17064
  if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p"        "$ac_includes_default"; then :
17065

17066 17067 17068 17069 17070 17071 17072 17073 17074
else
  if test "$ac_cv_type_void_p" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute sizeof (void *)
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_sizeof_void_p=0
   fi
17075
fi
17076

17077
fi
17078 17079
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5
$as_echo "$ac_cv_sizeof_void_p" >&6; }
17080

17081

17082 17083 17084

cat >>confdefs.h <<_ACEOF
#define SIZEOF_VOID_P $ac_cv_sizeof_void_p
17085
_ACEOF
17086

17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117

# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5
$as_echo_n "checking size of size_t... " >&6; }
if ${ac_cv_sizeof_size_t+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (size_t))" "ac_cv_sizeof_size_t"        "$ac_includes_default"; then :

else
  if test "$ac_cv_type_size_t" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute sizeof (size_t)
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_sizeof_size_t=0
   fi
fi

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_size_t" >&5
$as_echo "$ac_cv_sizeof_size_t" >&6; }



cat >>confdefs.h <<_ACEOF
#define SIZEOF_SIZE_T $ac_cv_sizeof_size_t
17118
_ACEOF
17119 17120 17121



17122 17123 17124 17125 17126 17127 17128 17129 17130 17131
# In GPDB, float4 and float8 are always passed by value. There is
# GPDB-specific code that assumes that in various places, so it's not
# configurable.
float4passbyval=true

$as_echo "#define USE_FLOAT4_BYVAL 1" >>confdefs.h


cat >>confdefs.h <<_ACEOF
#define FLOAT4PASSBYVAL $float4passbyval
17132
_ACEOF
17133 17134 17135 17136 17137 17138 17139 17140 17141 17142


# Note: this setting also controls int8 and related types such as timestamp.
float8passbyval=true

$as_echo "#define USE_FLOAT8_BYVAL 1" >>confdefs.h


cat >>confdefs.h <<_ACEOF
#define FLOAT8PASSBYVAL $float8passbyval
17143
_ACEOF
17144 17145


17146 17147
# Determine memory alignment requirements for the basic C data types.

17148 17149
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
17150 17151
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking alignment of short" >&5
$as_echo_n "checking alignment of short... " >&6; }
17152
if ${ac_cv_alignof_short+:} false; then :
17153 17154
  $as_echo_n "(cached) " >&6
else
17155
  if ac_fn_c_compute_int "$LINENO" "(long int) offsetof (ac__type_alignof_, y)" "ac_cv_alignof_short"        "$ac_includes_default
P
Peter Eisentraut 已提交
17156 17157 17158
#ifndef offsetof
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
#endif
17159
typedef struct { char x; short y; } ac__type_alignof_;"; then :
17160

17161
else
17162 17163 17164 17165 17166 17167 17168 17169
  if test "$ac_cv_type_short" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute alignment of short
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_alignof_short=0
   fi
17170 17171
fi

17172
fi
17173 17174
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_short" >&5
$as_echo "$ac_cv_alignof_short" >&6; }
17175 17176 17177



17178 17179 17180
cat >>confdefs.h <<_ACEOF
#define ALIGNOF_SHORT $ac_cv_alignof_short
_ACEOF
P
Peter Eisentraut 已提交
17181

17182

17183 17184
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
17185 17186
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking alignment of int" >&5
$as_echo_n "checking alignment of int... " >&6; }
17187
if ${ac_cv_alignof_int+:} false; then :
17188
  $as_echo_n "(cached) " >&6
17189
else
17190 17191 17192 17193 17194
  if ac_fn_c_compute_int "$LINENO" "(long int) offsetof (ac__type_alignof_, y)" "ac_cv_alignof_int"        "$ac_includes_default
#ifndef offsetof
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
#endif
typedef struct { char x; int y; } ac__type_alignof_;"; then :
17195

17196
else
17197 17198 17199 17200 17201 17202 17203 17204
  if test "$ac_cv_type_int" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute alignment of int
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_alignof_int=0
   fi
17205
fi
17206

17207
fi
17208 17209
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_int" >&5
$as_echo "$ac_cv_alignof_int" >&6; }
17210 17211


17212

17213 17214
cat >>confdefs.h <<_ACEOF
#define ALIGNOF_INT $ac_cv_alignof_int
17215
_ACEOF
17216

17217

17218 17219
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
17220 17221
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking alignment of long" >&5
$as_echo_n "checking alignment of long... " >&6; }
17222
if ${ac_cv_alignof_long+:} false; then :
17223
  $as_echo_n "(cached) " >&6
17224
else
17225
  if ac_fn_c_compute_int "$LINENO" "(long int) offsetof (ac__type_alignof_, y)" "ac_cv_alignof_long"        "$ac_includes_default
P
Peter Eisentraut 已提交
17226 17227 17228
#ifndef offsetof
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
#endif
17229
typedef struct { char x; long y; } ac__type_alignof_;"; then :
17230 17231

else
17232 17233 17234 17235 17236 17237 17238 17239
  if test "$ac_cv_type_long" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute alignment of long
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_alignof_long=0
   fi
17240 17241
fi

17242
fi
17243 17244
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_long" >&5
$as_echo "$ac_cv_alignof_long" >&6; }
P
Peter Eisentraut 已提交
17245

17246 17247


17248
cat >>confdefs.h <<_ACEOF
17249
#define ALIGNOF_LONG $ac_cv_alignof_long
17250
_ACEOF
17251

17252

17253
if test x"$HAVE_LONG_LONG_INT_64" = x"yes" ; then
17254 17255
  # The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
17256 17257
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking alignment of long long int" >&5
$as_echo_n "checking alignment of long long int... " >&6; }
17258
if ${ac_cv_alignof_long_long_int+:} false; then :
17259
  $as_echo_n "(cached) " >&6
M
Michael Meskes 已提交
17260
else
17261
  if ac_fn_c_compute_int "$LINENO" "(long int) offsetof (ac__type_alignof_, y)" "ac_cv_alignof_long_long_int"        "$ac_includes_default
P
Peter Eisentraut 已提交
17262 17263 17264
#ifndef offsetof
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
#endif
17265
typedef struct { char x; long long int y; } ac__type_alignof_;"; then :
17266

17267
else
17268 17269 17270 17271 17272 17273 17274 17275
  if test "$ac_cv_type_long_long_int" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute alignment of long long int
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_alignof_long_long_int=0
   fi
17276
fi
17277

17278
fi
17279 17280 17281 17282 17283
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_long_long_int" >&5
$as_echo "$ac_cv_alignof_long_long_int" >&6; }



17284
cat >>confdefs.h <<_ACEOF
17285
#define ALIGNOF_LONG_LONG_INT $ac_cv_alignof_long_long_int
17286 17287
_ACEOF

17288

17289
fi
17290 17291
# The cast to long int works around a bug in the HP C Compiler,
# see AC_CHECK_SIZEOF for more information.
17292 17293
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking alignment of double" >&5
$as_echo_n "checking alignment of double... " >&6; }
17294
if ${ac_cv_alignof_double+:} false; then :
17295 17296
  $as_echo_n "(cached) " >&6
else
17297 17298 17299 17300 17301
  if ac_fn_c_compute_int "$LINENO" "(long int) offsetof (ac__type_alignof_, y)" "ac_cv_alignof_double"        "$ac_includes_default
#ifndef offsetof
# define offsetof(type, member) ((char *) &((type *) 0)->member - (char *) 0)
#endif
typedef struct { char x; double y; } ac__type_alignof_;"; then :
17302 17303

else
17304 17305 17306 17307 17308
  if test "$ac_cv_type_double" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute alignment of double
See \`config.log' for more details" "$LINENO" 5; }
P
Peter Eisentraut 已提交
17309 17310 17311
   else
     ac_cv_alignof_double=0
   fi
17312
fi
17313

17314
fi
17315 17316
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_alignof_double" >&5
$as_echo "$ac_cv_alignof_double" >&6; }
P
Peter Eisentraut 已提交
17317 17318 17319



17320
cat >>confdefs.h <<_ACEOF
P
Peter Eisentraut 已提交
17321
#define ALIGNOF_DOUBLE $ac_cv_alignof_double
17322
_ACEOF
17323 17324 17325



17326 17327 17328
# Compute maximum alignment of any basic type.
# We assume long's alignment is at least as strong as char, short, or int;
# but we must check long long (if it exists) and double.
17329

P
Peter Eisentraut 已提交
17330 17331 17332
MAX_ALIGNOF=$ac_cv_alignof_long
if test $MAX_ALIGNOF -lt $ac_cv_alignof_double ; then
  MAX_ALIGNOF=$ac_cv_alignof_double
17333
fi
P
Peter Eisentraut 已提交
17334 17335
if test x"$HAVE_LONG_LONG_INT_64" = xyes && test $MAX_ALIGNOF -lt $ac_cv_alignof_long_long_int ; then
  MAX_ALIGNOF="$ac_cv_alignof_long_long_int"
17336 17337 17338
fi

cat >>confdefs.h <<_ACEOF
17339
#define MAXIMUM_ALIGNOF $MAX_ALIGNOF
17340
_ACEOF
17341 17342


17343

T
Tom Lane 已提交
17344
# Some platforms predefine the types int8, int16, etc.  Only check
17345
# a (hopefully) representative subset.
17346
ac_fn_c_check_type "$LINENO" "int8" "ac_cv_type_int8" "#include <stdio.h>
17347 17348
#ifdef HAVE_SUPPORTDEFS_H
#include <SupportDefs.h>
17349
#endif
17350 17351
"
if test "x$ac_cv_type_int8" = xyes; then :
17352 17353

cat >>confdefs.h <<_ACEOF
17354
#define HAVE_INT8 1
17355
_ACEOF
T
Tom Lane 已提交
17356 17357


17358
fi
17359
ac_fn_c_check_type "$LINENO" "uint8" "ac_cv_type_uint8" "#include <stdio.h>
17360 17361 17362
#ifdef HAVE_SUPPORTDEFS_H
#include <SupportDefs.h>
#endif
17363 17364
"
if test "x$ac_cv_type_uint8" = xyes; then :
17365 17366

cat >>confdefs.h <<_ACEOF
17367
#define HAVE_UINT8 1
17368
_ACEOF
T
Tom Lane 已提交
17369 17370


17371
fi
17372
ac_fn_c_check_type "$LINENO" "int64" "ac_cv_type_int64" "#include <stdio.h>
17373 17374 17375
#ifdef HAVE_SUPPORTDEFS_H
#include <SupportDefs.h>
#endif
17376 17377
"
if test "x$ac_cv_type_int64" = xyes; then :
17378 17379 17380 17381 17382 17383 17384

cat >>confdefs.h <<_ACEOF
#define HAVE_INT64 1
_ACEOF


fi
17385
ac_fn_c_check_type "$LINENO" "uint64" "ac_cv_type_uint64" "#include <stdio.h>
17386 17387 17388
#ifdef HAVE_SUPPORTDEFS_H
#include <SupportDefs.h>
#endif
17389 17390
"
if test "x$ac_cv_type_uint64" = xyes; then :
17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401

cat >>confdefs.h <<_ACEOF
#define HAVE_UINT64 1
_ACEOF


fi


# We also check for sig_atomic_t, which *should* be defined per ANSI
# C, but is missing on some old platforms.
17402 17403 17404
ac_fn_c_check_type "$LINENO" "sig_atomic_t" "ac_cv_type_sig_atomic_t" "#include <signal.h>
"
if test "x$ac_cv_type_sig_atomic_t" = xyes; then :
17405 17406 17407 17408 17409 17410 17411 17412 17413

cat >>confdefs.h <<_ACEOF
#define HAVE_SIG_ATOMIC_T 1
_ACEOF


fi


17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612
# Check for various atomic operations now that we have checked how to declare
# 64bit integers.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __sync char locking functions" >&5
$as_echo_n "checking for builtin __sync char locking functions... " >&6; }
if ${pgac_cv_gcc_sync_char_tas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
char lock = 0;
   __sync_lock_test_and_set(&lock, 1);
   __sync_lock_release(&lock);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_sync_char_tas="yes"
else
  pgac_cv_gcc_sync_char_tas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_sync_char_tas" >&5
$as_echo "$pgac_cv_gcc_sync_char_tas" >&6; }
if test x"$pgac_cv_gcc_sync_char_tas" = x"yes"; then

$as_echo "#define HAVE_GCC__SYNC_CHAR_TAS 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __sync int32 locking functions" >&5
$as_echo_n "checking for builtin __sync int32 locking functions... " >&6; }
if ${pgac_cv_gcc_sync_int32_tas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
int lock = 0;
   __sync_lock_test_and_set(&lock, 1);
   __sync_lock_release(&lock);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_sync_int32_tas="yes"
else
  pgac_cv_gcc_sync_int32_tas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_sync_int32_tas" >&5
$as_echo "$pgac_cv_gcc_sync_int32_tas" >&6; }
if test x"$pgac_cv_gcc_sync_int32_tas" = x"yes"; then

$as_echo "#define HAVE_GCC__SYNC_INT32_TAS 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __sync int32 atomic operations" >&5
$as_echo_n "checking for builtin __sync int32 atomic operations... " >&6; }
if ${pgac_cv_gcc_sync_int32_cas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
int val = 0;
   __sync_val_compare_and_swap(&val, 0, 37);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_sync_int32_cas="yes"
else
  pgac_cv_gcc_sync_int32_cas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_sync_int32_cas" >&5
$as_echo "$pgac_cv_gcc_sync_int32_cas" >&6; }
if test x"$pgac_cv_gcc_sync_int32_cas" = x"yes"; then

$as_echo "#define HAVE_GCC__SYNC_INT32_CAS 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __sync int64 atomic operations" >&5
$as_echo_n "checking for builtin __sync int64 atomic operations... " >&6; }
if ${pgac_cv_gcc_sync_int64_cas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
PG_INT64_TYPE lock = 0;
   __sync_val_compare_and_swap(&lock, 0, (PG_INT64_TYPE) 37);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_sync_int64_cas="yes"
else
  pgac_cv_gcc_sync_int64_cas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_sync_int64_cas" >&5
$as_echo "$pgac_cv_gcc_sync_int64_cas" >&6; }
if test x"$pgac_cv_gcc_sync_int64_cas" = x"yes"; then

$as_echo "#define HAVE_GCC__SYNC_INT64_CAS 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __atomic int32 atomic operations" >&5
$as_echo_n "checking for builtin __atomic int32 atomic operations... " >&6; }
if ${pgac_cv_gcc_atomic_int32_cas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
int val = 0;
   int expect = 0;
   __atomic_compare_exchange_n(&val, &expect, 37, 0, __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_atomic_int32_cas="yes"
else
  pgac_cv_gcc_atomic_int32_cas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_atomic_int32_cas" >&5
$as_echo "$pgac_cv_gcc_atomic_int32_cas" >&6; }
if test x"$pgac_cv_gcc_atomic_int32_cas" = x"yes"; then

$as_echo "#define HAVE_GCC__ATOMIC_INT32_CAS 1" >>confdefs.h

fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for builtin __atomic int64 atomic operations" >&5
$as_echo_n "checking for builtin __atomic int64 atomic operations... " >&6; }
if ${pgac_cv_gcc_atomic_int64_cas+:} false; then :
  $as_echo_n "(cached) " >&6
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

int
main ()
{
PG_INT64_TYPE val = 0;
   PG_INT64_TYPE expect = 0;
   __atomic_compare_exchange_n(&val, &expect, 37, 0, __ATOMIC_SEQ_CST, __ATOMIC_RELAXED);
  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :
  pgac_cv_gcc_atomic_int64_cas="yes"
else
  pgac_cv_gcc_atomic_int64_cas="no"
fi
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_gcc_atomic_int64_cas" >&5
$as_echo "$pgac_cv_gcc_atomic_int64_cas" >&6; }
if test x"$pgac_cv_gcc_atomic_int64_cas" = x"yes"; then

$as_echo "#define HAVE_GCC__ATOMIC_INT64_CAS 1" >>confdefs.h

fi

17613

17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628
# If the user did not disable integer datetimes, check that
# there is a working 64-bit integral type to use.
if test x"$USE_INTEGER_DATETIMES" = x"yes" &&
   test x"$HAVE_LONG_INT_64" = x"no" &&
   test x"$HAVE_LONG_LONG_INT_64" = x"no" &&
   test x"$HAVE_INT64" = x"no" ; then
  as_fn_error $? "
Integer-based datetime support requires a 64-bit integer type,
but no such type could be found. The --disable-integer-datetimes
configure option can be used to disable integer-based storage
of datetime values." "$LINENO" 5
fi


if test "$PORTNAME" != "win32"
17629
then
17630 17631 17632 17633
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for POSIX signal interface" >&5
$as_echo_n "checking for POSIX signal interface... " >&6; }
if ${pgac_cv_func_posix_signals+:} false; then :
  $as_echo_n "(cached) " >&6
17634
else
17635
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17636
/* end confdefs.h.  */
17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649
#include <signal.h>

int
main ()
{
struct sigaction act, oact;
sigemptyset(&act.sa_mask);
act.sa_flags = SA_RESTART;
sigaction(0, &act, &oact);
  ;
  return 0;
}
_ACEOF
17650
if ac_fn_c_try_link "$LINENO"; then :
17651 17652
  pgac_cv_func_posix_signals=yes
else
17653
  pgac_cv_func_posix_signals=no
17654
fi
17655 17656
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext conftest.$ac_ext
17657
fi
17658 17659
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_func_posix_signals" >&5
$as_echo "$pgac_cv_func_posix_signals" >&6; }
17660 17661
if test x"$pgac_cv_func_posix_signals" = xyes ; then

17662
$as_echo "#define HAVE_POSIX_SIGNALS /**/" >>confdefs.h
17663 17664 17665 17666

fi
HAVE_POSIX_SIGNALS=$pgac_cv_func_posix_signals

17667
if test "$pgac_cv_func_posix_signals" != yes -a "$enable_thread_safety" = yes; then
17668
  as_fn_error $? "
17669
Thread-safety requires POSIX signals, which are not supported by this
17670
operating system." "$LINENO" 5
17671
fi
17672
fi
17673

P
Peter Eisentraut 已提交
17674
if test $ac_cv_func_fseeko = yes; then
17675 17676 17677 17678
# Check whether --enable-largefile was given.
if test "${enable_largefile+set}" = set; then :
  enableval=$enable_largefile;
fi
P
Peter Eisentraut 已提交
17679 17680 17681

if test "$enable_largefile" != no; then

17682 17683 17684 17685
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
$as_echo_n "checking for special C compiler options needed for large files... " >&6; }
if ${ac_cv_sys_largefile_CC+:} false; then :
  $as_echo_n "(cached) " >&6
P
Peter Eisentraut 已提交
17686 17687 17688 17689 17690
else
  ac_cv_sys_largefile_CC=no
     if test "$GCC" != yes; then
       ac_save_CC=$CC
       while :; do
17691 17692 17693
	 # IRIX 6.2 and later do not support large files by default,
	 # so use the C compiler's -n32 option if that helps.
	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17694
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711
#include <sys/types.h>
 /* Check that off_t can represent 2**63 - 1 correctly.
    We can't simply define LARGE_OFF_T to be 9223372036854775807,
    since some C++ compilers masquerading as C compilers
    incorrectly reject 9223372036854775807.  */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
		       && LARGE_OFF_T % 2147483647 == 1)
		      ? 1 : -1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
17712
	 if ac_fn_c_try_compile "$LINENO"; then :
P
Peter Eisentraut 已提交
17713 17714
  break
fi
17715 17716 17717
rm -f core conftest.err conftest.$ac_objext
	 CC="$CC -n32"
	 if ac_fn_c_try_compile "$LINENO"; then :
P
Peter Eisentraut 已提交
17718 17719
  ac_cv_sys_largefile_CC=' -n32'; break
fi
17720
rm -f core conftest.err conftest.$ac_objext
17721
	 break
P
Peter Eisentraut 已提交
17722 17723 17724 17725 17726
       done
       CC=$ac_save_CC
       rm -f conftest.$ac_ext
    fi
fi
17727 17728
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5
$as_echo "$ac_cv_sys_largefile_CC" >&6; }
P
Peter Eisentraut 已提交
17729 17730 17731 17732
  if test "$ac_cv_sys_largefile_CC" != no; then
    CC=$CC$ac_cv_sys_largefile_CC
  fi

17733 17734 17735 17736
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
if ${ac_cv_sys_file_offset_bits+:} false; then :
  $as_echo_n "(cached) " >&6
P
Peter Eisentraut 已提交
17737 17738
else
  while :; do
17739
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17740
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757
#include <sys/types.h>
 /* Check that off_t can represent 2**63 - 1 correctly.
    We can't simply define LARGE_OFF_T to be 9223372036854775807,
    since some C++ compilers masquerading as C compilers
    incorrectly reject 9223372036854775807.  */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
		       && LARGE_OFF_T % 2147483647 == 1)
		      ? 1 : -1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
17758 17759
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_sys_file_offset_bits=no; break
P
Peter Eisentraut 已提交
17760
fi
17761 17762
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17763
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781
#define _FILE_OFFSET_BITS 64
#include <sys/types.h>
 /* Check that off_t can represent 2**63 - 1 correctly.
    We can't simply define LARGE_OFF_T to be 9223372036854775807,
    since some C++ compilers masquerading as C compilers
    incorrectly reject 9223372036854775807.  */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
		       && LARGE_OFF_T % 2147483647 == 1)
		      ? 1 : -1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
17782
if ac_fn_c_try_compile "$LINENO"; then :
P
Peter Eisentraut 已提交
17783 17784
  ac_cv_sys_file_offset_bits=64; break
fi
17785 17786
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  ac_cv_sys_file_offset_bits=unknown
P
Peter Eisentraut 已提交
17787 17788 17789
  break
done
fi
17790 17791 17792 17793 17794
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5
$as_echo "$ac_cv_sys_file_offset_bits" >&6; }
case $ac_cv_sys_file_offset_bits in #(
  no | unknown) ;;
  *)
P
Peter Eisentraut 已提交
17795 17796 17797
cat >>confdefs.h <<_ACEOF
#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits
_ACEOF
17798 17799 17800 17801 17802 17803 17804 17805
;;
esac
rm -rf conftest*
  if test $ac_cv_sys_file_offset_bits = unknown; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
if ${ac_cv_sys_large_files+:} false; then :
  $as_echo_n "(cached) " >&6
P
Peter Eisentraut 已提交
17806 17807
else
  while :; do
17808
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17809
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826
#include <sys/types.h>
 /* Check that off_t can represent 2**63 - 1 correctly.
    We can't simply define LARGE_OFF_T to be 9223372036854775807,
    since some C++ compilers masquerading as C compilers
    incorrectly reject 9223372036854775807.  */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
		       && LARGE_OFF_T % 2147483647 == 1)
		      ? 1 : -1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
17827 17828
if ac_fn_c_try_compile "$LINENO"; then :
  ac_cv_sys_large_files=no; break
P
Peter Eisentraut 已提交
17829
fi
17830 17831
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17832
/* end confdefs.h.  */
P
Peter Eisentraut 已提交
17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850
#define _LARGE_FILES 1
#include <sys/types.h>
 /* Check that off_t can represent 2**63 - 1 correctly.
    We can't simply define LARGE_OFF_T to be 9223372036854775807,
    since some C++ compilers masquerading as C compilers
    incorrectly reject 9223372036854775807.  */
#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
		       && LARGE_OFF_T % 2147483647 == 1)
		      ? 1 : -1];
int
main ()
{

  ;
  return 0;
}
_ACEOF
17851
if ac_fn_c_try_compile "$LINENO"; then :
P
Peter Eisentraut 已提交
17852 17853
  ac_cv_sys_large_files=1; break
fi
17854 17855
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  ac_cv_sys_large_files=unknown
P
Peter Eisentraut 已提交
17856 17857 17858
  break
done
fi
17859 17860 17861 17862 17863
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5
$as_echo "$ac_cv_sys_large_files" >&6; }
case $ac_cv_sys_large_files in #(
  no | unknown) ;;
  *)
P
Peter Eisentraut 已提交
17864 17865 17866
cat >>confdefs.h <<_ACEOF
#define _LARGE_FILES $ac_cv_sys_large_files
_ACEOF
17867 17868 17869 17870 17871
;;
esac
rm -rf conftest*
  fi

P
Peter Eisentraut 已提交
17872 17873

fi
17874

17875
enable_largefile=yes
17876 17877 17878 17879
else
enable_largefile=no
fi

17880

17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903
# Check for largefile support (must be after AC_SYS_LARGEFILE)
# The cast to long int works around a bug in the HP C Compiler
# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects
# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'.
# This bug is HP SR number 8606223364.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5
$as_echo_n "checking size of off_t... " >&6; }
if ${ac_cv_sizeof_off_t+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t"        "$ac_includes_default"; then :

else
  if test "$ac_cv_type_off_t" = yes; then
     { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
as_fn_error 77 "cannot compute sizeof (off_t)
See \`config.log' for more details" "$LINENO" 5; }
   else
     ac_cv_sizeof_off_t=0
   fi
fi

P
Peter Eisentraut 已提交
17904
fi
17905 17906 17907 17908 17909 17910 17911 17912 17913
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_off_t" >&5
$as_echo "$ac_cv_sizeof_off_t" >&6; }



cat >>confdefs.h <<_ACEOF
#define SIZEOF_OFF_T $ac_cv_sizeof_off_t
_ACEOF

P
Peter Eisentraut 已提交
17914

17915 17916 17917 17918 17919 17920

if test "$PORTNAME" != "win32"; then
# If we don't have largefile support, can't handle segsize >= 2GB.
if test "$ac_cv_sizeof_off_t" -lt 8 -a "$segsize" != "1"; then
   as_fn_error $? "Large file support is not enabled. Segment size cannot be larger than 1GB." "$LINENO" 5
fi
P
Peter Eisentraut 已提交
17921
fi
17922

17923
# SunOS doesn't handle negative byte comparisons properly with +/- return
17924 17925 17926 17927
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working memcmp" >&5
$as_echo_n "checking for working memcmp... " >&6; }
if ${ac_cv_func_memcmp_working+:} false; then :
  $as_echo_n "(cached) " >&6
17928
else
17929
  if test "$cross_compiling" = yes; then :
17930 17931
  ac_cv_func_memcmp_working=no
else
17932
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17933 17934
/* end confdefs.h.  */
$ac_includes_default
17935 17936 17937 17938 17939
int
main ()
{

  /* Some versions of memcmp are not 8-bit clean.  */
17940
  char c0 = '\100', c1 = '\200', c2 = '\201';
17941
  if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0)
17942
    return 1;
17943 17944 17945 17946 17947 17948 17949 17950 17951 17952

  /* The Next x86 OpenStep bug shows up only when comparing 16 bytes
     or more and with at least one buffer not starting on a 4-byte boundary.
     William Lewis provided this test program.   */
  {
    char foo[21];
    char bar[21];
    int i;
    for (i = 0; i < 4; i++)
      {
17953 17954 17955 17956 17957
	char *a = foo + i;
	char *b = bar + i;
	strcpy (a, "--------01111111");
	strcpy (b, "--------10000000");
	if (memcmp (a, b, 16) >= 0)
17958
	  return 1;
17959
      }
17960
    return 0;
17961 17962 17963 17964 17965 17966
  }

  ;
  return 0;
}
_ACEOF
17967
if ac_fn_c_try_run "$LINENO"; then :
17968 17969
  ac_cv_func_memcmp_working=yes
else
17970
  ac_cv_func_memcmp_working=no
17971
fi
17972 17973
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
17974
fi
17975

17976
fi
17977 17978 17979
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_memcmp_working" >&5
$as_echo "$ac_cv_func_memcmp_working" >&6; }
test $ac_cv_func_memcmp_working = no && case " $LIBOBJS " in
17980
  *" memcmp.$ac_objext "* ) ;;
17981 17982
  *) LIBOBJS="$LIBOBJS memcmp.$ac_objext"
 ;;
17983 17984
esac

17985 17986


17987

17988
# Select semaphore implementation type.
17989 17990
if test "$PORTNAME" != "win32"; then
  if test x"$USE_NAMED_POSIX_SEMAPHORES" = x"1" ; then
17991

17992
$as_echo "#define USE_NAMED_POSIX_SEMAPHORES 1" >>confdefs.h
17993

17994 17995 17996
    SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
  else
    if test x"$USE_UNNAMED_POSIX_SEMAPHORES" = x"1" ; then
17997

17998
$as_echo "#define USE_UNNAMED_POSIX_SEMAPHORES 1" >>confdefs.h
17999

18000 18001
      SEMA_IMPLEMENTATION="src/backend/port/posix_sema.c"
    else
18002

18003
$as_echo "#define USE_SYSV_SEMAPHORES 1" >>confdefs.h
18004

18005
  SEMA_IMPLEMENTATION="src/backend/port/sysv_sema.c"
18006
    fi
18007
  fi
18008 18009
else

18010
$as_echo "#define USE_WIN32_SEMAPHORES 1" >>confdefs.h
18011 18012

  SEMA_IMPLEMENTATION="src/backend/port/win32_sema.c"
18013 18014 18015 18016
fi


# Select shared-memory implementation type.
18017
if test "$PORTNAME" != "win32"; then
18018

18019
$as_echo "#define USE_SYSV_SHARED_MEMORY 1" >>confdefs.h
18020

18021
  SHMEM_IMPLEMENTATION="src/backend/port/sysv_shmem.c"
18022 18023 18024
else

$as_echo "#define USE_WIN32_SHARED_MEMORY 1" >>confdefs.h
18025

18026 18027 18028 18029 18030 18031 18032 18033 18034 18035
  SHMEM_IMPLEMENTATION="src/backend/port/win32_shmem.c"
fi

# Select latch implementation type.
if test "$PORTNAME" != "win32"; then
  LATCH_IMPLEMENTATION="src/backend/port/unix_latch.c"
else
#  LATCH_IMPLEMENTATION="src/backend/port/win32_latch.c"
  LATCH_IMPLEMENTATION=""
fi
18036

18037 18038 18039 18040 18041 18042 18043 18044
# If not set in template file, set bytes to use libc memset()
if test x"$MEMSET_LOOP_LIMIT" = x"" ; then
  MEMSET_LOOP_LIMIT=1024
fi

cat >>confdefs.h <<_ACEOF
#define MEMSET_LOOP_LIMIT ${MEMSET_LOOP_LIMIT}
_ACEOF
M
Michael Meskes 已提交
18045 18046 18047 18048 18049



if test "$enable_nls" = yes ; then

18050 18051 18052 18053
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing bind_textdomain_codeset" >&5
$as_echo_n "checking for library containing bind_textdomain_codeset... " >&6; }
if ${ac_cv_search_bind_textdomain_codeset+:} false; then :
  $as_echo_n "(cached) " >&6
M
Michael Meskes 已提交
18054 18055
else
  ac_func_search_save_LIBS=$LIBS
18056
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
M
Michael Meskes 已提交
18057 18058
/* end confdefs.h.  */

18059 18060
/* Override any GCC internal prototype to avoid an error.
   Use char because int might match the return type of a GCC
M
Michael Meskes 已提交
18061
   builtin and then its argument prototype would still apply.  */
18062 18063 18064
#ifdef __cplusplus
extern "C"
#endif
18065
char bind_textdomain_codeset ();
18066 18067 18068
int
main ()
{
18069
return bind_textdomain_codeset ();
18070 18071 18072 18073
  ;
  return 0;
}
_ACEOF
18074 18075 18076 18077 18078 18079 18080 18081 18082
for ac_lib in '' intl; do
  if test -z "$ac_lib"; then
    ac_res="none required"
  else
    ac_res=-l$ac_lib
    LIBS="-l$ac_lib  $ac_func_search_save_LIBS"
  fi
  if ac_fn_c_try_link "$LINENO"; then :
  ac_cv_search_bind_textdomain_codeset=$ac_res
18083
fi
18084 18085 18086 18087
rm -f core conftest.err conftest.$ac_objext \
    conftest$ac_exeext
  if ${ac_cv_search_bind_textdomain_codeset+:} false; then :
  break
18088
fi
18089 18090
done
if ${ac_cv_search_bind_textdomain_codeset+:} false; then :
18091 18092

else
18093
  ac_cv_search_bind_textdomain_codeset=no
18094
fi
18095 18096
rm conftest.$ac_ext
LIBS=$ac_func_search_save_LIBS
18097
fi
18098 18099 18100 18101 18102
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_bind_textdomain_codeset" >&5
$as_echo "$ac_cv_search_bind_textdomain_codeset" >&6; }
ac_res=$ac_cv_search_bind_textdomain_codeset
if test "$ac_res" != no; then :
  test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
18103 18104

else
18105
  as_fn_error $? "a gettext implementation is required for NLS" "$LINENO" 5
18106 18107
fi

18108 18109
  ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default"
if test "x$ac_cv_header_libintl_h" = xyes; then :
18110 18111

else
18112
  as_fn_error $? "header file <libintl.h> is required for NLS" "$LINENO" 5
18113 18114 18115 18116 18117 18118 18119
fi


  for ac_prog in msgfmt
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
18120 18121 18122 18123
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_MSGFMT+:} false; then :
  $as_echo_n "(cached) " >&6
18124 18125 18126 18127 18128 18129 18130 18131 18132
else
  if test -n "$MSGFMT"; then
  ac_cv_prog_MSGFMT="$MSGFMT" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18133 18134
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18135
    ac_cv_prog_MSGFMT="$ac_prog"
18136
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18137 18138 18139
    break 2
  fi
done
18140 18141
  done
IFS=$as_save_IFS
18142 18143 18144 18145 18146

fi
fi
MSGFMT=$ac_cv_prog_MSGFMT
if test -n "$MSGFMT"; then
18147 18148
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5
$as_echo "$MSGFMT" >&6; }
18149
else
18150 18151
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18152 18153
fi

18154

18155 18156 18157 18158
  test -n "$MSGFMT" && break
done

  if test -z "$MSGFMT"; then
18159
    as_fn_error $? "msgfmt is required for NLS" "$LINENO" 5
18160 18161 18162 18163 18164
  fi
  for ac_prog in msgmerge
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
18165 18166 18167 18168
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_MSGMERGE+:} false; then :
  $as_echo_n "(cached) " >&6
18169 18170 18171 18172 18173 18174 18175 18176 18177
else
  if test -n "$MSGMERGE"; then
  ac_cv_prog_MSGMERGE="$MSGMERGE" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18178 18179
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18180
    ac_cv_prog_MSGMERGE="$ac_prog"
18181
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18182 18183 18184
    break 2
  fi
done
18185 18186
  done
IFS=$as_save_IFS
18187 18188 18189 18190 18191

fi
fi
MSGMERGE=$ac_cv_prog_MSGMERGE
if test -n "$MSGMERGE"; then
18192 18193
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5
$as_echo "$MSGMERGE" >&6; }
18194
else
18195 18196
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18197 18198
fi

18199

18200 18201 18202 18203 18204 18205 18206
  test -n "$MSGMERGE" && break
done

  for ac_prog in xgettext
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
18207 18208 18209 18210
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_XGETTEXT+:} false; then :
  $as_echo_n "(cached) " >&6
18211 18212 18213 18214 18215 18216 18217 18218 18219
else
  if test -n "$XGETTEXT"; then
  ac_cv_prog_XGETTEXT="$XGETTEXT" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18220 18221
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18222
    ac_cv_prog_XGETTEXT="$ac_prog"
18223
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18224 18225 18226
    break 2
  fi
done
18227 18228
  done
IFS=$as_save_IFS
18229 18230 18231 18232 18233

fi
fi
XGETTEXT=$ac_cv_prog_XGETTEXT
if test -n "$XGETTEXT"; then
18234 18235
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5
$as_echo "$XGETTEXT" >&6; }
18236
else
18237 18238
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18239
fi
18240

18241

18242 18243 18244 18245
  test -n "$XGETTEXT" && break
done


18246
fi
18247

18248 18249
# Check for Tcl configuration script tclConfig.sh
if test "$with_tcl" = yes; then
18250
    for ac_prog in tclsh tcl tclsh8.5 tclsh85 tclsh8.4 tclsh84 tclsh8.3 tclsh83
18251
do
18252
  # Extract the first word of "$ac_prog", so it can be a program name with args.
18253
set dummy $ac_prog; ac_word=$2
18254 18255 18256 18257
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_TCLSH+:} false; then :
  $as_echo_n "(cached) " >&6
B
Bruce Momjian 已提交
18258
else
18259 18260
  case $TCLSH in
  [\\/]* | ?:[\\/]*)
B
Bruce Momjian 已提交
18261 18262 18263
  ac_cv_path_TCLSH="$TCLSH" # Let the user override the test with a path.
  ;;
  *)
18264 18265 18266 18267 18268
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18269 18270
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18271
    ac_cv_path_TCLSH="$as_dir/$ac_word$ac_exec_ext"
18272
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18273 18274 18275
    break 2
  fi
done
18276 18277
  done
IFS=$as_save_IFS
18278

B
Bruce Momjian 已提交
18279 18280 18281
  ;;
esac
fi
18282
TCLSH=$ac_cv_path_TCLSH
B
Bruce Momjian 已提交
18283
if test -n "$TCLSH"; then
18284 18285
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TCLSH" >&5
$as_echo "$TCLSH" >&6; }
B
Bruce Momjian 已提交
18286
else
18287 18288
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
B
Bruce Momjian 已提交
18289
fi
B
Bruce Momjian 已提交
18290

18291

18292
  test -n "$TCLSH" && break
18293
done
B
Bruce Momjian 已提交
18294

18295 18296
if test x"$TCLSH" = x""; then
  as_fn_error $? "Tcl shell not found" "$LINENO" 5
B
Bruce Momjian 已提交
18297 18298
fi

18299 18300 18301
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tclConfig.sh" >&5
$as_echo_n "checking for tclConfig.sh... " >&6; }
# Let user override test
18302
if test -z "$TCL_CONFIG_SH"; then
18303
    pgac_test_dirs="$with_tclconfig"
18304

18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316
    set X $pgac_test_dirs; shift
    if test $# -eq 0; then
        test -z "$TCLSH" && as_fn_error $? "unable to locate tclConfig.sh because no Tcl shell was found" "$LINENO" 5
        set X `echo 'puts $auto_path' | $TCLSH`; shift
    fi

    for pgac_dir do
        if test -r "$pgac_dir/tclConfig.sh"; then
            TCL_CONFIG_SH=$pgac_dir/tclConfig.sh
            break
        fi
    done
18317 18318
fi

18319 18320 18321 18322
if test -z "$TCL_CONFIG_SH"; then
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
    as_fn_error $? "file 'tclConfig.sh' is required for Tcl" "$LINENO" 5
18323
else
18324 18325
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $TCL_CONFIG_SH" >&5
$as_echo "$TCL_CONFIG_SH" >&6; }
18326 18327
fi

18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342


    . "$TCL_CONFIG_SH"
eval TCL_INCLUDE_SPEC=\"$TCL_INCLUDE_SPEC\"
eval TCL_LIB_FILE=\"$TCL_LIB_FILE\"
eval TCL_LIBS=\"$TCL_LIBS\"
eval TCL_LIB_SPEC=\"$TCL_LIB_SPEC\"
eval TCL_SHARED_BUILD=\"$TCL_SHARED_BUILD\"

        # now that we have TCL_INCLUDE_SPEC, we can check for <tcl.h>
    ac_save_CPPFLAGS=$CPPFLAGS
    CPPFLAGS="$TCL_INCLUDE_SPEC $CPPFLAGS"
    ac_fn_c_check_header_mongrel "$LINENO" "tcl.h" "ac_cv_header_tcl_h" "$ac_includes_default"
if test "x$ac_cv_header_tcl_h" = xyes; then :

18343
else
18344
  as_fn_error $? "header file <tcl.h> is required for Tcl" "$LINENO" 5
18345 18346 18347 18348 18349
fi


    CPPFLAGS=$ac_save_CPPFLAGS
fi
18350

18351 18352 18353 18354 18355
#
# Check for DocBook and tools
#
for ac_prog in onsgmls nsgmls
do
18356
  # Extract the first word of "$ac_prog", so it can be a program name with args.
18357
set dummy $ac_prog; ac_word=$2
18358 18359 18360 18361
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_NSGMLS+:} false; then :
  $as_echo_n "(cached) " >&6
18362
else
18363 18364 18365 18366 18367 18368 18369 18370
  if test -n "$NSGMLS"; then
  ac_cv_prog_NSGMLS="$NSGMLS" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18371 18372
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18373
    ac_cv_prog_NSGMLS="$ac_prog"
18374
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18375 18376 18377
    break 2
  fi
done
18378 18379
  done
IFS=$as_save_IFS
18380

18381 18382
fi
fi
18383
NSGMLS=$ac_cv_prog_NSGMLS
18384
if test -n "$NSGMLS"; then
18385 18386
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NSGMLS" >&5
$as_echo "$NSGMLS" >&6; }
18387
else
18388 18389
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18390 18391
fi

18392

18393
  test -n "$NSGMLS" && break
18394 18395
done

18396
for ac_prog in openjade jade
18397
do
18398
  # Extract the first word of "$ac_prog", so it can be a program name with args.
18399
set dummy $ac_prog; ac_word=$2
18400 18401 18402 18403
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_JADE+:} false; then :
  $as_echo_n "(cached) " >&6
18404 18405 18406 18407
else
  if test -n "$JADE"; then
  ac_cv_prog_JADE="$JADE" # Let the user override the test.
else
18408 18409 18410 18411 18412
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18413 18414
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18415
    ac_cv_prog_JADE="$ac_prog"
18416
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18417 18418 18419
    break 2
  fi
done
18420 18421
  done
IFS=$as_save_IFS
18422

18423 18424
fi
fi
18425
JADE=$ac_cv_prog_JADE
18426
if test -n "$JADE"; then
18427 18428
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $JADE" >&5
$as_echo "$JADE" >&6; }
18429
else
18430 18431
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18432 18433
fi

18434

18435
  test -n "$JADE" && break
18436 18437
done

18438

18439 18440 18441 18442
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook V4.2" >&5
$as_echo_n "checking for DocBook V4.2... " >&6; }
if ${pgac_cv_check_docbook+:} false; then :
  $as_echo_n "(cached) " >&6
18443 18444
else
  cat >conftest.sgml <<EOF
P
Peter Eisentraut 已提交
18445
<!doctype book PUBLIC "-//OASIS//DTD DocBook V4.2//EN">
18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457
<book>
 <title>test</title>
 <chapter>
  <title>random</title>
   <sect1>
    <title>testsect</title>
    <para>text</para>
  </sect1>
 </chapter>
</book>
EOF

18458 18459 18460 18461 18462 18463 18464
pgac_cv_check_docbook=no

if test -n "$NSGMLS"; then
  $NSGMLS -s conftest.sgml 1>&5 2>&1
  if test $? -eq 0; then
    pgac_cv_check_docbook=yes
  fi
18465 18466 18467
fi
rm -f conftest.sgml
fi
18468 18469
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pgac_cv_check_docbook" >&5
$as_echo "$pgac_cv_check_docbook" >&6; }
18470 18471 18472 18473

have_docbook=$pgac_cv_check_docbook


18474 18475 18476 18477
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for DocBook stylesheets" >&5
$as_echo_n "checking for DocBook stylesheets... " >&6; }
if ${pgac_cv_path_stylesheets+:} false; then :
  $as_echo_n "(cached) " >&6
18478 18479 18480 18481
else
  if test -n "$DOCBOOKSTYLE"; then
  pgac_cv_path_stylesheets=$DOCBOOKSTYLE
else
18482
  for pgac_prefix in /usr /usr/local /opt /sw; do
18483 18484 18485 18486
    for pgac_infix in share lib; do
      for pgac_postfix in \
        sgml/stylesheets/nwalsh-modular \
        sgml/stylesheets/docbook \
18487 18488
        sgml/stylesheets/dsssl/docbook \
        sgml/docbook-dsssl \
18489
        sgml/docbook/dsssl/modular \
18490
        sgml/docbook/stylesheet/dsssl/modular \
18491 18492
        sgml/docbook/dsssl-stylesheets \
        sgml/dsssl/docbook-dsssl-nwalsh
18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509
      do
        pgac_candidate=$pgac_prefix/$pgac_infix/$pgac_postfix
        if test -r "$pgac_candidate/html/docbook.dsl" \
           && test -r "$pgac_candidate/print/docbook.dsl"
        then
          pgac_cv_path_stylesheets=$pgac_candidate
          break 3
        fi
      done
    done
  done
fi
fi

DOCBOOKSTYLE=$pgac_cv_path_stylesheets

if test -n "$DOCBOOKSTYLE"; then
18510 18511
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOCBOOKSTYLE" >&5
$as_echo "$DOCBOOKSTYLE" >&6; }
18512
else
18513 18514
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18515
fi
18516 18517 18518 18519 18520
if test -n "$DOCBOOKSTYLE"; then
  for ac_prog in collateindex.pl
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
18521 18522 18523 18524
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_COLLATEINDEX+:} false; then :
  $as_echo_n "(cached) " >&6
18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535
else
  case $COLLATEINDEX in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_COLLATEINDEX="$COLLATEINDEX" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $DOCBOOKSTYLE/bin $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18536 18537
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18538
    ac_cv_path_COLLATEINDEX="$as_dir/$ac_word$ac_exec_ext"
18539
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18540 18541 18542
    break 2
  fi
done
18543 18544
  done
IFS=$as_save_IFS
18545 18546 18547 18548 18549 18550

  ;;
esac
fi
COLLATEINDEX=$ac_cv_path_COLLATEINDEX
if test -n "$COLLATEINDEX"; then
18551 18552
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $COLLATEINDEX" >&5
$as_echo "$COLLATEINDEX" >&6; }
18553
else
18554 18555
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18556 18557
fi

18558

18559 18560 18561 18562 18563 18564 18565 18566
  test -n "$COLLATEINDEX" && break
done

else
  for ac_prog in collateindex.pl
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
18567 18568 18569 18570
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_COLLATEINDEX+:} false; then :
  $as_echo_n "(cached) " >&6
18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581
else
  case $COLLATEINDEX in
  [\\/]* | ?:[\\/]*)
  ac_cv_path_COLLATEINDEX="$COLLATEINDEX" # Let the user override the test with a path.
  ;;
  *)
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18582 18583
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18584
    ac_cv_path_COLLATEINDEX="$as_dir/$ac_word$ac_exec_ext"
18585
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18586 18587 18588
    break 2
  fi
done
18589 18590
  done
IFS=$as_save_IFS
18591 18592 18593 18594 18595 18596

  ;;
esac
fi
COLLATEINDEX=$ac_cv_path_COLLATEINDEX
if test -n "$COLLATEINDEX"; then
18597 18598
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $COLLATEINDEX" >&5
$as_echo "$COLLATEINDEX" >&6; }
18599
else
18600 18601
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18602 18603
fi

18604

18605 18606 18607 18608 18609
  test -n "$COLLATEINDEX" && break
done

fi
for ac_prog in sgmlspl
18610
do
18611
  # Extract the first word of "$ac_prog", so it can be a program name with args.
18612
set dummy $ac_prog; ac_word=$2
18613 18614 18615 18616
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_SGMLSPL+:} false; then :
  $as_echo_n "(cached) " >&6
18617 18618 18619 18620
else
  if test -n "$SGMLSPL"; then
  ac_cv_prog_SGMLSPL="$SGMLSPL" # Let the user override the test.
else
18621 18622 18623 18624 18625
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18626 18627
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
18628
    ac_cv_prog_SGMLSPL="$ac_prog"
18629
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
18630 18631 18632
    break 2
  fi
done
18633 18634
  done
IFS=$as_save_IFS
18635

18636 18637
fi
fi
18638
SGMLSPL=$ac_cv_prog_SGMLSPL
18639
if test -n "$SGMLSPL"; then
18640 18641
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SGMLSPL" >&5
$as_echo "$SGMLSPL" >&6; }
18642
else
18643 18644
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18645 18646
fi

18647

18648
  test -n "$SGMLSPL" && break
18649 18650
done

18651 18652 18653 18654
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for docbook2man" >&5
$as_echo_n "checking for docbook2man... " >&6; }
if ${ac_cv_path_DOCBOOK2MAN+:} false; then :
  $as_echo_n "(cached) " >&6
18655 18656 18657 18658 18659 18660 18661
else
  if test -z "$DOCBOOK2MAN"; then
  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
18662
    for ac_prog in docbook2x-man db2x_docbook2man docbook2man; do
18663
    ac_path="$as_dir/$ac_prog"
18664
    as_fn_executable_p "$ac_path" || continue
18665 18666 18667 18668 18669
    if "$ac_path" --version 2>/dev/null | $GREP docbook2x >/dev/null 2>&1; then
      ac_cv_path_DOCBOOK2MAN=$ac_path
      break
    fi
  done
18670
  done
18671 18672 18673 18674 18675 18676
IFS=$as_save_IFS

else
  ac_cv_path_DOCBOOK2MAN=$DOCBOOK2MAN
fi
fi
18677 18678
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_DOCBOOK2MAN" >&5
$as_echo "$ac_cv_path_DOCBOOK2MAN" >&6; }
18679 18680 18681
DOCBOOK2MAN=$ac_cv_path_DOCBOOK2MAN


18682

18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813
#
# Check for test tools
#
if test "$enable_tap_tests" = yes; then
  for ac_prog in prove
do
  # Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_PROVE+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -n "$PROVE"; then
  ac_cv_prog_PROVE="$PROVE" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_PROVE="$ac_prog"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS

fi
fi
PROVE=$ac_cv_prog_PROVE
if test -n "$PROVE"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PROVE" >&5
$as_echo "$PROVE" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


  test -n "$PROVE" && break
done

  if test -z "$PROVE"; then
    as_fn_error $? "prove not found" "$LINENO" 5
  fi
  if test -z "$PERL"; then
    as_fn_error $? "Perl not found" "$LINENO" 5
  fi
  # Check for necessary modules






# Make sure we have perl
if test -z "$PERL"; then
# Extract the first word of "perl", so it can be a program name with args.
set dummy perl; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_prog_PERL+:} false; then :
  $as_echo_n "(cached) " >&6
else
  if test -n "$PERL"; then
  ac_cv_prog_PERL="$PERL" # Let the user override the test.
else
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    for ac_exec_ext in '' $ac_executable_extensions; do
  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
    ac_cv_prog_PERL="perl"
    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
    break 2
  fi
done
  done
IFS=$as_save_IFS

fi
fi
PERL=$ac_cv_prog_PERL
if test -n "$PERL"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5
$as_echo "$PERL" >&6; }
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi


fi

if test "x$PERL" != x; then
  ax_perl_modules_failed=0
  for ax_perl_module in 'IPC::Run' ; do
    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perl module $ax_perl_module" >&5
$as_echo_n "checking for perl module $ax_perl_module... " >&6; }

    # Would be nice to log result here, but can't rely on autoconf internals
    $PERL -e "use $ax_perl_module; exit" > /dev/null 2>&1
    if test $? -ne 0; then
      { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; };
      ax_perl_modules_failed=1
   else
      { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
$as_echo "ok" >&6; };
    fi
  done

  # Run optional shell commands
  if test "$ax_perl_modules_failed" = 0; then
    :

  else
    :
    as_fn_error $? "Perl module IPC::Run is required to run TAP tests" "$LINENO" 5
  fi
else
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find perl" >&5
$as_echo "$as_me: WARNING: could not find perl" >&2;}
fi
fi
18814 18815 18816 18817 18818
# Thread testing

# We have to run the thread test near the end so we have all our symbols
# defined.  Cross compiling throws a warning.
#
18819
if test "$enable_thread_safety_force" = yes; then
18820
if test "$PORTNAME" != "win32"
18821
then
18822
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
18823
*** Skipping thread test program.  --enable-thread-safety-force was used.
18824 18825
*** Run the program in src/test/thread on the your machine and add proper
*** locking function calls to your applications to guarantee thread safety.
18826
" >&5
18827
$as_echo "$as_me: WARNING:
18828
*** Skipping thread test program.  --enable-thread-safety-force was used.
18829 18830
*** Run the program in src/test/thread on the your machine and add proper
*** locking function calls to your applications to guarantee thread safety.
18831
" >&2;}
18832
else
18833 18834
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** skipping thread test on Win32" >&5
$as_echo "$as_me: WARNING: *** skipping thread test on Win32" >&2;}
18835
fi
18836
elif test "$enable_thread_safety" = yes; then
18837
if test "$PORTNAME" != "win32"
18838
then
18839 18840
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking thread safety of required library functions" >&5
$as_echo_n "checking thread safety of required library functions... " >&6; }
18841 18842 18843 18844 18845

_CFLAGS="$CFLAGS"
_LIBS="$LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS -DIN_CONFIGURE"
LIBS="$LIBS $PTHREAD_LIBS"
18846 18847 18848 18849
if test "$cross_compiling" = yes; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: maybe" >&5
$as_echo "maybe" >&6; }
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
18850
*** Skipping thread test program because of cross-compile build.
18851
*** Run the program in src/test/thread on the target machine.
18852
" >&5
18853
$as_echo "$as_me: WARNING:
18854
*** Skipping thread test program because of cross-compile build.
18855
*** Run the program in src/test/thread on the target machine.
18856 18857
" >&2;}
else
18858
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
18859
/* end confdefs.h.  */
18860
#include "$srcdir/src/test/thread/thread_test.c"
18861
_ACEOF
18862 18863 18864
if ac_fn_c_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
18865
else
18866 18867 18868 18869
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
  as_fn_error $? "thread test program failed
This platform is not thread-safe.  Check the file 'config.log' for the
18870 18871 18872 18873 18874
exact reason.

You can use the configure option --enable-thread-safety-force to force
threads to be enabled.  But you must then run the program in
src/test/thread and add locking function calls to your applications to
18875
guarantee thread safety." "$LINENO" 5
18876
fi
18877 18878
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
18879
fi
18880

18881 18882
CFLAGS="$_CFLAGS"
LIBS="$_LIBS"
18883
else
18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** skipping thread test on Win32" >&5
$as_echo "$as_me: WARNING: *** skipping thread test on Win32" >&2;}
fi
fi

# If compiler will take -Wl,--as-needed (or various platform-specific
# spellings thereof) then add that to LDFLAGS.  This is much easier than
# trying to filter LIBS to the minimum for each executable.
# (Note that shared library links won't use this switch, though.)
# On (at least) some Red-Hat-derived systems, this switch breaks linking to
# libreadline; therefore we postpone testing it until we know what library
# dependencies readline has.  The test code will try to link with $LIBS.
if test "$with_readline" = yes; then
  link_test_func=readline
else
  link_test_func=exit
fi

18902 18903 18904
if test "$PORTNAME" = "darwin"; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wl,-dead_strip_dylibs" >&5
$as_echo_n "checking if $CC supports -Wl,-dead_strip_dylibs... " >&6; }
18905
pgac_save_LDFLAGS=$LDFLAGS
18906 18907
LDFLAGS="$pgac_save_LDFLAGS -Wl,-dead_strip_dylibs"
if test "$cross_compiling" = yes; then :
18908
  LDFLAGS="$pgac_save_LDFLAGS"
18909 18910
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: assuming no" >&5
$as_echo "assuming no" >&6; }
18911
else
18912
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
18913
/* end confdefs.h.  */
18914
extern void $link_test_func (); void (*fptr) () = $link_test_func;
18915 18916 18917
int
main ()
{
18918

18919 18920 18921 18922
  ;
  return 0;
}
_ACEOF
18923 18924 18925
if ac_fn_c_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
18926
else
18927 18928 18929
  LDFLAGS="$pgac_save_LDFLAGS"
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
18930
fi
18931 18932
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
18933 18934
fi

18935

18936
elif test "$PORTNAME" = "openbsd"; then
18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wl,-Bdynamic" >&5
$as_echo_n "checking if $CC supports -Wl,-Bdynamic... " >&6; }
pgac_save_LDFLAGS=$LDFLAGS
LDFLAGS="$pgac_save_LDFLAGS -Wl,-Bdynamic"
if test "$cross_compiling" = yes; then :
  LDFLAGS="$pgac_save_LDFLAGS"
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: assuming no" >&5
$as_echo "assuming no" >&6; }
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
extern void $link_test_func (); void (*fptr) () = $link_test_func;
int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  LDFLAGS="$pgac_save_LDFLAGS"
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
fi


else
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wl,--as-needed" >&5
$as_echo_n "checking if $CC supports -Wl,--as-needed... " >&6; }
pgac_save_LDFLAGS=$LDFLAGS
LDFLAGS="$pgac_save_LDFLAGS -Wl,--as-needed"
if test "$cross_compiling" = yes; then :
  LDFLAGS="$pgac_save_LDFLAGS"
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: assuming no" >&5
$as_echo "assuming no" >&6; }
else
  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */
extern void $link_test_func (); void (*fptr) () = $link_test_func;
int
main ()
{

  ;
  return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else
  LDFLAGS="$pgac_save_LDFLAGS"
               { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  conftest.$ac_objext conftest.beam conftest.$ac_ext
19001
fi
19002 19003


19004
fi
19005

19006 19007 19008 19009 19010 19011 19012 19013
# Begin output steps

{ $as_echo "$as_me:${as_lineno-$LINENO}: using CFLAGS=$CFLAGS" >&5
$as_echo "$as_me: using CFLAGS=$CFLAGS" >&6;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: using CPPFLAGS=$CPPFLAGS" >&5
$as_echo "$as_me: using CPPFLAGS=$CPPFLAGS" >&6;}
{ $as_echo "$as_me:${as_lineno-$LINENO}: using LDFLAGS=$LDFLAGS" >&5
$as_echo "$as_me: using LDFLAGS=$LDFLAGS" >&6;}
M
Marbin Tan 已提交
19014 19015
{ $as_echo "$as_me:${as_lineno-$LINENO}: using LIBS=$LIBS" >&5
$as_echo "$as_me: using LIBS=$LIBS" >&6;}
19016

19017 19018 19019 19020 19021 19022 19023 19024 19025
# Create compiler version string
if test x"$GCC" = x"yes" ; then
  cc_string="GCC `${CC} --version | sed q`"
else
  cc_string=$CC
fi


cat >>confdefs.h <<_ACEOF
19026
#define PG_VERSION_STR "PostgreSQL $PG_VERSION (Greenplum Database $GP_VERSION) on $host, compiled by $cc_string, `expr $ac_cv_sizeof_void_p \* 8`-bit"
19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041
_ACEOF


# Supply a numeric version string for use by 3rd party add-ons
# awk -F is a regex on some platforms, and not on others, so make "." a tab
PG_VERSION_NUM="`echo "$PG_PACKAGE_VERSION" | sed 's/[A-Za-z].*$//' |
tr '.' '	' |
$AWK '{printf "%d%02d%02d", $1, $2, (NF >= 3) ? $3 : 0}'`"

cat >>confdefs.h <<_ACEOF
#define PG_VERSION_NUM $PG_VERSION_NUM
_ACEOF



19042
# prepare build tree if outside source tree
19043 19044 19045
# Note 1: test -ef might not exist, but it's more reliable than `pwd`.
# Note 2: /bin/pwd might be better than shell's built-in at getting
#         a symlink-free name.
19046 19047 19048 19049 19050
if ( test "$srcdir" -ef . ) >/dev/null 2>&1 || test "`cd $srcdir && /bin/pwd`" = "`/bin/pwd`"; then
  vpath_build=no
else
  vpath_build=yes
  if test "$no_create" != yes; then
19051
    $as_echo_n "preparing build tree... " >&6
19052 19053
    pgac_abs_top_srcdir=`cd "$srcdir" && pwd`
    $SHELL "$ac_aux_dir/prep_buildtree" "$pgac_abs_top_srcdir" "." \
19054 19055 19056
      || as_fn_error $? "failed" "$LINENO" 5
    { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
$as_echo "done" >&6; }
19057
  fi
19058 19059
fi

19060

19061

19062
ac_config_files="$ac_config_files GNUmakefile src/Makefile.global"
19063 19064


19065
ac_config_links="$ac_config_links src/backend/port/dynloader.c:src/backend/port/dynloader/${template}.c src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION} src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION} src/backend/port/pg_latch.c:${LATCH_IMPLEMENTATION} src/include/dynloader.h:src/backend/port/dynloader/${template}.h src/include/pg_config_os.h:src/include/port/${template}.h src/Makefile.port:src/makefiles/Makefile.${template}"
19066 19067


19068
if test "$PORTNAME" = "win32"; then
19069
ac_config_commands="$ac_config_commands check_win32_symlinks"
19070

19071
fi
19072

19073
ac_config_headers="$ac_config_headers src/include/pg_config.h"
19074 19075


19076
ac_config_headers="$ac_config_headers src/interfaces/ecpg/include/ecpg_config.h"
19077

19078 19079

cat >confcache <<\_ACEOF
19080 19081
# This file is a shell script that caches the results of configure
# tests run on this system so they can be shared between configure
19082 19083 19084
# scripts and configure runs, see configure's option --config-cache.
# It is not useful on other systems.  If it contains results you don't
# want to keep, you may remove or edit it.
19085
#
19086 19087
# config.status only pays attention to the cache file if you give it
# the --recheck option to rerun configure.
19088
#
19089
# `ac_cv_env_foo' variables (set or unset) will be overridden when
19090 19091 19092 19093 19094
# loading this file, other *unset* `ac_cv_foo' will be assigned the
# following values.

_ACEOF

19095 19096
# The following way of writing the cache mishandles newlines in values,
# but we know of no workaround that is simple, portable, and efficient.
19097
# So, we kill variables containing newlines.
19098 19099
# 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.
19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116
(
  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
    eval ac_val=\$$ac_var
    case $ac_val in #(
    *${as_nl}*)
      case $ac_var in #(
      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
      esac
      case $ac_var in #(
      _ | IFS | as_nl) ;; #(
      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
      *) { eval $ac_var=; unset $ac_var;} ;;
      esac ;;
    esac
  done

19117
  (set) 2>&1 |
19118 19119 19120 19121
    case $as_nl`(ac_space=' '; set) 2>&1` in #(
    *${as_nl}ac_space=\ *)
      # `set' does not quote correctly, so add quotes: double-quote
      # substitution turns \\\\ into \\, and sed turns \\ into \.
19122
      sed -n \
19123 19124
	"s/'/'\\\\''/g;
	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
19125
      ;; #(
19126 19127
    *)
      # `set' quotes correctly as required by POSIX, so do not add quotes.
19128
      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
19129
      ;;
19130 19131 19132
    esac |
    sort
) |
19133
  sed '
19134
     /^ac_cv_env_/b end
19135
     t clear
19136
     :clear
19137 19138
     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
     t end
19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157
     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
     :end' >>confcache
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  if test -w "$cache_file"; then
    if test "x$cache_file" != "x/dev/null"; then
      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
$as_echo "$as_me: updating cache $cache_file" >&6;}
      if test ! -f "$cache_file" || test -h "$cache_file"; then
	cat confcache >"$cache_file"
      else
        case $cache_file in #(
        */* | ?:*)
	  mv -f confcache "$cache_file"$$ &&
	  mv -f "$cache_file"$$ "$cache_file" ;; #(
        *)
	  mv -f confcache "$cache_file" ;;
	esac
      fi
    fi
19158
  else
19159 19160
    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
19161
  fi
19162
fi
19163
rm -f confcache
19164

19165 19166 19167 19168 19169
test "x$prefix" = xNONE && prefix=$ac_default_prefix
# Let make expand exec_prefix.
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'

DEFS=-DHAVE_CONFIG_H
19170

19171 19172
ac_libobjs=
ac_ltlibobjs=
19173
U=
19174 19175
for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  # 1. Remove the extension, and $U if already installed.
19176 19177 19178 19179 19180 19181
  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
  #    will be set to the directory where LIBOBJS objects are built.
  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
19182 19183 19184 19185 19186 19187
done
LIBOBJS=$ac_libobjs

LTLIBOBJS=$ac_ltlibobjs


19188

19189 19190 19191

: "${CONFIG_STATUS=./config.status}"
ac_write_fail=0
19192 19193
ac_clean_files_save=$ac_clean_files
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
19194 19195 19196 19197
{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
as_write_fail=0
cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
19198 19199
#! $SHELL
# Generated by $as_me.
19200 19201
# Run this file to recreate the current configuration.
# Compiler output produced by configure, useful for debugging
19202
# configure, is in config.log if it exists.
19203

19204
debug=false
19205 19206
ac_cs_recheck=false
ac_cs_silent=false
19207

19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218
SHELL=\${CONFIG_SHELL-$SHELL}
export SHELL
_ASEOF
cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
## -------------------- ##
## M4sh Initialization. ##
## -------------------- ##

# Be more Bourne compatible
DUALCASE=1; export DUALCASE # for MKS sh
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
19219 19220
  emulate sh
  NULLCMD=:
19221
  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
19222 19223
  # is contrary to our usage.  Disable this feature.
  alias -g '${1+"$@"}'='"$@"'
19224 19225 19226 19227 19228 19229 19230 19231
  setopt NO_GLOB_SUBST
else
  case `(set -o) 2>/dev/null` in #(
  *posix*) :
    set -o posix ;; #(
  *) :
     ;;
esac
19232 19233
fi

19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279

as_nl='
'
export as_nl
# Printing a long string crashes Solaris 7 /usr/bin/printf.
as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
# Prefer a ksh shell builtin over an external printf program on Solaris,
# but without wasting forks for bash or zsh.
if test -z "$BASH_VERSION$ZSH_VERSION" \
    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  as_echo='print -r --'
  as_echo_n='print -rn --'
elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  as_echo='printf %s\n'
  as_echo_n='printf %s'
else
  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
    as_echo_n='/usr/ucb/echo -n'
  else
    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
    as_echo_n_body='eval
      arg=$1;
      case $arg in #(
      *"$as_nl"*)
	expr "X$arg" : "X\\(.*\\)$as_nl";
	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
      esac;
      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
    '
    export as_echo_n_body
    as_echo_n='sh -c $as_echo_n_body as_echo'
  fi
  export as_echo_body
  as_echo='sh -c $as_echo_body as_echo'
fi

# The user is always right.
if test "${PATH_SEPARATOR+set}" != set; then
  PATH_SEPARATOR=:
  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
      PATH_SEPARATOR=';'
  }
19280 19281
fi

19282

19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322
# IFS
# We need space, tab and new line, in precisely that order.  Quoting is
# there to prevent editors from complaining about space-tab.
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
# splitting by setting IFS to empty value.)
IFS=" ""	$as_nl"

# Find who we are.  Look in the path if we contain no directory separator.
as_myself=
case $0 in #((
  *[\\/]* ) as_myself=$0 ;;
  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
for as_dir in $PATH
do
  IFS=$as_save_IFS
  test -z "$as_dir" && as_dir=.
    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  done
IFS=$as_save_IFS

     ;;
esac
# We did not find ourselves, most probably we were run as `sh COMMAND'
# in which case we are not to be found in the path.
if test "x$as_myself" = x; then
  as_myself=$0
fi
if test ! -f "$as_myself"; then
  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  exit 1
fi

# Unset variables that we do not need and which cause bugs (e.g. in
# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
# suppresses any "Segmentation fault" message there.  '((' could
# trigger a bug in pdksh 5.2.14.
for as_var in BASH_ENV ENV MAIL MAILPATH
do eval test x\${$as_var+set} = xset \
  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
done
19323 19324 19325 19326 19327
PS1='$ '
PS2='> '
PS4='+ '

# NLS nuisances.
19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347
LC_ALL=C
export LC_ALL
LANGUAGE=C
export LANGUAGE

# CDPATH.
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH


# as_fn_error STATUS ERROR [LINENO LOG_FD]
# ----------------------------------------
# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
# script with STATUS, using 1 if that was 0.
as_fn_error ()
{
  as_status=$1; test $as_status -eq 0 && as_status=1
  if test "$4"; then
    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
19348
  fi
19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413
  $as_echo "$as_me: error: $2" >&2
  as_fn_exit $as_status
} # as_fn_error


# as_fn_set_status STATUS
# -----------------------
# Set $? to STATUS, without forking.
as_fn_set_status ()
{
  return $1
} # as_fn_set_status

# as_fn_exit STATUS
# -----------------
# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
as_fn_exit ()
{
  set +e
  as_fn_set_status $1
  exit $1
} # as_fn_exit

# as_fn_unset VAR
# ---------------
# Portably unset VAR.
as_fn_unset ()
{
  { eval $1=; unset $1;}
}
as_unset=as_fn_unset
# as_fn_append VAR VALUE
# ----------------------
# Append the text in VALUE to the end of the definition contained in VAR. Take
# advantage of any shell optimizations that allow amortized linear growth over
# repeated appends, instead of the typical quadratic growth present in naive
# implementations.
if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  eval 'as_fn_append ()
  {
    eval $1+=\$2
  }'
else
  as_fn_append ()
  {
    eval $1=\$$1\$2
  }
fi # as_fn_append

# as_fn_arith ARG...
# ------------------
# Perform arithmetic evaluation on the ARGs, and store the result in the
# global $as_val. Take advantage of shells that can avoid forks. The arguments
# must be portable across $(()) and expr.
if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  eval 'as_fn_arith ()
  {
    as_val=$(( $* ))
  }'
else
  as_fn_arith ()
  {
    as_val=`expr "$@" || test $? -eq 1`
  }
fi # as_fn_arith
19414

19415 19416 19417

if expr a : '\(a\)' >/dev/null 2>&1 &&
   test "X`expr 00001 : '.*\(...\)'`" = X001; then
19418 19419 19420 19421 19422
  as_expr=expr
else
  as_expr=false
fi

19423
if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
19424 19425 19426 19427
  as_basename=basename
else
  as_basename=false
fi
19428

19429 19430 19431 19432 19433
if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  as_dirname=dirname
else
  as_dirname=false
fi
19434

19435
as_me=`$as_basename -- "$0" ||
19436 19437
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
	 X"$0" : 'X\(//\)$' \| \
19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452
	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X/"$0" |
    sed '/^.*\/\([^/][^/]*\)\/*$/{
	    s//\1/
	    q
	  }
	  /^X\/\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\/\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
M
Michael Meskes 已提交
19453 19454 19455 19456 19457 19458 19459 19460

# Avoid depending upon Character Ranges.
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
as_cr_Letters=$as_cr_letters$as_cr_LETTERS
as_cr_digits='0123456789'
as_cr_alnum=$as_cr_Letters$as_cr_digits

19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471
ECHO_C= ECHO_N= ECHO_T=
case `echo -n x` in #(((((
-n*)
  case `echo 'xy\c'` in
  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
  xy)  ECHO_C='\c';;
  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
       ECHO_T='	';;
  esac;;
*)
  ECHO_N='-n';;
19472
esac
19473

19474 19475 19476
rm -f conf$$ conf$$.exe conf$$.file
if test -d conf$$.dir; then
  rm -f conf$$.dir/conf$$.file
19477
else
19478 19479
  rm -f conf$$.dir
  mkdir conf$$.dir 2>/dev/null
19480
fi
19481 19482
if (echo >conf$$.file) 2>/dev/null; then
  if ln -s conf$$.file conf$$ 2>/dev/null; then
M
Michael Meskes 已提交
19483
    as_ln_s='ln -s'
19484 19485 19486 19487 19488 19489 19490 19491 19492 19493
    # ... but there are two gotchas:
    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
    # In both cases, we have to default to `cp -pR'.
    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
      as_ln_s='cp -pR'
  elif ln conf$$.file conf$$ 2>/dev/null; then
    as_ln_s=ln
  else
    as_ln_s='cp -pR'
M
Michael Meskes 已提交
19494
  fi
19495
else
19496
  as_ln_s='cp -pR'
19497
fi
19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null


# as_fn_mkdir_p
# -------------
# Create "$as_dir" as a directory, including parents if necessary.
as_fn_mkdir_p ()
{

  case $as_dir in #(
  -*) as_dir=./$as_dir;;
  esac
  test -d "$as_dir" || eval $as_mkdir_p || {
    as_dirs=
    while :; do
      case $as_dir in #(
      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
      *) as_qdir=$as_dir;;
      esac
      as_dirs="'$as_qdir' $as_dirs"
      as_dir=`$as_dirname -- "$as_dir" ||
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
	 X"$as_dir" : 'X\(//\)[^/]' \| \
	 X"$as_dir" : 'X\(//\)$' \| \
	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X"$as_dir" |
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)[^/].*/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
      test -d "$as_dir" && break
    done
    test -z "$as_dirs" || eval "mkdir $as_dirs"
  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"

19547

19548
} # as_fn_mkdir_p
19549
if mkdir -p . 2>/dev/null; then
19550
  as_mkdir_p='mkdir -p "$as_dir"'
19551 19552 19553 19554 19555
else
  test -d ./-p && rmdir ./-p
  as_mkdir_p=false
fi

19556 19557 19558 19559 19560 19561 19562 19563 19564 19565

# as_fn_executable_p FILE
# -----------------------
# Test if FILE is an executable regular file.
as_fn_executable_p ()
{
  test -f "$1" && test -x "$1"
} # as_fn_executable_p
as_test_x='test -x'
as_executable_p=as_fn_executable_p
19566 19567

# Sed expression to map a string onto a valid CPP name.
19568
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
19569 19570

# Sed expression to map a string onto a valid variable name.
19571
as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
19572 19573 19574


exec 6>&1
19575 19576 19577 19578 19579 19580 19581 19582
## ----------------------------------- ##
## Main body of $CONFIG_STATUS script. ##
## ----------------------------------- ##
_ASEOF
test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1

cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# Save the log message, to keep $0 and so on meaningful, and to
19583
# report actual input values of CONFIG_FILES etc. instead of their
19584 19585
# values after options handling.
ac_log="
19586
This file was extended by Greenplum Database $as_me 6.0.0-alpha.0, which was
19587
generated by GNU Autoconf 2.69.  Invocation command line was
19588 19589 19590 19591 19592 19593 19594

  CONFIG_FILES    = $CONFIG_FILES
  CONFIG_HEADERS  = $CONFIG_HEADERS
  CONFIG_LINKS    = $CONFIG_LINKS
  CONFIG_COMMANDS = $CONFIG_COMMANDS
  $ $0 $@

19595 19596 19597
on `(hostname || uname -n) 2>/dev/null | sed 1q`
"

19598 19599
_ACEOF

19600 19601 19602
case $ac_config_files in *"
"*) set x $ac_config_files; shift; ac_config_files=$*;;
esac
19603

19604 19605 19606
case $ac_config_headers in *"
"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
esac
M
Michael Meskes 已提交
19607 19608


19609 19610 19611 19612 19613 19614
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
# Files that config.status was made for.
config_files="$ac_config_files"
config_headers="$ac_config_headers"
config_links="$ac_config_links"
config_commands="$ac_config_commands"
19615

19616
_ACEOF
M
Michael Meskes 已提交
19617

19618
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
19619
ac_cs_usage="\
19620 19621 19622
\`$as_me' instantiates files and other configuration actions
from templates according to the current configuration.  Unless the files
and actions are specified as TAGs, all are instantiated by default.
19623

19624
Usage: $0 [OPTION]... [TAG]...
19625 19626

  -h, --help       print this help, then exit
19627 19628 19629 19630
  -V, --version    print version number and configuration settings, then exit
      --config     print configuration, then exit
  -q, --quiet, --silent
                   do not print progress messages
19631 19632
  -d, --debug      don't remove temporary files
      --recheck    update $as_me by reconfiguring in the same conditions
19633 19634 19635 19636
      --file=FILE[:TEMPLATE]
                   instantiate the configuration file FILE
      --header=FILE[:TEMPLATE]
                   instantiate the configuration header FILE
19637 19638 19639 19640 19641 19642 19643 19644 19645 19646

Configuration files:
$config_files

Configuration headers:
$config_headers

Configuration links:
$config_links

19647 19648 19649
Configuration commands:
$config_commands

19650
Report bugs to <support@greenplum.org>."
M
Michael Meskes 已提交
19651

19652 19653 19654
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
19655
ac_cs_version="\\
19656
Greenplum Database config.status 6.0.0-alpha.0
19657 19658
configured by $0, generated by GNU Autoconf 2.69,
  with options \\"\$ac_cs_config\\"
19659

19660
Copyright (C) 2012 Free Software Foundation, Inc.
19661 19662
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
19663 19664 19665 19666 19667 19668

ac_pwd='$ac_pwd'
srcdir='$srcdir'
MKDIR_P='$MKDIR_P'
AWK='$AWK'
test -n "\$AWK" || AWK=awk
19669 19670
_ACEOF

19671 19672
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# The default lists apply if the user does not specify any file.
19673 19674 19675 19676
ac_need_defaults=:
while test $# != 0
do
  case $1 in
19677 19678 19679
  --*=?*)
    ac_option=`expr "X$1" : 'X\([^=]*\)='`
    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
19680 19681
    ac_shift=:
    ;;
19682 19683 19684 19685 19686 19687
  --*=)
    ac_option=`expr "X$1" : 'X\([^=]*\)='`
    ac_optarg=
    ac_shift=:
    ;;
  *)
19688 19689 19690
    ac_option=$1
    ac_optarg=$2
    ac_shift=shift
19691 19692 19693
    ;;
  esac

19694
  case $ac_option in
19695
  # Handling of the options.
19696 19697
  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
    ac_cs_recheck=: ;;
19698 19699 19700 19701 19702
  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
    $as_echo "$ac_cs_version"; exit ;;
  --config | --confi | --conf | --con | --co | --c )
    $as_echo "$ac_cs_config"; exit ;;
  --debug | --debu | --deb | --de | --d | -d )
19703 19704
    debug=: ;;
  --file | --fil | --fi | --f )
19705
    $ac_shift
19706 19707 19708 19709 19710
    case $ac_optarg in
    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
    '') as_fn_error $? "missing file argument" ;;
    esac
    as_fn_append CONFIG_FILES " '$ac_optarg'"
19711 19712
    ac_need_defaults=false;;
  --header | --heade | --head | --hea )
19713
    $ac_shift
19714 19715 19716 19717
    case $ac_optarg in
    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
    esac
    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
19718
    ac_need_defaults=false;;
19719 19720 19721 19722 19723 19724
  --he | --h)
    # Conflict between --help and --header
    as_fn_error $? "ambiguous option: \`$1'
Try \`$0 --help' for more information.";;
  --help | --hel | -h )
    $as_echo "$ac_cs_usage"; exit ;;
19725 19726 19727
  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  | -silent | --silent | --silen | --sile | --sil | --si | --s)
    ac_cs_silent=: ;;
19728 19729

  # This is an error.
19730 19731
  -*) as_fn_error $? "unrecognized option: \`$1'
Try \`$0 --help' for more information." ;;
19732

19733 19734
  *) as_fn_append ac_config_targets " $1"
     ac_need_defaults=false ;;
19735 19736 19737 19738 19739

  esac
  shift
done

19740 19741
ac_configure_extra_args=

M
Michael Meskes 已提交
19742 19743 19744 19745 19746
if $ac_cs_silent; then
  exec 6>/dev/null
  ac_configure_extra_args="$ac_configure_extra_args --silent"
fi

19747
_ACEOF
19748
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
M
Michael Meskes 已提交
19749
if \$ac_cs_recheck; then
19750 19751 19752 19753 19754 19755
  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
  shift
  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
  CONFIG_SHELL='$SHELL'
  export CONFIG_SHELL
  exec "\$@"
M
Michael Meskes 已提交
19756 19757
fi

19758
_ACEOF
19759 19760 19761 19762 19763 19764 19765 19766 19767
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
exec 5>>config.log
{
  echo
  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
## Running $as_me. ##
_ASBOX
  $as_echo "$ac_log"
} >&5
19768

19769 19770 19771
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
_ACEOF
19772

19773
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
M
Michael Meskes 已提交
19774

19775
# Handling of arguments.
19776 19777
for ac_config_target in $ac_config_targets
do
19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793
  case $ac_config_target in
    "src/backend/port/tas.s") CONFIG_LINKS="$CONFIG_LINKS src/backend/port/tas.s:src/backend/port/tas/${tas_file}" ;;
    "GNUmakefile") CONFIG_FILES="$CONFIG_FILES GNUmakefile" ;;
    "src/Makefile.global") CONFIG_FILES="$CONFIG_FILES src/Makefile.global" ;;
    "src/backend/port/dynloader.c") CONFIG_LINKS="$CONFIG_LINKS src/backend/port/dynloader.c:src/backend/port/dynloader/${template}.c" ;;
    "src/backend/port/pg_sema.c") CONFIG_LINKS="$CONFIG_LINKS src/backend/port/pg_sema.c:${SEMA_IMPLEMENTATION}" ;;
    "src/backend/port/pg_shmem.c") CONFIG_LINKS="$CONFIG_LINKS src/backend/port/pg_shmem.c:${SHMEM_IMPLEMENTATION}" ;;
    "src/backend/port/pg_latch.c") CONFIG_LINKS="$CONFIG_LINKS src/backend/port/pg_latch.c:${LATCH_IMPLEMENTATION}" ;;
    "src/include/dynloader.h") CONFIG_LINKS="$CONFIG_LINKS src/include/dynloader.h:src/backend/port/dynloader/${template}.h" ;;
    "src/include/pg_config_os.h") CONFIG_LINKS="$CONFIG_LINKS src/include/pg_config_os.h:src/include/port/${template}.h" ;;
    "src/Makefile.port") CONFIG_LINKS="$CONFIG_LINKS src/Makefile.port:src/makefiles/Makefile.${template}" ;;
    "check_win32_symlinks") CONFIG_COMMANDS="$CONFIG_COMMANDS check_win32_symlinks" ;;
    "src/include/pg_config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/include/pg_config.h" ;;
    "src/interfaces/ecpg/include/ecpg_config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/interfaces/ecpg/include/ecpg_config.h" ;;

  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
19794
  esac
19795
done
19796

19797

19798 19799 19800 19801 19802 19803 19804 19805
# If the user did not use the arguments to specify the items to instantiate,
# then the envvar interface is used.  Set only those that are not.
# We use the long form for the default assignment because of an extremely
# bizarre bug on SunOS 4.1.3.
if $ac_need_defaults; then
  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
  test "${CONFIG_LINKS+set}" = set || CONFIG_LINKS=$config_links
19806
  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
19807 19808
fi

19809
# Have a temporary directory for convenience.  Make it in the build tree
19810
# simply because there is no reason against having it here, and in addition,
19811
# creating and moving files from /tmp can sometimes cause problems.
19812 19813 19814
# Hook for its removal unless debugging.
# Note that there is a small window in which the directory will not be cleaned:
# after its creation but before its name has been assigned to `$tmp'.
19815 19816
$debug ||
{
19817 19818 19819 19820 19821 19822
  tmp= ac_tmp=
  trap 'exit_status=$?
  : "${ac_tmp:=$tmp}"
  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
' 0
  trap 'as_fn_exit 1' 1 2 13 15
19823 19824
}
# Create a (secure) tmp directory for tmp files.
19825

19826
{
19827 19828
  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  test -d "$tmp"
19829 19830
}  ||
{
19831 19832 19833 19834
  tmp=./conf$$-$RANDOM
  (umask 077 && mkdir "$tmp")
} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
ac_tmp=$tmp
19835

19836 19837 19838 19839
# Set up the scripts for CONFIG_FILES section.
# No need to generate them if there are no CONFIG_FILES.
# This happens for instance with `./config.status config.h'.
if test -n "$CONFIG_FILES"; then
M
Michael Meskes 已提交
19840

19841

19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854
ac_cr=`echo X | tr X '\015'`
# On cygwin, bash can eat \r inside `` if the user requested igncr.
# But we know of no other shell where ac_cr would be empty at this
# point, so we can use a bashism as a fallback.
if test "x$ac_cr" = x; then
  eval ac_cr=\$\'\\r\'
fi
ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  ac_cs_awk_cr='\\r'
else
  ac_cs_awk_cr=$ac_cr
fi
19855

19856
echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
19857 19858
_ACEOF

19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876

{
  echo "cat >conf$$subs.awk <<_ACEOF" &&
  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  echo "_ACEOF"
} >conf$$subs.sh ||
  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
ac_delim='%!_!# '
for ac_last_try in false false false false false :; do
  . ./conf$$subs.sh ||
    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5

  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
  if test $ac_delim_n = $ac_delim_num; then
    break
  elif $ac_last_try; then
    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
M
Michael Meskes 已提交
19877
  else
19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952
    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  fi
done
rm -f conf$$subs.sh

cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
_ACEOF
sed -n '
h
s/^/S["/; s/!.*/"]=/
p
g
s/^[^!]*!//
:repl
t repl
s/'"$ac_delim"'$//
t delim
:nl
h
s/\(.\{148\}\)..*/\1/
t more1
s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
p
n
b repl
:more1
s/["\\]/\\&/g; s/^/"/; s/$/"\\/
p
g
s/.\{148\}//
t nl
:delim
h
s/\(.\{148\}\)..*/\1/
t more2
s/["\\]/\\&/g; s/^/"/; s/$/"/
p
b
:more2
s/["\\]/\\&/g; s/^/"/; s/$/"\\/
p
g
s/.\{148\}//
t delim
' <conf$$subs.awk | sed '
/^[^""]/{
  N
  s/\n//
}
' >>$CONFIG_STATUS || ac_write_fail=1
rm -f conf$$subs.awk
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
_ACAWK
cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
  for (key in S) S_is_set[key] = 1
  FS = ""

}
{
  line = $ 0
  nfields = split(line, field, "@")
  substed = 0
  len = length(field[1])
  for (i = 2; i < nfields; i++) {
    key = field[i]
    keylen = length(key)
    if (S_is_set[key]) {
      value = S[key]
      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
      len += length(value) + length(field[++i])
      substed = 1
    } else
      len += 1 + keylen
  }
M
Michael Meskes 已提交
19953

19954 19955
  print line
}
19956

19957 19958 19959 19960 19961
_ACAWK
_ACEOF
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
M
Michael Meskes 已提交
19962
else
19963 19964 19965 19966
  cat
fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
_ACEOF
19967

19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989
# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
# trailing colons and then remove the whole line if VPATH becomes empty
# (actually we leave an empty line to preserve line numbers).
if test "x$srcdir" = x.; then
  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
h
s///
s/^/:/
s/[	 ]*$/:/
s/:\$(srcdir):/:/g
s/:\${srcdir}:/:/g
s/:@srcdir@:/:/g
s/^:*//
s/:*$//
x
s/\(=[	 ]*\).*/\1/
G
s/\n//
s/^[^=]*=[	 ]*$//
}'
fi
19990

19991 19992
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
fi # test -n "$CONFIG_FILES"
19993

19994 19995 19996 19997 19998 19999 20000
# Set up the scripts for CONFIG_HEADERS section.
# No need to generate them if there are no CONFIG_HEADERS.
# This happens for instance with `./config.status Makefile'.
if test -n "$CONFIG_HEADERS"; then
cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
BEGIN {
_ACEOF
20001

20002 20003 20004
# Transform confdefs.h into an awk script `defines.awk', embedded as
# here-document in config.status, that substitutes the proper values into
# config.h.in to produce config.h.
20005

20006 20007 20008 20009 20010 20011 20012 20013 20014
# Create a delimiter string that does not exist in confdefs.h, to ease
# handling of long lines.
ac_delim='%!_!# '
for ac_last_try in false false :; do
  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
  if test -z "$ac_tt"; then
    break
  elif $ac_last_try; then
    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
M
Michael Meskes 已提交
20015
  else
20016
    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
M
Michael Meskes 已提交
20017 20018
  fi
done
20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096

# For the awk script, D is an array of macro values keyed by name,
# likewise P contains macro parameters if any.  Preserve backslash
# newline sequences.

ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
sed -n '
s/.\{148\}/&'"$ac_delim"'/g
t rset
:rset
s/^[	 ]*#[	 ]*define[	 ][	 ]*/ /
t def
d
:def
s/\\$//
t bsnl
s/["\\]/\\&/g
s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
D["\1"]=" \3"/p
s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2"/p
d
:bsnl
s/["\\]/\\&/g
s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
D["\1"]=" \3\\\\\\n"\\/p
t cont
s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
t cont
d
:cont
n
s/.\{148\}/&'"$ac_delim"'/g
t clear
:clear
s/\\$//
t bsnlc
s/["\\]/\\&/g; s/^/"/; s/$/"/p
d
:bsnlc
s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
b cont
' <confdefs.h | sed '
s/'"$ac_delim"'/"\\\
"/g' >>$CONFIG_STATUS || ac_write_fail=1

cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  for (key in D) D_is_set[key] = 1
  FS = ""
}
/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
  line = \$ 0
  split(line, arg, " ")
  if (arg[1] == "#") {
    defundef = arg[2]
    mac1 = arg[3]
  } else {
    defundef = substr(arg[1], 2)
    mac1 = arg[2]
  }
  split(mac1, mac2, "(") #)
  macro = mac2[1]
  prefix = substr(line, 1, index(line, defundef) - 1)
  if (D_is_set[macro]) {
    # Preserve the white space surrounding the "#".
    print prefix "define", macro P[macro] D[macro]
    next
  } else {
    # Replace #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.
    if (defundef == "undef") {
      print "/*", prefix defundef, macro, "*/"
      next
    }
  }
}
{ print }
_ACAWK
20097
_ACEOF
20098 20099 20100
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
fi # test -n "$CONFIG_HEADERS"
M
Michael Meskes 已提交
20101

20102

20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114
eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS  :L $CONFIG_LINKS  :C $CONFIG_COMMANDS"
shift
for ac_tag
do
  case $ac_tag in
  :[FHLC]) ac_mode=$ac_tag; continue;;
  esac
  case $ac_mode$ac_tag in
  :[FHL]*:*);;
  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
  :[FH]-) ac_tag=-:-;;
  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
M
Michael Meskes 已提交
20115
  esac
20116 20117 20118 20119 20120 20121 20122
  ac_save_IFS=$IFS
  IFS=:
  set x $ac_tag
  IFS=$ac_save_IFS
  shift
  ac_file=$1
  shift
M
Michael Meskes 已提交
20123

20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140
  case $ac_mode in
  :L) ac_source=$1;;
  :[FH])
    ac_file_inputs=
    for ac_f
    do
      case $ac_f in
      -) ac_f="$ac_tmp/stdin";;
      *) # Look for the file first in the build tree, then in the source tree
	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
	 # because $ac_f cannot contain `:'.
	 test -f "$ac_f" ||
	   case $ac_f in
	   [\\/$]*) false;;
	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
	   esac ||
	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
M
Michael Meskes 已提交
20141
      esac
20142 20143
      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
      as_fn_append ac_file_inputs " '$ac_f'"
M
Michael Meskes 已提交
20144 20145
    done

20146 20147 20148 20149 20150 20151 20152 20153 20154 20155
    # Let's still pretend it is `configure' which instantiates (i.e., don't
    # use $as_me), people would be surprised to read:
    #    /* config.h.  Generated by config.status.  */
    configure_input='Generated from '`
	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
	`' by configure.'
    if test x"$ac_file" != x-; then
      configure_input="$ac_file.  $configure_input"
      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
$as_echo "$as_me: creating $ac_file" >&6;}
20156
    fi
20157 20158 20159 20160 20161 20162 20163
    # Neutralize special characters interpreted by sed in replacement strings.
    case $configure_input in #(
    *\&* | *\|* | *\\* )
       ac_sed_conf_input=`$as_echo "$configure_input" |
       sed 's/[\\\\&|]/\\\\&/g'`;; #(
    *) ac_sed_conf_input=$configure_input;;
    esac
M
Michael Meskes 已提交
20164

20165 20166 20167 20168 20169 20170
    case $ac_tag in
    *:-:* | *:-) cat >"$ac_tmp/stdin" \
      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
    esac
    ;;
  esac
M
Michael Meskes 已提交
20171

20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195
  ac_dir=`$as_dirname -- "$ac_file" ||
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
	 X"$ac_file" : 'X\(//\)[^/]' \| \
	 X"$ac_file" : 'X\(//\)$' \| \
	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
$as_echo X"$ac_file" |
    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)[^/].*/{
	    s//\1/
	    q
	  }
	  /^X\(\/\/\)$/{
	    s//\1/
	    q
	  }
	  /^X\(\/\).*/{
	    s//\1/
	    q
	  }
	  s/.*/./; q'`
  as_dir="$ac_dir"; as_fn_mkdir_p
M
Michael Meskes 已提交
20196 20197
  ac_builddir=.

20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212
case "$ac_dir" in
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
*)
  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  # A ".." for each directory in $ac_dir_suffix.
  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  case $ac_top_builddir_sub in
  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  esac ;;
esac
ac_abs_top_builddir=$ac_pwd
ac_abs_builddir=$ac_pwd$ac_dir_suffix
# for backward compatibility:
ac_top_builddir=$ac_top_build_prefix
M
Michael Meskes 已提交
20213 20214

case $srcdir in
20215
  .)  # We are building in place.
M
Michael Meskes 已提交
20216
    ac_srcdir=.
20217 20218 20219
    ac_top_srcdir=$ac_top_builddir_sub
    ac_abs_top_srcdir=$ac_pwd ;;
  [\\/]* | ?:[\\/]* )  # Absolute name.
M
Michael Meskes 已提交
20220
    ac_srcdir=$srcdir$ac_dir_suffix;
20221 20222 20223 20224 20225 20226
    ac_top_srcdir=$srcdir
    ac_abs_top_srcdir=$srcdir ;;
  *) # Relative name.
    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
    ac_top_srcdir=$ac_top_build_prefix$srcdir
    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
M
Michael Meskes 已提交
20227
esac
20228
ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
M
Michael Meskes 已提交
20229 20230


20231 20232 20233 20234 20235
  case $ac_mode in
  :F)
  #
  # CONFIG_FILE
  #
20236

20237 20238 20239 20240
  ac_MKDIR_P=$MKDIR_P
  case $MKDIR_P in
  [\\/$]* | ?:[\\/]* ) ;;
  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
20241
  esac
20242
_ACEOF
M
Michael Meskes 已提交
20243

20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# If the template does not know about datarootdir, expand it.
# FIXME: This hack should be removed a few years after 2.60.
ac_datarootdir_hack=; ac_datarootdir_seen=
ac_sed_dataroot='
/datarootdir/ {
  p
  q
}
/@datadir@/p
/@docdir@/p
/@infodir@/p
/@localedir@/p
/@mandir@/p'
case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
*datarootdir*) ac_datarootdir_seen=yes;;
*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  ac_datarootdir_hack='
  s&@datadir@&$datadir&g
  s&@docdir@&$docdir&g
  s&@infodir@&$infodir&g
  s&@localedir@&$localedir&g
  s&@mandir@&$mandir&g
  s&\\\${datarootdir}&$datarootdir&g' ;;
esac
M
Michael Meskes 已提交
20273 20274
_ACEOF

20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334
# Neutralize VPATH when `$srcdir' = `.'.
# Shell code in configure.ac might set extrasub.
# FIXME: do we really want to maintain this feature?
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_sed_extra="$ac_vpsub
$extrasub
_ACEOF
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
:t
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
s|@configure_input@|$ac_sed_conf_input|;t t
s&@top_builddir@&$ac_top_builddir_sub&;t t
s&@top_build_prefix@&$ac_top_build_prefix&;t t
s&@srcdir@&$ac_srcdir&;t t
s&@abs_srcdir@&$ac_abs_srcdir&;t t
s&@top_srcdir@&$ac_top_srcdir&;t t
s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
s&@builddir@&$ac_builddir&;t t
s&@abs_builddir@&$ac_abs_builddir&;t t
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
s&@MKDIR_P@&$ac_MKDIR_P&;t t
$ac_datarootdir_hack
"
eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5

test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
      "$ac_tmp/out"`; test -z "$ac_out"; } &&
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
which seems to be undefined.  Please make sure it is defined" >&5
$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
which seems to be undefined.  Please make sure it is defined" >&2;}

  rm -f "$ac_tmp/stdin"
  case $ac_file in
  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
  esac \
  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
 ;;
  :H)
  #
  # CONFIG_HEADER
  #
  if test x"$ac_file" != x-; then
    {
      $as_echo "/* $configure_input  */" \
      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
    } >"$ac_tmp/config.h" \
      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
$as_echo "$as_me: $ac_file is unchanged" >&6;}
    else
      rm -f "$ac_file"
      mv "$ac_tmp/config.h" "$ac_file" \
	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
    fi
M
Michael Meskes 已提交
20335
  else
20336 20337 20338 20339 20340 20341 20342 20343 20344
    $as_echo "/* $configure_input  */" \
      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
      || as_fn_error $? "could not create -" "$LINENO" 5
  fi
 ;;
  :L)
  #
  # CONFIG_LINK
  #
20345

20346 20347 20348 20349 20350 20351 20352
  if test "$ac_source" = "$ac_file" && test "$srcdir" = '.'; then
    :
  else
    # Prefer the file from the source tree if names are identical.
    if test "$ac_source" = "$ac_file" || test ! -r "$ac_source"; then
      ac_source=$srcdir/$ac_source
    fi
M
Michael Meskes 已提交
20353

20354 20355
    { $as_echo "$as_me:${as_lineno-$LINENO}: linking $ac_source to $ac_file" >&5
$as_echo "$as_me: linking $ac_source to $ac_file" >&6;}
M
Michael Meskes 已提交
20356

20357 20358 20359 20360
    if test ! -r "$ac_source"; then
      as_fn_error $? "$ac_source: file not found" "$LINENO" 5
    fi
    rm -f "$ac_file"
M
Michael Meskes 已提交
20361

20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376
    # Try a relative symlink, then a hard link, then a copy.
    case $ac_source in
    [\\/$]* | ?:[\\/]* ) ac_rel_source=$ac_source ;;
	*) ac_rel_source=$ac_top_build_prefix$ac_source ;;
    esac
    ln -s "$ac_rel_source" "$ac_file" 2>/dev/null ||
      ln "$ac_source" "$ac_file" 2>/dev/null ||
      cp -p "$ac_source" "$ac_file" ||
      as_fn_error $? "cannot link or copy $ac_source to $ac_file" "$LINENO" 5
  fi
 ;;
  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
$as_echo "$as_me: executing $ac_file commands" >&6;}
 ;;
  esac
20377

M
Michael Meskes 已提交
20378

20379 20380
  case $ac_file$ac_mode in
    "check_win32_symlinks":C)
20381 20382
# Links sometimes fail undetected on Mingw -
# so here we detect it and warn the user
20383
for FILE in $CONFIG_LINKS
20384 20385
 do
	# test -e works for symlinks in the MinGW console
20386 20387
	test -e `expr "$FILE" : '\([^:]*\)'` || { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** link for $FILE -- please fix by hand" >&5
$as_echo "$as_me: WARNING: *** link for $FILE -- please fix by hand" >&2;}
20388 20389
 done
 ;;
20390 20391 20392 20393 20394 20395
    "src/include/pg_config.h":H)
# Update timestamp for pg_config.h (see Makefile.global)
echo >src/include/stamp-h
 ;;
    "src/interfaces/ecpg/include/ecpg_config.h":H) echo >src/interfaces/ecpg/include/stamp-h ;;

20396
  esac
20397
done # for ac_tag
20398

20399

20400
as_fn_exit 0
20401 20402 20403
_ACEOF
ac_clean_files=$ac_clean_files_save

20404 20405 20406
test $ac_write_fail = 0 ||
  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5

20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417

# configure is writing to config.log, and then calls config.status.
# config.status does its own redirection, appending to config.log.
# Unfortunately, on DOS this fails, as config.log is still kept open
# by configure, so config.status won't be able to write to it; its
# output is simply discarded.  So we exec the FD to /dev/null,
# effectively closing config.log, so it can be properly (re)opened and
# appended to by config.status.  When coming back to configure, we
# need to make the FD available again.
if test "$no_create" != yes; then
  ac_cs_success=:
20418 20419 20420
  ac_config_status_args=
  test "$silent" = yes &&
    ac_config_status_args="$ac_config_status_args --quiet"
20421
  exec 5>/dev/null
20422
  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
20423 20424 20425
  exec 5>>config.log
  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  # would make configure fail if this is the last instruction.
20426 20427 20428 20429 20430
  $ac_cs_success || as_fn_exit 1
fi
if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
20431
fi
B
Bruce Momjian 已提交
20432