1#! /bin/sh
2# From configure.ac Revision.
3# Guess values for system-dependent variables and create Makefiles.
4# Generated by GNU Autoconf 2.69.
5#
6#
7# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
8#
9#
10# This configure script is free software; the Free Software Foundation
11# gives unlimited permission to copy, distribute and modify it.
12## -------------------- ##
13## M4sh Initialization. ##
14## -------------------- ##
15
16# Be more Bourne compatible
17DUALCASE=1; export DUALCASE # for MKS sh
18if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
19  emulate sh
20  NULLCMD=:
21  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
22  # is contrary to our usage.  Disable this feature.
23  alias -g '${1+"$@"}'='"$@"'
24  setopt NO_GLOB_SUBST
25else
26  case `(set -o) 2>/dev/null` in #(
27  *posix*) :
28    set -o posix ;; #(
29  *) :
30     ;;
31esac
32fi
33
34
35as_nl='
36'
37export as_nl
38# Printing a long string crashes Solaris 7 /usr/bin/printf.
39as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
40as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
42# Prefer a ksh shell builtin over an external printf program on Solaris,
43# but without wasting forks for bash or zsh.
44if test -z "$BASH_VERSION$ZSH_VERSION" \
45    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
46  as_echo='print -r --'
47  as_echo_n='print -rn --'
48elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
49  as_echo='printf %s\n'
50  as_echo_n='printf %s'
51else
52  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
53    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
54    as_echo_n='/usr/ucb/echo -n'
55  else
56    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
57    as_echo_n_body='eval
58      arg=$1;
59      case $arg in #(
60      *"$as_nl"*)
61	expr "X$arg" : "X\\(.*\\)$as_nl";
62	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
63      esac;
64      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
65    '
66    export as_echo_n_body
67    as_echo_n='sh -c $as_echo_n_body as_echo'
68  fi
69  export as_echo_body
70  as_echo='sh -c $as_echo_body as_echo'
71fi
72
73# The user is always right.
74if test "${PATH_SEPARATOR+set}" != set; then
75  PATH_SEPARATOR=:
76  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
77    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
78      PATH_SEPARATOR=';'
79  }
80fi
81
82
83# IFS
84# We need space, tab and new line, in precisely that order.  Quoting is
85# there to prevent editors from complaining about space-tab.
86# (If _AS_PATH_WALK were called with IFS unset, it would disable word
87# splitting by setting IFS to empty value.)
88IFS=" ""	$as_nl"
89
90# Find who we are.  Look in the path if we contain no directory separator.
91as_myself=
92case $0 in #((
93  *[\\/]* ) as_myself=$0 ;;
94  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
95for as_dir in $PATH
96do
97  IFS=$as_save_IFS
98  test -z "$as_dir" && as_dir=.
99    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
100  done
101IFS=$as_save_IFS
102
103     ;;
104esac
105# We did not find ourselves, most probably we were run as `sh COMMAND'
106# in which case we are not to be found in the path.
107if test "x$as_myself" = x; then
108  as_myself=$0
109fi
110if test ! -f "$as_myself"; then
111  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112  exit 1
113fi
114
115# Unset variables that we do not need and which cause bugs (e.g. in
116# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
117# suppresses any "Segmentation fault" message there.  '((' could
118# trigger a bug in pdksh 5.2.14.
119for as_var in BASH_ENV ENV MAIL MAILPATH
120do eval test x\${$as_var+set} = xset \
121  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
122done
123PS1='$ '
124PS2='> '
125PS4='+ '
126
127# NLS nuisances.
128LC_ALL=C
129export LC_ALL
130LANGUAGE=C
131export LANGUAGE
132
133# CDPATH.
134(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
135
136# Use a proper internal environment variable to ensure we don't fall
137  # into an infinite loop, continuously re-executing ourselves.
138  if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
139    _as_can_reexec=no; export _as_can_reexec;
140    # We cannot yet assume a decent shell, so we have to provide a
141# neutralization value for shells without unset; and this also
142# works around shells that cannot unset nonexistent variables.
143# Preserve -v and -x to the replacement shell.
144BASH_ENV=/dev/null
145ENV=/dev/null
146(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
147case $- in # ((((
148  *v*x* | *x*v* ) as_opts=-vx ;;
149  *v* ) as_opts=-v ;;
150  *x* ) as_opts=-x ;;
151  * ) as_opts= ;;
152esac
153exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
154# Admittedly, this is quite paranoid, since all the known shells bail
155# out after a failed `exec'.
156$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
157as_fn_exit 255
158  fi
159  # We don't want this to propagate to other subprocesses.
160          { _as_can_reexec=; unset _as_can_reexec;}
161if test "x$CONFIG_SHELL" = x; then
162  as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
163  emulate sh
164  NULLCMD=:
165  # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
166  # is contrary to our usage.  Disable this feature.
167  alias -g '\${1+\"\$@\"}'='\"\$@\"'
168  setopt NO_GLOB_SUBST
169else
170  case \`(set -o) 2>/dev/null\` in #(
171  *posix*) :
172    set -o posix ;; #(
173  *) :
174     ;;
175esac
176fi
177"
178  as_required="as_fn_return () { (exit \$1); }
179as_fn_success () { as_fn_return 0; }
180as_fn_failure () { as_fn_return 1; }
181as_fn_ret_success () { return 0; }
182as_fn_ret_failure () { return 1; }
183
184exitcode=0
185as_fn_success || { exitcode=1; echo as_fn_success failed.; }
186as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
187as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
188as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
189if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
190
191else
192  exitcode=1; echo positional parameters were not saved.
193fi
194test x\$exitcode = x0 || exit 1
195test -x / || exit 1"
196  as_suggested="  as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
197  as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
198  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
199  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
200  if (eval "$as_required") 2>/dev/null; then :
201  as_have_required=yes
202else
203  as_have_required=no
204fi
205  if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
206
207else
208  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
209as_found=false
210for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
211do
212  IFS=$as_save_IFS
213  test -z "$as_dir" && as_dir=.
214  as_found=:
215  case $as_dir in #(
216	 /*)
217	   for as_base in sh bash ksh sh5; do
218	     # Try only shells that exist, to save several forks.
219	     as_shell=$as_dir/$as_base
220	     if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
221		    { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
222  CONFIG_SHELL=$as_shell as_have_required=yes
223		   if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
224  break 2
225fi
226fi
227	   done;;
228       esac
229  as_found=false
230done
231$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
232	      { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
233  CONFIG_SHELL=$SHELL as_have_required=yes
234fi; }
235IFS=$as_save_IFS
236
237
238      if test "x$CONFIG_SHELL" != x; then :
239  export CONFIG_SHELL
240             # We cannot yet assume a decent shell, so we have to provide a
241# neutralization value for shells without unset; and this also
242# works around shells that cannot unset nonexistent variables.
243# Preserve -v and -x to the replacement shell.
244BASH_ENV=/dev/null
245ENV=/dev/null
246(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
247case $- in # ((((
248  *v*x* | *x*v* ) as_opts=-vx ;;
249  *v* ) as_opts=-v ;;
250  *x* ) as_opts=-x ;;
251  * ) as_opts= ;;
252esac
253exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
254# Admittedly, this is quite paranoid, since all the known shells bail
255# out after a failed `exec'.
256$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
257exit 255
258fi
259
260    if test x$as_have_required = xno; then :
261  $as_echo "$0: This script requires a shell more modern than all"
262  $as_echo "$0: the shells that I found on your system."
263  if test x${ZSH_VERSION+set} = xset ; then
264    $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
265    $as_echo "$0: be upgraded to zsh 4.3.4 or later."
266  else
267    $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
268$0: including any error possibly output before this
269$0: message. Then install a modern shell, or manually run
270$0: the script under such a shell if you do have one."
271  fi
272  exit 1
273fi
274fi
275fi
276SHELL=${CONFIG_SHELL-/bin/sh}
277export SHELL
278# Unset more variables known to interfere with behavior of common tools.
279CLICOLOR_FORCE= GREP_OPTIONS=
280unset CLICOLOR_FORCE GREP_OPTIONS
281
282## --------------------- ##
283## M4sh Shell Functions. ##
284## --------------------- ##
285# as_fn_unset VAR
286# ---------------
287# Portably unset VAR.
288as_fn_unset ()
289{
290  { eval $1=; unset $1;}
291}
292as_unset=as_fn_unset
293
294# as_fn_set_status STATUS
295# -----------------------
296# Set $? to STATUS, without forking.
297as_fn_set_status ()
298{
299  return $1
300} # as_fn_set_status
301
302# as_fn_exit STATUS
303# -----------------
304# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
305as_fn_exit ()
306{
307  set +e
308  as_fn_set_status $1
309  exit $1
310} # as_fn_exit
311
312# as_fn_mkdir_p
313# -------------
314# Create "$as_dir" as a directory, including parents if necessary.
315as_fn_mkdir_p ()
316{
317
318  case $as_dir in #(
319  -*) as_dir=./$as_dir;;
320  esac
321  test -d "$as_dir" || eval $as_mkdir_p || {
322    as_dirs=
323    while :; do
324      case $as_dir in #(
325      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
326      *) as_qdir=$as_dir;;
327      esac
328      as_dirs="'$as_qdir' $as_dirs"
329      as_dir=`$as_dirname -- "$as_dir" ||
330$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
331	 X"$as_dir" : 'X\(//\)[^/]' \| \
332	 X"$as_dir" : 'X\(//\)$' \| \
333	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
334$as_echo X"$as_dir" |
335    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
336	    s//\1/
337	    q
338	  }
339	  /^X\(\/\/\)[^/].*/{
340	    s//\1/
341	    q
342	  }
343	  /^X\(\/\/\)$/{
344	    s//\1/
345	    q
346	  }
347	  /^X\(\/\).*/{
348	    s//\1/
349	    q
350	  }
351	  s/.*/./; q'`
352      test -d "$as_dir" && break
353    done
354    test -z "$as_dirs" || eval "mkdir $as_dirs"
355  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
356
357
358} # as_fn_mkdir_p
359
360# as_fn_executable_p FILE
361# -----------------------
362# Test if FILE is an executable regular file.
363as_fn_executable_p ()
364{
365  test -f "$1" && test -x "$1"
366} # as_fn_executable_p
367# as_fn_append VAR VALUE
368# ----------------------
369# Append the text in VALUE to the end of the definition contained in VAR. Take
370# advantage of any shell optimizations that allow amortized linear growth over
371# repeated appends, instead of the typical quadratic growth present in naive
372# implementations.
373if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
374  eval 'as_fn_append ()
375  {
376    eval $1+=\$2
377  }'
378else
379  as_fn_append ()
380  {
381    eval $1=\$$1\$2
382  }
383fi # as_fn_append
384
385# as_fn_arith ARG...
386# ------------------
387# Perform arithmetic evaluation on the ARGs, and store the result in the
388# global $as_val. Take advantage of shells that can avoid forks. The arguments
389# must be portable across $(()) and expr.
390if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
391  eval 'as_fn_arith ()
392  {
393    as_val=$(( $* ))
394  }'
395else
396  as_fn_arith ()
397  {
398    as_val=`expr "$@" || test $? -eq 1`
399  }
400fi # as_fn_arith
401
402
403# as_fn_error STATUS ERROR [LINENO LOG_FD]
404# ----------------------------------------
405# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
406# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
407# script with STATUS, using 1 if that was 0.
408as_fn_error ()
409{
410  as_status=$1; test $as_status -eq 0 && as_status=1
411  if test "$4"; then
412    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
413    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
414  fi
415  $as_echo "$as_me: error: $2" >&2
416  as_fn_exit $as_status
417} # as_fn_error
418
419if expr a : '\(a\)' >/dev/null 2>&1 &&
420   test "X`expr 00001 : '.*\(...\)'`" = X001; then
421  as_expr=expr
422else
423  as_expr=false
424fi
425
426if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
427  as_basename=basename
428else
429  as_basename=false
430fi
431
432if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
433  as_dirname=dirname
434else
435  as_dirname=false
436fi
437
438as_me=`$as_basename -- "$0" ||
439$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
440	 X"$0" : 'X\(//\)$' \| \
441	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
442$as_echo X/"$0" |
443    sed '/^.*\/\([^/][^/]*\)\/*$/{
444	    s//\1/
445	    q
446	  }
447	  /^X\/\(\/\/\)$/{
448	    s//\1/
449	    q
450	  }
451	  /^X\/\(\/\).*/{
452	    s//\1/
453	    q
454	  }
455	  s/.*/./; q'`
456
457# Avoid depending upon Character Ranges.
458as_cr_letters='abcdefghijklmnopqrstuvwxyz'
459as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
460as_cr_Letters=$as_cr_letters$as_cr_LETTERS
461as_cr_digits='0123456789'
462as_cr_alnum=$as_cr_Letters$as_cr_digits
463
464
465  as_lineno_1=$LINENO as_lineno_1a=$LINENO
466  as_lineno_2=$LINENO as_lineno_2a=$LINENO
467  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
468  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
469  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
470  sed -n '
471    p
472    /[$]LINENO/=
473  ' <$as_myself |
474    sed '
475      s/[$]LINENO.*/&-/
476      t lineno
477      b
478      :lineno
479      N
480      :loop
481      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
482      t loop
483      s/-\n.*//
484    ' >$as_me.lineno &&
485  chmod +x "$as_me.lineno" ||
486    { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
487
488  # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
489  # already done that, so ensure we don't try to do so again and fall
490  # in an infinite loop.  This has already happened in practice.
491  _as_can_reexec=no; export _as_can_reexec
492  # Don't try to exec as it changes $[0], causing all sort of problems
493  # (the dirname of $[0] is not the place where we might find the
494  # original and so on.  Autoconf is especially sensitive to this).
495  . "./$as_me.lineno"
496  # Exit status is that of the last command.
497  exit
498}
499
500ECHO_C= ECHO_N= ECHO_T=
501case `echo -n x` in #(((((
502-n*)
503  case `echo 'xy\c'` in
504  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
505  xy)  ECHO_C='\c';;
506  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
507       ECHO_T='	';;
508  esac;;
509*)
510  ECHO_N='-n';;
511esac
512
513rm -f conf$$ conf$$.exe conf$$.file
514if test -d conf$$.dir; then
515  rm -f conf$$.dir/conf$$.file
516else
517  rm -f conf$$.dir
518  mkdir conf$$.dir 2>/dev/null
519fi
520if (echo >conf$$.file) 2>/dev/null; then
521  if ln -s conf$$.file conf$$ 2>/dev/null; then
522    as_ln_s='ln -s'
523    # ... but there are two gotchas:
524    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
525    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
526    # In both cases, we have to default to `cp -pR'.
527    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
528      as_ln_s='cp -pR'
529  elif ln conf$$.file conf$$ 2>/dev/null; then
530    as_ln_s=ln
531  else
532    as_ln_s='cp -pR'
533  fi
534else
535  as_ln_s='cp -pR'
536fi
537rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
538rmdir conf$$.dir 2>/dev/null
539
540if mkdir -p . 2>/dev/null; then
541  as_mkdir_p='mkdir -p "$as_dir"'
542else
543  test -d ./-p && rmdir ./-p
544  as_mkdir_p=false
545fi
546
547as_test_x='test -x'
548as_executable_p=as_fn_executable_p
549
550# Sed expression to map a string onto a valid CPP name.
551as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
552
553# Sed expression to map a string onto a valid variable name.
554as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
555
556
557test -n "$DJDIR" || exec 7<&0 </dev/null
558exec 6>&1
559
560# Name of the host.
561# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
562# so uname gets run too.
563ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
564
565#
566# Initializations.
567#
568ac_default_prefix=/usr/local
569ac_clean_files=
570ac_config_libobj_dir=.
571LIBOBJS=
572cross_compiling=no
573subdirs=
574MFLAGS=
575MAKEFLAGS=
576
577# Identity of this package.
578PACKAGE_NAME=
579PACKAGE_TARNAME=
580PACKAGE_VERSION=
581PACKAGE_STRING=
582PACKAGE_BUGREPORT=
583PACKAGE_URL=
584
585ac_unique_file="rlm_example.c"
586ac_subst_vars='LTLIBOBJS
587LIBOBJS
588targetname
589mod_ldflags
590mod_cflags
591CPP
592OBJEXT
593EXEEXT
594ac_ct_CC
595CPPFLAGS
596LDFLAGS
597CFLAGS
598CC
599target_alias
600host_alias
601build_alias
602LIBS
603ECHO_T
604ECHO_N
605ECHO_C
606DEFS
607mandir
608localedir
609libdir
610psdir
611pdfdir
612dvidir
613htmldir
614infodir
615docdir
616oldincludedir
617includedir
618localstatedir
619sharedstatedir
620sysconfdir
621datadir
622datarootdir
623libexecdir
624sbindir
625bindir
626program_transform_name
627prefix
628exec_prefix
629PACKAGE_URL
630PACKAGE_BUGREPORT
631PACKAGE_STRING
632PACKAGE_VERSION
633PACKAGE_TARNAME
634PACKAGE_NAME
635PATH_SEPARATOR
636SHELL'
637ac_subst_files=''
638ac_user_opts='
639enable_option_checking
640with_rlm_example
641'
642      ac_precious_vars='build_alias
643host_alias
644target_alias
645CC
646CFLAGS
647LDFLAGS
648LIBS
649CPPFLAGS
650CPP'
651
652
653# Initialize some variables set by options.
654ac_init_help=
655ac_init_version=false
656ac_unrecognized_opts=
657ac_unrecognized_sep=
658# The variables have the same names as the options, with
659# dashes changed to underlines.
660cache_file=/dev/null
661exec_prefix=NONE
662no_create=
663no_recursion=
664prefix=NONE
665program_prefix=NONE
666program_suffix=NONE
667program_transform_name=s,x,x,
668silent=
669site=
670srcdir=
671verbose=
672x_includes=NONE
673x_libraries=NONE
674
675# Installation directory options.
676# These are left unexpanded so users can "make install exec_prefix=/foo"
677# and all the variables that are supposed to be based on exec_prefix
678# by default will actually change.
679# Use braces instead of parens because sh, perl, etc. also accept them.
680# (The list follows the same order as the GNU Coding Standards.)
681bindir='${exec_prefix}/bin'
682sbindir='${exec_prefix}/sbin'
683libexecdir='${exec_prefix}/libexec'
684datarootdir='${prefix}/share'
685datadir='${datarootdir}'
686sysconfdir='${prefix}/etc'
687sharedstatedir='${prefix}/com'
688localstatedir='${prefix}/var'
689includedir='${prefix}/include'
690oldincludedir='/usr/include'
691docdir='${datarootdir}/doc/${PACKAGE}'
692infodir='${datarootdir}/info'
693htmldir='${docdir}'
694dvidir='${docdir}'
695pdfdir='${docdir}'
696psdir='${docdir}'
697libdir='${exec_prefix}/lib'
698localedir='${datarootdir}/locale'
699mandir='${datarootdir}/man'
700
701ac_prev=
702ac_dashdash=
703for ac_option
704do
705  # If the previous option needs an argument, assign it.
706  if test -n "$ac_prev"; then
707    eval $ac_prev=\$ac_option
708    ac_prev=
709    continue
710  fi
711
712  case $ac_option in
713  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
714  *=)   ac_optarg= ;;
715  *)    ac_optarg=yes ;;
716  esac
717
718  # Accept the important Cygnus configure options, so we can diagnose typos.
719
720  case $ac_dashdash$ac_option in
721  --)
722    ac_dashdash=yes ;;
723
724  -bindir | --bindir | --bindi | --bind | --bin | --bi)
725    ac_prev=bindir ;;
726  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
727    bindir=$ac_optarg ;;
728
729  -build | --build | --buil | --bui | --bu)
730    ac_prev=build_alias ;;
731  -build=* | --build=* | --buil=* | --bui=* | --bu=*)
732    build_alias=$ac_optarg ;;
733
734  -cache-file | --cache-file | --cache-fil | --cache-fi \
735  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
736    ac_prev=cache_file ;;
737  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
738  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
739    cache_file=$ac_optarg ;;
740
741  --config-cache | -C)
742    cache_file=config.cache ;;
743
744  -datadir | --datadir | --datadi | --datad)
745    ac_prev=datadir ;;
746  -datadir=* | --datadir=* | --datadi=* | --datad=*)
747    datadir=$ac_optarg ;;
748
749  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
750  | --dataroo | --dataro | --datar)
751    ac_prev=datarootdir ;;
752  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
753  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
754    datarootdir=$ac_optarg ;;
755
756  -disable-* | --disable-*)
757    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
758    # Reject names that are not valid shell variable names.
759    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
760      as_fn_error $? "invalid feature name: $ac_useropt"
761    ac_useropt_orig=$ac_useropt
762    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
763    case $ac_user_opts in
764      *"
765"enable_$ac_useropt"
766"*) ;;
767      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
768	 ac_unrecognized_sep=', ';;
769    esac
770    eval enable_$ac_useropt=no ;;
771
772  -docdir | --docdir | --docdi | --doc | --do)
773    ac_prev=docdir ;;
774  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
775    docdir=$ac_optarg ;;
776
777  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
778    ac_prev=dvidir ;;
779  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
780    dvidir=$ac_optarg ;;
781
782  -enable-* | --enable-*)
783    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
784    # Reject names that are not valid shell variable names.
785    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
786      as_fn_error $? "invalid feature name: $ac_useropt"
787    ac_useropt_orig=$ac_useropt
788    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
789    case $ac_user_opts in
790      *"
791"enable_$ac_useropt"
792"*) ;;
793      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
794	 ac_unrecognized_sep=', ';;
795    esac
796    eval enable_$ac_useropt=\$ac_optarg ;;
797
798  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
799  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
800  | --exec | --exe | --ex)
801    ac_prev=exec_prefix ;;
802  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
803  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
804  | --exec=* | --exe=* | --ex=*)
805    exec_prefix=$ac_optarg ;;
806
807  -gas | --gas | --ga | --g)
808    # Obsolete; use --with-gas.
809    with_gas=yes ;;
810
811  -help | --help | --hel | --he | -h)
812    ac_init_help=long ;;
813  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
814    ac_init_help=recursive ;;
815  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
816    ac_init_help=short ;;
817
818  -host | --host | --hos | --ho)
819    ac_prev=host_alias ;;
820  -host=* | --host=* | --hos=* | --ho=*)
821    host_alias=$ac_optarg ;;
822
823  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
824    ac_prev=htmldir ;;
825  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
826  | --ht=*)
827    htmldir=$ac_optarg ;;
828
829  -includedir | --includedir | --includedi | --included | --include \
830  | --includ | --inclu | --incl | --inc)
831    ac_prev=includedir ;;
832  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
833  | --includ=* | --inclu=* | --incl=* | --inc=*)
834    includedir=$ac_optarg ;;
835
836  -infodir | --infodir | --infodi | --infod | --info | --inf)
837    ac_prev=infodir ;;
838  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
839    infodir=$ac_optarg ;;
840
841  -libdir | --libdir | --libdi | --libd)
842    ac_prev=libdir ;;
843  -libdir=* | --libdir=* | --libdi=* | --libd=*)
844    libdir=$ac_optarg ;;
845
846  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
847  | --libexe | --libex | --libe)
848    ac_prev=libexecdir ;;
849  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
850  | --libexe=* | --libex=* | --libe=*)
851    libexecdir=$ac_optarg ;;
852
853  -localedir | --localedir | --localedi | --localed | --locale)
854    ac_prev=localedir ;;
855  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
856    localedir=$ac_optarg ;;
857
858  -localstatedir | --localstatedir | --localstatedi | --localstated \
859  | --localstate | --localstat | --localsta | --localst | --locals)
860    ac_prev=localstatedir ;;
861  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
862  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
863    localstatedir=$ac_optarg ;;
864
865  -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
866    ac_prev=mandir ;;
867  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
868    mandir=$ac_optarg ;;
869
870  -nfp | --nfp | --nf)
871    # Obsolete; use --without-fp.
872    with_fp=no ;;
873
874  -no-create | --no-create | --no-creat | --no-crea | --no-cre \
875  | --no-cr | --no-c | -n)
876    no_create=yes ;;
877
878  -no-recursion | --no-recursion | --no-recursio | --no-recursi \
879  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
880    no_recursion=yes ;;
881
882  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
883  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
884  | --oldin | --oldi | --old | --ol | --o)
885    ac_prev=oldincludedir ;;
886  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
887  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
888  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
889    oldincludedir=$ac_optarg ;;
890
891  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
892    ac_prev=prefix ;;
893  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
894    prefix=$ac_optarg ;;
895
896  -program-prefix | --program-prefix | --program-prefi | --program-pref \
897  | --program-pre | --program-pr | --program-p)
898    ac_prev=program_prefix ;;
899  -program-prefix=* | --program-prefix=* | --program-prefi=* \
900  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
901    program_prefix=$ac_optarg ;;
902
903  -program-suffix | --program-suffix | --program-suffi | --program-suff \
904  | --program-suf | --program-su | --program-s)
905    ac_prev=program_suffix ;;
906  -program-suffix=* | --program-suffix=* | --program-suffi=* \
907  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
908    program_suffix=$ac_optarg ;;
909
910  -program-transform-name | --program-transform-name \
911  | --program-transform-nam | --program-transform-na \
912  | --program-transform-n | --program-transform- \
913  | --program-transform | --program-transfor \
914  | --program-transfo | --program-transf \
915  | --program-trans | --program-tran \
916  | --progr-tra | --program-tr | --program-t)
917    ac_prev=program_transform_name ;;
918  -program-transform-name=* | --program-transform-name=* \
919  | --program-transform-nam=* | --program-transform-na=* \
920  | --program-transform-n=* | --program-transform-=* \
921  | --program-transform=* | --program-transfor=* \
922  | --program-transfo=* | --program-transf=* \
923  | --program-trans=* | --program-tran=* \
924  | --progr-tra=* | --program-tr=* | --program-t=*)
925    program_transform_name=$ac_optarg ;;
926
927  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
928    ac_prev=pdfdir ;;
929  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
930    pdfdir=$ac_optarg ;;
931
932  -psdir | --psdir | --psdi | --psd | --ps)
933    ac_prev=psdir ;;
934  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
935    psdir=$ac_optarg ;;
936
937  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
938  | -silent | --silent | --silen | --sile | --sil)
939    silent=yes ;;
940
941  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
942    ac_prev=sbindir ;;
943  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
944  | --sbi=* | --sb=*)
945    sbindir=$ac_optarg ;;
946
947  -sharedstatedir | --sharedstatedir | --sharedstatedi \
948  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
949  | --sharedst | --shareds | --shared | --share | --shar \
950  | --sha | --sh)
951    ac_prev=sharedstatedir ;;
952  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
953  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
954  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
955  | --sha=* | --sh=*)
956    sharedstatedir=$ac_optarg ;;
957
958  -site | --site | --sit)
959    ac_prev=site ;;
960  -site=* | --site=* | --sit=*)
961    site=$ac_optarg ;;
962
963  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
964    ac_prev=srcdir ;;
965  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
966    srcdir=$ac_optarg ;;
967
968  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
969  | --syscon | --sysco | --sysc | --sys | --sy)
970    ac_prev=sysconfdir ;;
971  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
972  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
973    sysconfdir=$ac_optarg ;;
974
975  -target | --target | --targe | --targ | --tar | --ta | --t)
976    ac_prev=target_alias ;;
977  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
978    target_alias=$ac_optarg ;;
979
980  -v | -verbose | --verbose | --verbos | --verbo | --verb)
981    verbose=yes ;;
982
983  -version | --version | --versio | --versi | --vers | -V)
984    ac_init_version=: ;;
985
986  -with-* | --with-*)
987    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
988    # Reject names that are not valid shell variable names.
989    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
990      as_fn_error $? "invalid package name: $ac_useropt"
991    ac_useropt_orig=$ac_useropt
992    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
993    case $ac_user_opts in
994      *"
995"with_$ac_useropt"
996"*) ;;
997      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
998	 ac_unrecognized_sep=', ';;
999    esac
1000    eval with_$ac_useropt=\$ac_optarg ;;
1001
1002  -without-* | --without-*)
1003    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1004    # Reject names that are not valid shell variable names.
1005    expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1006      as_fn_error $? "invalid package name: $ac_useropt"
1007    ac_useropt_orig=$ac_useropt
1008    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1009    case $ac_user_opts in
1010      *"
1011"with_$ac_useropt"
1012"*) ;;
1013      *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
1014	 ac_unrecognized_sep=', ';;
1015    esac
1016    eval with_$ac_useropt=no ;;
1017
1018  --x)
1019    # Obsolete; use --with-x.
1020    with_x=yes ;;
1021
1022  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
1023  | --x-incl | --x-inc | --x-in | --x-i)
1024    ac_prev=x_includes ;;
1025  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
1026  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
1027    x_includes=$ac_optarg ;;
1028
1029  -x-libraries | --x-libraries | --x-librarie | --x-librari \
1030  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
1031    ac_prev=x_libraries ;;
1032  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1033  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1034    x_libraries=$ac_optarg ;;
1035
1036  -*) as_fn_error $? "unrecognized option: \`$ac_option'
1037Try \`$0 --help' for more information"
1038    ;;
1039
1040  *=*)
1041    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1042    # Reject names that are not valid shell variable names.
1043    case $ac_envvar in #(
1044      '' | [0-9]* | *[!_$as_cr_alnum]* )
1045      as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1046    esac
1047    eval $ac_envvar=\$ac_optarg
1048    export $ac_envvar ;;
1049
1050  *)
1051    # FIXME: should be removed in autoconf 3.0.
1052    $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1053    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1054      $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1055    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1056    ;;
1057
1058  esac
1059done
1060
1061if test -n "$ac_prev"; then
1062  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1063  as_fn_error $? "missing argument to $ac_option"
1064fi
1065
1066if test -n "$ac_unrecognized_opts"; then
1067  case $enable_option_checking in
1068    no) ;;
1069    fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1070    *)     $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1071  esac
1072fi
1073
1074# Check all directory arguments for consistency.
1075for ac_var in	exec_prefix prefix bindir sbindir libexecdir datarootdir \
1076		datadir sysconfdir sharedstatedir localstatedir includedir \
1077		oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1078		libdir localedir mandir
1079do
1080  eval ac_val=\$$ac_var
1081  # Remove trailing slashes.
1082  case $ac_val in
1083    */ )
1084      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
1085      eval $ac_var=\$ac_val;;
1086  esac
1087  # Be sure to have absolute directory names.
1088  case $ac_val in
1089    [\\/$]* | ?:[\\/]* )  continue;;
1090    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1091  esac
1092  as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1093done
1094
1095# There might be people who depend on the old broken behavior: `$host'
1096# used to hold the argument of --host etc.
1097# FIXME: To remove some day.
1098build=$build_alias
1099host=$host_alias
1100target=$target_alias
1101
1102# FIXME: To remove some day.
1103if test "x$host_alias" != x; then
1104  if test "x$build_alias" = x; then
1105    cross_compiling=maybe
1106  elif test "x$build_alias" != "x$host_alias"; then
1107    cross_compiling=yes
1108  fi
1109fi
1110
1111ac_tool_prefix=
1112test -n "$host_alias" && ac_tool_prefix=$host_alias-
1113
1114test "$silent" = yes && exec 6>/dev/null
1115
1116
1117ac_pwd=`pwd` && test -n "$ac_pwd" &&
1118ac_ls_di=`ls -di .` &&
1119ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1120  as_fn_error $? "working directory cannot be determined"
1121test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1122  as_fn_error $? "pwd does not report name of working directory"
1123
1124
1125# Find the source files, if location was not specified.
1126if test -z "$srcdir"; then
1127  ac_srcdir_defaulted=yes
1128  # Try the directory containing this script, then the parent directory.
1129  ac_confdir=`$as_dirname -- "$as_myself" ||
1130$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1131	 X"$as_myself" : 'X\(//\)[^/]' \| \
1132	 X"$as_myself" : 'X\(//\)$' \| \
1133	 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
1134$as_echo X"$as_myself" |
1135    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1136	    s//\1/
1137	    q
1138	  }
1139	  /^X\(\/\/\)[^/].*/{
1140	    s//\1/
1141	    q
1142	  }
1143	  /^X\(\/\/\)$/{
1144	    s//\1/
1145	    q
1146	  }
1147	  /^X\(\/\).*/{
1148	    s//\1/
1149	    q
1150	  }
1151	  s/.*/./; q'`
1152  srcdir=$ac_confdir
1153  if test ! -r "$srcdir/$ac_unique_file"; then
1154    srcdir=..
1155  fi
1156else
1157  ac_srcdir_defaulted=no
1158fi
1159if test ! -r "$srcdir/$ac_unique_file"; then
1160  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1161  as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1162fi
1163ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1164ac_abs_confdir=`(
1165	cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1166	pwd)`
1167# When building in place, set srcdir=.
1168if test "$ac_abs_confdir" = "$ac_pwd"; then
1169  srcdir=.
1170fi
1171# Remove unnecessary trailing slashes from srcdir.
1172# Double slashes in file names in object file debugging info
1173# mess up M-x gdb in Emacs.
1174case $srcdir in
1175*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
1176esac
1177for ac_var in $ac_precious_vars; do
1178  eval ac_env_${ac_var}_set=\${${ac_var}+set}
1179  eval ac_env_${ac_var}_value=\$${ac_var}
1180  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
1181  eval ac_cv_env_${ac_var}_value=\$${ac_var}
1182done
1183
1184#
1185# Report the --help message.
1186#
1187if test "$ac_init_help" = "long"; then
1188  # Omit some internal or obsolete options to make the list less imposing.
1189  # This message is too long to be a string in the A/UX 3.1 sh.
1190  cat <<_ACEOF
1191\`configure' configures this package to adapt to many kinds of systems.
1192
1193Usage: $0 [OPTION]... [VAR=VALUE]...
1194
1195To assign environment variables (e.g., CC, CFLAGS...), specify them as
1196VAR=VALUE.  See below for descriptions of some of the useful variables.
1197
1198Defaults for the options are specified in brackets.
1199
1200Configuration:
1201  -h, --help              display this help and exit
1202      --help=short        display options specific to this package
1203      --help=recursive    display the short help of all the included packages
1204  -V, --version           display version information and exit
1205  -q, --quiet, --silent   do not print \`checking ...' messages
1206      --cache-file=FILE   cache test results in FILE [disabled]
1207  -C, --config-cache      alias for \`--cache-file=config.cache'
1208  -n, --no-create         do not create output files
1209      --srcdir=DIR        find the sources in DIR [configure dir or \`..']
1210
1211Installation directories:
1212  --prefix=PREFIX         install architecture-independent files in PREFIX
1213                          [$ac_default_prefix]
1214  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
1215                          [PREFIX]
1216
1217By default, \`make install' will install all the files in
1218\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
1219an installation prefix other than \`$ac_default_prefix' using \`--prefix',
1220for instance \`--prefix=\$HOME'.
1221
1222For better control, use the options below.
1223
1224Fine tuning of the installation directories:
1225  --bindir=DIR            user executables [EPREFIX/bin]
1226  --sbindir=DIR           system admin executables [EPREFIX/sbin]
1227  --libexecdir=DIR        program executables [EPREFIX/libexec]
1228  --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
1229  --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
1230  --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
1231  --libdir=DIR            object code libraries [EPREFIX/lib]
1232  --includedir=DIR        C header files [PREFIX/include]
1233  --oldincludedir=DIR     C header files for non-gcc [/usr/include]
1234  --datarootdir=DIR       read-only arch.-independent data root [PREFIX/share]
1235  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
1236  --infodir=DIR           info documentation [DATAROOTDIR/info]
1237  --localedir=DIR         locale-dependent data [DATAROOTDIR/locale]
1238  --mandir=DIR            man documentation [DATAROOTDIR/man]
1239  --docdir=DIR            documentation root [DATAROOTDIR/doc/PACKAGE]
1240  --htmldir=DIR           html documentation [DOCDIR]
1241  --dvidir=DIR            dvi documentation [DOCDIR]
1242  --pdfdir=DIR            pdf documentation [DOCDIR]
1243  --psdir=DIR             ps documentation [DOCDIR]
1244_ACEOF
1245
1246  cat <<\_ACEOF
1247_ACEOF
1248fi
1249
1250if test -n "$ac_init_help"; then
1251
1252  cat <<\_ACEOF
1253
1254Optional Packages:
1255  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
1256  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
1257  --with-rlm_example              build rlm_example. (default=yes)
1258
1259Some influential environment variables:
1260  CC          C compiler command
1261  CFLAGS      C compiler flags
1262  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
1263              nonstandard directory <lib dir>
1264  LIBS        libraries to pass to the linker, e.g. -l<library>
1265  CPPFLAGS    (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
1266              you have headers in a nonstandard directory <include dir>
1267  CPP         C preprocessor
1268
1269Use these variables to override the choices made by `configure' or to help
1270it to find libraries and programs with nonstandard names/locations.
1271
1272Report bugs to the package provider.
1273_ACEOF
1274ac_status=$?
1275fi
1276
1277if test "$ac_init_help" = "recursive"; then
1278  # If there are subdirs, report their specific --help.
1279  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
1280    test -d "$ac_dir" ||
1281      { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
1282      continue
1283    ac_builddir=.
1284
1285case "$ac_dir" in
1286.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1287*)
1288  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1289  # A ".." for each directory in $ac_dir_suffix.
1290  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1291  case $ac_top_builddir_sub in
1292  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1293  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1294  esac ;;
1295esac
1296ac_abs_top_builddir=$ac_pwd
1297ac_abs_builddir=$ac_pwd$ac_dir_suffix
1298# for backward compatibility:
1299ac_top_builddir=$ac_top_build_prefix
1300
1301case $srcdir in
1302  .)  # We are building in place.
1303    ac_srcdir=.
1304    ac_top_srcdir=$ac_top_builddir_sub
1305    ac_abs_top_srcdir=$ac_pwd ;;
1306  [\\/]* | ?:[\\/]* )  # Absolute name.
1307    ac_srcdir=$srcdir$ac_dir_suffix;
1308    ac_top_srcdir=$srcdir
1309    ac_abs_top_srcdir=$srcdir ;;
1310  *) # Relative name.
1311    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1312    ac_top_srcdir=$ac_top_build_prefix$srcdir
1313    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1314esac
1315ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1316
1317    cd "$ac_dir" || { ac_status=$?; continue; }
1318    # Check for guested configure.
1319    if test -f "$ac_srcdir/configure.gnu"; then
1320      echo &&
1321      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
1322    elif test -f "$ac_srcdir/configure"; then
1323      echo &&
1324      $SHELL "$ac_srcdir/configure" --help=recursive
1325    else
1326      $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
1327    fi || ac_status=$?
1328    cd "$ac_pwd" || { ac_status=$?; break; }
1329  done
1330fi
1331
1332test -n "$ac_init_help" && exit $ac_status
1333if $ac_init_version; then
1334  cat <<\_ACEOF
1335configure
1336generated by GNU Autoconf 2.69
1337
1338Copyright (C) 2012 Free Software Foundation, Inc.
1339This configure script is free software; the Free Software Foundation
1340gives unlimited permission to copy, distribute and modify it.
1341_ACEOF
1342  exit
1343fi
1344
1345## ------------------------ ##
1346## Autoconf initialization. ##
1347## ------------------------ ##
1348
1349# ac_fn_c_try_compile LINENO
1350# --------------------------
1351# Try to compile conftest.$ac_ext, and return whether this succeeded.
1352ac_fn_c_try_compile ()
1353{
1354  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1355  rm -f conftest.$ac_objext
1356  if { { ac_try="$ac_compile"
1357case "(($ac_try" in
1358  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1359  *) ac_try_echo=$ac_try;;
1360esac
1361eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1362$as_echo "$ac_try_echo"; } >&5
1363  (eval "$ac_compile") 2>conftest.err
1364  ac_status=$?
1365  if test -s conftest.err; then
1366    grep -v '^ *+' conftest.err >conftest.er1
1367    cat conftest.er1 >&5
1368    mv -f conftest.er1 conftest.err
1369  fi
1370  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1371  test $ac_status = 0; } && {
1372	 test -z "$ac_c_werror_flag" ||
1373	 test ! -s conftest.err
1374       } && test -s conftest.$ac_objext; then :
1375  ac_retval=0
1376else
1377  $as_echo "$as_me: failed program was:" >&5
1378sed 's/^/| /' conftest.$ac_ext >&5
1379
1380	ac_retval=1
1381fi
1382  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1383  as_fn_set_status $ac_retval
1384
1385} # ac_fn_c_try_compile
1386
1387# ac_fn_c_try_cpp LINENO
1388# ----------------------
1389# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
1390ac_fn_c_try_cpp ()
1391{
1392  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1393  if { { ac_try="$ac_cpp conftest.$ac_ext"
1394case "(($ac_try" in
1395  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1396  *) ac_try_echo=$ac_try;;
1397esac
1398eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1399$as_echo "$ac_try_echo"; } >&5
1400  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
1401  ac_status=$?
1402  if test -s conftest.err; then
1403    grep -v '^ *+' conftest.err >conftest.er1
1404    cat conftest.er1 >&5
1405    mv -f conftest.er1 conftest.err
1406  fi
1407  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1408  test $ac_status = 0; } > conftest.i && {
1409	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1410	 test ! -s conftest.err
1411       }; then :
1412  ac_retval=0
1413else
1414  $as_echo "$as_me: failed program was:" >&5
1415sed 's/^/| /' conftest.$ac_ext >&5
1416
1417    ac_retval=1
1418fi
1419  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1420  as_fn_set_status $ac_retval
1421
1422} # ac_fn_c_try_cpp
1423
1424# ac_fn_c_try_link LINENO
1425# -----------------------
1426# Try to link conftest.$ac_ext, and return whether this succeeded.
1427ac_fn_c_try_link ()
1428{
1429  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1430  rm -f conftest.$ac_objext conftest$ac_exeext
1431  if { { ac_try="$ac_link"
1432case "(($ac_try" in
1433  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
1434  *) ac_try_echo=$ac_try;;
1435esac
1436eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
1437$as_echo "$ac_try_echo"; } >&5
1438  (eval "$ac_link") 2>conftest.err
1439  ac_status=$?
1440  if test -s conftest.err; then
1441    grep -v '^ *+' conftest.err >conftest.er1
1442    cat conftest.er1 >&5
1443    mv -f conftest.er1 conftest.err
1444  fi
1445  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1446  test $ac_status = 0; } && {
1447	 test -z "$ac_c_werror_flag" ||
1448	 test ! -s conftest.err
1449       } && test -s conftest$ac_exeext && {
1450	 test "$cross_compiling" = yes ||
1451	 test -x conftest$ac_exeext
1452       }; then :
1453  ac_retval=0
1454else
1455  $as_echo "$as_me: failed program was:" >&5
1456sed 's/^/| /' conftest.$ac_ext >&5
1457
1458	ac_retval=1
1459fi
1460  # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
1461  # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
1462  # interfere with the next link command; also delete a directory that is
1463  # left behind by Apple's compiler.  We do this before executing the actions.
1464  rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1465  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1466  as_fn_set_status $ac_retval
1467
1468} # ac_fn_c_try_link
1469cat >config.log <<_ACEOF
1470This file contains any messages produced by compilers while
1471running configure, to aid debugging if configure makes a mistake.
1472
1473It was created by $as_me, which was
1474generated by GNU Autoconf 2.69.  Invocation command line was
1475
1476  $ $0 $@
1477
1478_ACEOF
1479exec 5>>config.log
1480{
1481cat <<_ASUNAME
1482## --------- ##
1483## Platform. ##
1484## --------- ##
1485
1486hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
1487uname -m = `(uname -m) 2>/dev/null || echo unknown`
1488uname -r = `(uname -r) 2>/dev/null || echo unknown`
1489uname -s = `(uname -s) 2>/dev/null || echo unknown`
1490uname -v = `(uname -v) 2>/dev/null || echo unknown`
1491
1492/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
1493/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown`
1494
1495/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
1496/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
1497/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
1498/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
1499/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
1500/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
1501/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
1502
1503_ASUNAME
1504
1505as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1506for as_dir in $PATH
1507do
1508  IFS=$as_save_IFS
1509  test -z "$as_dir" && as_dir=.
1510    $as_echo "PATH: $as_dir"
1511  done
1512IFS=$as_save_IFS
1513
1514} >&5
1515
1516cat >&5 <<_ACEOF
1517
1518
1519## ----------- ##
1520## Core tests. ##
1521## ----------- ##
1522
1523_ACEOF
1524
1525
1526# Keep a trace of the command line.
1527# Strip out --no-create and --no-recursion so they do not pile up.
1528# Strip out --silent because we don't want to record it for future runs.
1529# Also quote any args containing shell meta-characters.
1530# Make two passes to allow for proper duplicate-argument suppression.
1531ac_configure_args=
1532ac_configure_args0=
1533ac_configure_args1=
1534ac_must_keep_next=false
1535for ac_pass in 1 2
1536do
1537  for ac_arg
1538  do
1539    case $ac_arg in
1540    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
1541    -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1542    | -silent | --silent | --silen | --sile | --sil)
1543      continue ;;
1544    *\'*)
1545      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
1546    esac
1547    case $ac_pass in
1548    1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
1549    2)
1550      as_fn_append ac_configure_args1 " '$ac_arg'"
1551      if test $ac_must_keep_next = true; then
1552	ac_must_keep_next=false # Got value, back to normal.
1553      else
1554	case $ac_arg in
1555	  *=* | --config-cache | -C | -disable-* | --disable-* \
1556	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
1557	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
1558	  | -with-* | --with-* | -without-* | --without-* | --x)
1559	    case "$ac_configure_args0 " in
1560	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
1561	    esac
1562	    ;;
1563	  -* ) ac_must_keep_next=true ;;
1564	esac
1565      fi
1566      as_fn_append ac_configure_args " '$ac_arg'"
1567      ;;
1568    esac
1569  done
1570done
1571{ ac_configure_args0=; unset ac_configure_args0;}
1572{ ac_configure_args1=; unset ac_configure_args1;}
1573
1574# When interrupted or exit'd, cleanup temporary files, and complete
1575# config.log.  We remove comments because anyway the quotes in there
1576# would cause problems or look ugly.
1577# WARNING: Use '\'' to represent an apostrophe within the trap.
1578# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
1579trap 'exit_status=$?
1580  # Save into config.log some information that might help in debugging.
1581  {
1582    echo
1583
1584    $as_echo "## ---------------- ##
1585## Cache variables. ##
1586## ---------------- ##"
1587    echo
1588    # The following way of writing the cache mishandles newlines in values,
1589(
1590  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
1591    eval ac_val=\$$ac_var
1592    case $ac_val in #(
1593    *${as_nl}*)
1594      case $ac_var in #(
1595      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1596$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1597      esac
1598      case $ac_var in #(
1599      _ | IFS | as_nl) ;; #(
1600      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
1601      *) { eval $ac_var=; unset $ac_var;} ;;
1602      esac ;;
1603    esac
1604  done
1605  (set) 2>&1 |
1606    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
1607    *${as_nl}ac_space=\ *)
1608      sed -n \
1609	"s/'\''/'\''\\\\'\'''\''/g;
1610	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
1611      ;; #(
1612    *)
1613      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
1614      ;;
1615    esac |
1616    sort
1617)
1618    echo
1619
1620    $as_echo "## ----------------- ##
1621## Output variables. ##
1622## ----------------- ##"
1623    echo
1624    for ac_var in $ac_subst_vars
1625    do
1626      eval ac_val=\$$ac_var
1627      case $ac_val in
1628      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1629      esac
1630      $as_echo "$ac_var='\''$ac_val'\''"
1631    done | sort
1632    echo
1633
1634    if test -n "$ac_subst_files"; then
1635      $as_echo "## ------------------- ##
1636## File substitutions. ##
1637## ------------------- ##"
1638      echo
1639      for ac_var in $ac_subst_files
1640      do
1641	eval ac_val=\$$ac_var
1642	case $ac_val in
1643	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
1644	esac
1645	$as_echo "$ac_var='\''$ac_val'\''"
1646      done | sort
1647      echo
1648    fi
1649
1650    if test -s confdefs.h; then
1651      $as_echo "## ----------- ##
1652## confdefs.h. ##
1653## ----------- ##"
1654      echo
1655      cat confdefs.h
1656      echo
1657    fi
1658    test "$ac_signal" != 0 &&
1659      $as_echo "$as_me: caught signal $ac_signal"
1660    $as_echo "$as_me: exit $exit_status"
1661  } >&5
1662  rm -f core *.core core.conftest.* &&
1663    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
1664    exit $exit_status
1665' 0
1666for ac_signal in 1 2 13 15; do
1667  trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
1668done
1669ac_signal=0
1670
1671# confdefs.h avoids OS command line length limits that DEFS can exceed.
1672rm -f -r conftest* confdefs.h
1673
1674$as_echo "/* confdefs.h */" > confdefs.h
1675
1676# Predefined preprocessor variables.
1677
1678cat >>confdefs.h <<_ACEOF
1679#define PACKAGE_NAME "$PACKAGE_NAME"
1680_ACEOF
1681
1682cat >>confdefs.h <<_ACEOF
1683#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
1684_ACEOF
1685
1686cat >>confdefs.h <<_ACEOF
1687#define PACKAGE_VERSION "$PACKAGE_VERSION"
1688_ACEOF
1689
1690cat >>confdefs.h <<_ACEOF
1691#define PACKAGE_STRING "$PACKAGE_STRING"
1692_ACEOF
1693
1694cat >>confdefs.h <<_ACEOF
1695#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
1696_ACEOF
1697
1698cat >>confdefs.h <<_ACEOF
1699#define PACKAGE_URL "$PACKAGE_URL"
1700_ACEOF
1701
1702
1703# Let the site file select an alternate cache file if it wants to.
1704# Prefer an explicitly selected file to automatically selected ones.
1705ac_site_file1=NONE
1706ac_site_file2=NONE
1707if test -n "$CONFIG_SITE"; then
1708  # We do not want a PATH search for config.site.
1709  case $CONFIG_SITE in #((
1710    -*)  ac_site_file1=./$CONFIG_SITE;;
1711    */*) ac_site_file1=$CONFIG_SITE;;
1712    *)   ac_site_file1=./$CONFIG_SITE;;
1713  esac
1714elif test "x$prefix" != xNONE; then
1715  ac_site_file1=$prefix/share/config.site
1716  ac_site_file2=$prefix/etc/config.site
1717else
1718  ac_site_file1=$ac_default_prefix/share/config.site
1719  ac_site_file2=$ac_default_prefix/etc/config.site
1720fi
1721for ac_site_file in "$ac_site_file1" "$ac_site_file2"
1722do
1723  test "x$ac_site_file" = xNONE && continue
1724  if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
1725    { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
1726$as_echo "$as_me: loading site script $ac_site_file" >&6;}
1727    sed 's/^/| /' "$ac_site_file" >&5
1728    . "$ac_site_file" \
1729      || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1730$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1731as_fn_error $? "failed to load site script $ac_site_file
1732See \`config.log' for more details" "$LINENO" 5; }
1733  fi
1734done
1735
1736if test -r "$cache_file"; then
1737  # Some versions of bash will fail to source /dev/null (special files
1738  # actually), so we avoid doing that.  DJGPP emulates it as a regular file.
1739  if test /dev/null != "$cache_file" && test -f "$cache_file"; then
1740    { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
1741$as_echo "$as_me: loading cache $cache_file" >&6;}
1742    case $cache_file in
1743      [\\/]* | ?:[\\/]* ) . "$cache_file";;
1744      *)                      . "./$cache_file";;
1745    esac
1746  fi
1747else
1748  { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
1749$as_echo "$as_me: creating cache $cache_file" >&6;}
1750  >$cache_file
1751fi
1752
1753# Check that the precious variables saved in the cache have kept the same
1754# value.
1755ac_cache_corrupted=false
1756for ac_var in $ac_precious_vars; do
1757  eval ac_old_set=\$ac_cv_env_${ac_var}_set
1758  eval ac_new_set=\$ac_env_${ac_var}_set
1759  eval ac_old_val=\$ac_cv_env_${ac_var}_value
1760  eval ac_new_val=\$ac_env_${ac_var}_value
1761  case $ac_old_set,$ac_new_set in
1762    set,)
1763      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
1764$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
1765      ac_cache_corrupted=: ;;
1766    ,set)
1767      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
1768$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
1769      ac_cache_corrupted=: ;;
1770    ,);;
1771    *)
1772      if test "x$ac_old_val" != "x$ac_new_val"; then
1773	# differences in whitespace do not lead to failure.
1774	ac_old_val_w=`echo x $ac_old_val`
1775	ac_new_val_w=`echo x $ac_new_val`
1776	if test "$ac_old_val_w" != "$ac_new_val_w"; then
1777	  { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
1778$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
1779	  ac_cache_corrupted=:
1780	else
1781	  { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
1782$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
1783	  eval $ac_var=\$ac_old_val
1784	fi
1785	{ $as_echo "$as_me:${as_lineno-$LINENO}:   former value:  \`$ac_old_val'" >&5
1786$as_echo "$as_me:   former value:  \`$ac_old_val'" >&2;}
1787	{ $as_echo "$as_me:${as_lineno-$LINENO}:   current value: \`$ac_new_val'" >&5
1788$as_echo "$as_me:   current value: \`$ac_new_val'" >&2;}
1789      fi;;
1790  esac
1791  # Pass precious variables to config.status.
1792  if test "$ac_new_set" = set; then
1793    case $ac_new_val in
1794    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
1795    *) ac_arg=$ac_var=$ac_new_val ;;
1796    esac
1797    case " $ac_configure_args " in
1798      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy.
1799      *) as_fn_append ac_configure_args " '$ac_arg'" ;;
1800    esac
1801  fi
1802done
1803if $ac_cache_corrupted; then
1804  { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1805$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1806  { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
1807$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
1808  as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
1809fi
1810## -------------------- ##
1811## Main body of script. ##
1812## -------------------- ##
1813
1814ac_ext=c
1815ac_cpp='$CPP $CPPFLAGS'
1816ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1817ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1818ac_compiler_gnu=$ac_cv_c_compiler_gnu
1819
1820
1821
1822
1823
1824
1825# Check whether --with-rlm_example was given.
1826if test "${with_rlm_example+set}" = set; then :
1827  withval=$with_rlm_example;
1828fi
1829
1830
1831if test x$with_rlm_example != xno; then
1832	ac_ext=c
1833ac_cpp='$CPP $CPPFLAGS'
1834ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
1835ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1836ac_compiler_gnu=$ac_cv_c_compiler_gnu
1837if test -n "$ac_tool_prefix"; then
1838  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
1839set dummy ${ac_tool_prefix}gcc; ac_word=$2
1840{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1841$as_echo_n "checking for $ac_word... " >&6; }
1842if ${ac_cv_prog_CC+:} false; then :
1843  $as_echo_n "(cached) " >&6
1844else
1845  if test -n "$CC"; then
1846  ac_cv_prog_CC="$CC" # Let the user override the test.
1847else
1848as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1849for as_dir in $PATH
1850do
1851  IFS=$as_save_IFS
1852  test -z "$as_dir" && as_dir=.
1853    for ac_exec_ext in '' $ac_executable_extensions; do
1854  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1855    ac_cv_prog_CC="${ac_tool_prefix}gcc"
1856    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1857    break 2
1858  fi
1859done
1860  done
1861IFS=$as_save_IFS
1862
1863fi
1864fi
1865CC=$ac_cv_prog_CC
1866if test -n "$CC"; then
1867  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
1868$as_echo "$CC" >&6; }
1869else
1870  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1871$as_echo "no" >&6; }
1872fi
1873
1874
1875fi
1876if test -z "$ac_cv_prog_CC"; then
1877  ac_ct_CC=$CC
1878  # Extract the first word of "gcc", so it can be a program name with args.
1879set dummy gcc; ac_word=$2
1880{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1881$as_echo_n "checking for $ac_word... " >&6; }
1882if ${ac_cv_prog_ac_ct_CC+:} false; then :
1883  $as_echo_n "(cached) " >&6
1884else
1885  if test -n "$ac_ct_CC"; then
1886  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
1887else
1888as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1889for as_dir in $PATH
1890do
1891  IFS=$as_save_IFS
1892  test -z "$as_dir" && as_dir=.
1893    for ac_exec_ext in '' $ac_executable_extensions; do
1894  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1895    ac_cv_prog_ac_ct_CC="gcc"
1896    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1897    break 2
1898  fi
1899done
1900  done
1901IFS=$as_save_IFS
1902
1903fi
1904fi
1905ac_ct_CC=$ac_cv_prog_ac_ct_CC
1906if test -n "$ac_ct_CC"; then
1907  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
1908$as_echo "$ac_ct_CC" >&6; }
1909else
1910  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1911$as_echo "no" >&6; }
1912fi
1913
1914  if test "x$ac_ct_CC" = x; then
1915    CC=""
1916  else
1917    case $cross_compiling:$ac_tool_warned in
1918yes:)
1919{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
1920$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
1921ac_tool_warned=yes ;;
1922esac
1923    CC=$ac_ct_CC
1924  fi
1925else
1926  CC="$ac_cv_prog_CC"
1927fi
1928
1929if test -z "$CC"; then
1930          if test -n "$ac_tool_prefix"; then
1931    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
1932set dummy ${ac_tool_prefix}cc; ac_word=$2
1933{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1934$as_echo_n "checking for $ac_word... " >&6; }
1935if ${ac_cv_prog_CC+:} false; then :
1936  $as_echo_n "(cached) " >&6
1937else
1938  if test -n "$CC"; then
1939  ac_cv_prog_CC="$CC" # Let the user override the test.
1940else
1941as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1942for as_dir in $PATH
1943do
1944  IFS=$as_save_IFS
1945  test -z "$as_dir" && as_dir=.
1946    for ac_exec_ext in '' $ac_executable_extensions; do
1947  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1948    ac_cv_prog_CC="${ac_tool_prefix}cc"
1949    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1950    break 2
1951  fi
1952done
1953  done
1954IFS=$as_save_IFS
1955
1956fi
1957fi
1958CC=$ac_cv_prog_CC
1959if test -n "$CC"; then
1960  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
1961$as_echo "$CC" >&6; }
1962else
1963  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1964$as_echo "no" >&6; }
1965fi
1966
1967
1968  fi
1969fi
1970if test -z "$CC"; then
1971  # Extract the first word of "cc", so it can be a program name with args.
1972set dummy cc; ac_word=$2
1973{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1974$as_echo_n "checking for $ac_word... " >&6; }
1975if ${ac_cv_prog_CC+:} false; then :
1976  $as_echo_n "(cached) " >&6
1977else
1978  if test -n "$CC"; then
1979  ac_cv_prog_CC="$CC" # Let the user override the test.
1980else
1981  ac_prog_rejected=no
1982as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1983for as_dir in $PATH
1984do
1985  IFS=$as_save_IFS
1986  test -z "$as_dir" && as_dir=.
1987    for ac_exec_ext in '' $ac_executable_extensions; do
1988  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
1989    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
1990       ac_prog_rejected=yes
1991       continue
1992     fi
1993    ac_cv_prog_CC="cc"
1994    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
1995    break 2
1996  fi
1997done
1998  done
1999IFS=$as_save_IFS
2000
2001if test $ac_prog_rejected = yes; then
2002  # We found a bogon in the path, so make sure we never use it.
2003  set dummy $ac_cv_prog_CC
2004  shift
2005  if test $# != 0; then
2006    # We chose a different compiler from the bogus one.
2007    # However, it has the same basename, so the bogon will be chosen
2008    # first if we set CC to just the basename; use the full file name.
2009    shift
2010    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
2011  fi
2012fi
2013fi
2014fi
2015CC=$ac_cv_prog_CC
2016if test -n "$CC"; then
2017  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2018$as_echo "$CC" >&6; }
2019else
2020  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2021$as_echo "no" >&6; }
2022fi
2023
2024
2025fi
2026if test -z "$CC"; then
2027  if test -n "$ac_tool_prefix"; then
2028  for ac_prog in cl.exe
2029  do
2030    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2031set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2032{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2033$as_echo_n "checking for $ac_word... " >&6; }
2034if ${ac_cv_prog_CC+:} false; then :
2035  $as_echo_n "(cached) " >&6
2036else
2037  if test -n "$CC"; then
2038  ac_cv_prog_CC="$CC" # Let the user override the test.
2039else
2040as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2041for as_dir in $PATH
2042do
2043  IFS=$as_save_IFS
2044  test -z "$as_dir" && as_dir=.
2045    for ac_exec_ext in '' $ac_executable_extensions; do
2046  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2047    ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
2048    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2049    break 2
2050  fi
2051done
2052  done
2053IFS=$as_save_IFS
2054
2055fi
2056fi
2057CC=$ac_cv_prog_CC
2058if test -n "$CC"; then
2059  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
2060$as_echo "$CC" >&6; }
2061else
2062  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2063$as_echo "no" >&6; }
2064fi
2065
2066
2067    test -n "$CC" && break
2068  done
2069fi
2070if test -z "$CC"; then
2071  ac_ct_CC=$CC
2072  for ac_prog in cl.exe
2073do
2074  # Extract the first word of "$ac_prog", so it can be a program name with args.
2075set dummy $ac_prog; ac_word=$2
2076{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2077$as_echo_n "checking for $ac_word... " >&6; }
2078if ${ac_cv_prog_ac_ct_CC+:} false; then :
2079  $as_echo_n "(cached) " >&6
2080else
2081  if test -n "$ac_ct_CC"; then
2082  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2083else
2084as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
2085for as_dir in $PATH
2086do
2087  IFS=$as_save_IFS
2088  test -z "$as_dir" && as_dir=.
2089    for ac_exec_ext in '' $ac_executable_extensions; do
2090  if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
2091    ac_cv_prog_ac_ct_CC="$ac_prog"
2092    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
2093    break 2
2094  fi
2095done
2096  done
2097IFS=$as_save_IFS
2098
2099fi
2100fi
2101ac_ct_CC=$ac_cv_prog_ac_ct_CC
2102if test -n "$ac_ct_CC"; then
2103  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
2104$as_echo "$ac_ct_CC" >&6; }
2105else
2106  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2107$as_echo "no" >&6; }
2108fi
2109
2110
2111  test -n "$ac_ct_CC" && break
2112done
2113
2114  if test "x$ac_ct_CC" = x; then
2115    CC=""
2116  else
2117    case $cross_compiling:$ac_tool_warned in
2118yes:)
2119{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
2120$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
2121ac_tool_warned=yes ;;
2122esac
2123    CC=$ac_ct_CC
2124  fi
2125fi
2126
2127fi
2128
2129
2130test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2131$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2132as_fn_error $? "no acceptable C compiler found in \$PATH
2133See \`config.log' for more details" "$LINENO" 5; }
2134
2135# Provide some information about the compiler.
2136$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
2137set X $ac_compile
2138ac_compiler=$2
2139for ac_option in --version -v -V -qversion; do
2140  { { ac_try="$ac_compiler $ac_option >&5"
2141case "(($ac_try" in
2142  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2143  *) ac_try_echo=$ac_try;;
2144esac
2145eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2146$as_echo "$ac_try_echo"; } >&5
2147  (eval "$ac_compiler $ac_option >&5") 2>conftest.err
2148  ac_status=$?
2149  if test -s conftest.err; then
2150    sed '10a\
2151... rest of stderr output deleted ...
2152         10q' conftest.err >conftest.er1
2153    cat conftest.er1 >&5
2154  fi
2155  rm -f conftest.er1 conftest.err
2156  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2157  test $ac_status = 0; }
2158done
2159
2160cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2161/* end confdefs.h.  */
2162
2163int
2164main ()
2165{
2166
2167  ;
2168  return 0;
2169}
2170_ACEOF
2171ac_clean_files_save=$ac_clean_files
2172ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
2173# Try to create an executable without -o first, disregard a.out.
2174# It will help us diagnose broken compilers, and finding out an intuition
2175# of exeext.
2176{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
2177$as_echo_n "checking whether the C compiler works... " >&6; }
2178ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
2179
2180# The possible output files:
2181ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
2182
2183ac_rmfiles=
2184for ac_file in $ac_files
2185do
2186  case $ac_file in
2187    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
2188    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
2189  esac
2190done
2191rm -f $ac_rmfiles
2192
2193if { { ac_try="$ac_link_default"
2194case "(($ac_try" in
2195  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2196  *) ac_try_echo=$ac_try;;
2197esac
2198eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2199$as_echo "$ac_try_echo"; } >&5
2200  (eval "$ac_link_default") 2>&5
2201  ac_status=$?
2202  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2203  test $ac_status = 0; }; then :
2204  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
2205# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
2206# in a Makefile.  We should not override ac_cv_exeext if it was cached,
2207# so that the user can short-circuit this test for compilers unknown to
2208# Autoconf.
2209for ac_file in $ac_files ''
2210do
2211  test -f "$ac_file" || continue
2212  case $ac_file in
2213    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
2214	;;
2215    [ab].out )
2216	# We found the default executable, but exeext='' is most
2217	# certainly right.
2218	break;;
2219    *.* )
2220	if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
2221	then :; else
2222	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
2223	fi
2224	# We set ac_cv_exeext here because the later test for it is not
2225	# safe: cross compilers may not add the suffix if given an `-o'
2226	# argument, so we may need to know it at that point already.
2227	# Even if this section looks crufty: it has the advantage of
2228	# actually working.
2229	break;;
2230    * )
2231	break;;
2232  esac
2233done
2234test "$ac_cv_exeext" = no && ac_cv_exeext=
2235
2236else
2237  ac_file=''
2238fi
2239if test -z "$ac_file"; then :
2240  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2241$as_echo "no" >&6; }
2242$as_echo "$as_me: failed program was:" >&5
2243sed 's/^/| /' conftest.$ac_ext >&5
2244
2245{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2246$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2247as_fn_error 77 "C compiler cannot create executables
2248See \`config.log' for more details" "$LINENO" 5; }
2249else
2250  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2251$as_echo "yes" >&6; }
2252fi
2253{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
2254$as_echo_n "checking for C compiler default output file name... " >&6; }
2255{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
2256$as_echo "$ac_file" >&6; }
2257ac_exeext=$ac_cv_exeext
2258
2259rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
2260ac_clean_files=$ac_clean_files_save
2261{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
2262$as_echo_n "checking for suffix of executables... " >&6; }
2263if { { ac_try="$ac_link"
2264case "(($ac_try" in
2265  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2266  *) ac_try_echo=$ac_try;;
2267esac
2268eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2269$as_echo "$ac_try_echo"; } >&5
2270  (eval "$ac_link") 2>&5
2271  ac_status=$?
2272  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2273  test $ac_status = 0; }; then :
2274  # If both `conftest.exe' and `conftest' are `present' (well, observable)
2275# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
2276# work properly (i.e., refer to `conftest.exe'), while it won't with
2277# `rm'.
2278for ac_file in conftest.exe conftest conftest.*; do
2279  test -f "$ac_file" || continue
2280  case $ac_file in
2281    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
2282    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
2283	  break;;
2284    * ) break;;
2285  esac
2286done
2287else
2288  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2289$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2290as_fn_error $? "cannot compute suffix of executables: cannot compile and link
2291See \`config.log' for more details" "$LINENO" 5; }
2292fi
2293rm -f conftest conftest$ac_cv_exeext
2294{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
2295$as_echo "$ac_cv_exeext" >&6; }
2296
2297rm -f conftest.$ac_ext
2298EXEEXT=$ac_cv_exeext
2299ac_exeext=$EXEEXT
2300cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2301/* end confdefs.h.  */
2302#include <stdio.h>
2303int
2304main ()
2305{
2306FILE *f = fopen ("conftest.out", "w");
2307 return ferror (f) || fclose (f) != 0;
2308
2309  ;
2310  return 0;
2311}
2312_ACEOF
2313ac_clean_files="$ac_clean_files conftest.out"
2314# Check that the compiler produces executables we can run.  If not, either
2315# the compiler is broken, or we cross compile.
2316{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
2317$as_echo_n "checking whether we are cross compiling... " >&6; }
2318if test "$cross_compiling" != yes; then
2319  { { ac_try="$ac_link"
2320case "(($ac_try" in
2321  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2322  *) ac_try_echo=$ac_try;;
2323esac
2324eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2325$as_echo "$ac_try_echo"; } >&5
2326  (eval "$ac_link") 2>&5
2327  ac_status=$?
2328  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2329  test $ac_status = 0; }
2330  if { ac_try='./conftest$ac_cv_exeext'
2331  { { case "(($ac_try" in
2332  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2333  *) ac_try_echo=$ac_try;;
2334esac
2335eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2336$as_echo "$ac_try_echo"; } >&5
2337  (eval "$ac_try") 2>&5
2338  ac_status=$?
2339  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2340  test $ac_status = 0; }; }; then
2341    cross_compiling=no
2342  else
2343    if test "$cross_compiling" = maybe; then
2344	cross_compiling=yes
2345    else
2346	{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2347$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2348as_fn_error $? "cannot run C compiled programs.
2349If you meant to cross compile, use \`--host'.
2350See \`config.log' for more details" "$LINENO" 5; }
2351    fi
2352  fi
2353fi
2354{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
2355$as_echo "$cross_compiling" >&6; }
2356
2357rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
2358ac_clean_files=$ac_clean_files_save
2359{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
2360$as_echo_n "checking for suffix of object files... " >&6; }
2361if ${ac_cv_objext+:} false; then :
2362  $as_echo_n "(cached) " >&6
2363else
2364  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2365/* end confdefs.h.  */
2366
2367int
2368main ()
2369{
2370
2371  ;
2372  return 0;
2373}
2374_ACEOF
2375rm -f conftest.o conftest.obj
2376if { { ac_try="$ac_compile"
2377case "(($ac_try" in
2378  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
2379  *) ac_try_echo=$ac_try;;
2380esac
2381eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
2382$as_echo "$ac_try_echo"; } >&5
2383  (eval "$ac_compile") 2>&5
2384  ac_status=$?
2385  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2386  test $ac_status = 0; }; then :
2387  for ac_file in conftest.o conftest.obj conftest.*; do
2388  test -f "$ac_file" || continue;
2389  case $ac_file in
2390    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
2391    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
2392       break;;
2393  esac
2394done
2395else
2396  $as_echo "$as_me: failed program was:" >&5
2397sed 's/^/| /' conftest.$ac_ext >&5
2398
2399{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2400$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2401as_fn_error $? "cannot compute suffix of object files: cannot compile
2402See \`config.log' for more details" "$LINENO" 5; }
2403fi
2404rm -f conftest.$ac_cv_objext conftest.$ac_ext
2405fi
2406{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
2407$as_echo "$ac_cv_objext" >&6; }
2408OBJEXT=$ac_cv_objext
2409ac_objext=$OBJEXT
2410{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
2411$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
2412if ${ac_cv_c_compiler_gnu+:} false; then :
2413  $as_echo_n "(cached) " >&6
2414else
2415  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2416/* end confdefs.h.  */
2417
2418int
2419main ()
2420{
2421#ifndef __GNUC__
2422       choke me
2423#endif
2424
2425  ;
2426  return 0;
2427}
2428_ACEOF
2429if ac_fn_c_try_compile "$LINENO"; then :
2430  ac_compiler_gnu=yes
2431else
2432  ac_compiler_gnu=no
2433fi
2434rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2435ac_cv_c_compiler_gnu=$ac_compiler_gnu
2436
2437fi
2438{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
2439$as_echo "$ac_cv_c_compiler_gnu" >&6; }
2440if test $ac_compiler_gnu = yes; then
2441  GCC=yes
2442else
2443  GCC=
2444fi
2445ac_test_CFLAGS=${CFLAGS+set}
2446ac_save_CFLAGS=$CFLAGS
2447{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
2448$as_echo_n "checking whether $CC accepts -g... " >&6; }
2449if ${ac_cv_prog_cc_g+:} false; then :
2450  $as_echo_n "(cached) " >&6
2451else
2452  ac_save_c_werror_flag=$ac_c_werror_flag
2453   ac_c_werror_flag=yes
2454   ac_cv_prog_cc_g=no
2455   CFLAGS="-g"
2456   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2457/* end confdefs.h.  */
2458
2459int
2460main ()
2461{
2462
2463  ;
2464  return 0;
2465}
2466_ACEOF
2467if ac_fn_c_try_compile "$LINENO"; then :
2468  ac_cv_prog_cc_g=yes
2469else
2470  CFLAGS=""
2471      cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2472/* end confdefs.h.  */
2473
2474int
2475main ()
2476{
2477
2478  ;
2479  return 0;
2480}
2481_ACEOF
2482if ac_fn_c_try_compile "$LINENO"; then :
2483
2484else
2485  ac_c_werror_flag=$ac_save_c_werror_flag
2486	 CFLAGS="-g"
2487	 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2488/* end confdefs.h.  */
2489
2490int
2491main ()
2492{
2493
2494  ;
2495  return 0;
2496}
2497_ACEOF
2498if ac_fn_c_try_compile "$LINENO"; then :
2499  ac_cv_prog_cc_g=yes
2500fi
2501rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2502fi
2503rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2504fi
2505rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2506   ac_c_werror_flag=$ac_save_c_werror_flag
2507fi
2508{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
2509$as_echo "$ac_cv_prog_cc_g" >&6; }
2510if test "$ac_test_CFLAGS" = set; then
2511  CFLAGS=$ac_save_CFLAGS
2512elif test $ac_cv_prog_cc_g = yes; then
2513  if test "$GCC" = yes; then
2514    CFLAGS="-g -O2"
2515  else
2516    CFLAGS="-g"
2517  fi
2518else
2519  if test "$GCC" = yes; then
2520    CFLAGS="-O2"
2521  else
2522    CFLAGS=
2523  fi
2524fi
2525{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
2526$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
2527if ${ac_cv_prog_cc_c89+:} false; then :
2528  $as_echo_n "(cached) " >&6
2529else
2530  ac_cv_prog_cc_c89=no
2531ac_save_CC=$CC
2532cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2533/* end confdefs.h.  */
2534#include <stdarg.h>
2535#include <stdio.h>
2536struct stat;
2537/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
2538struct buf { int x; };
2539FILE * (*rcsopen) (struct buf *, struct stat *, int);
2540static char *e (p, i)
2541     char **p;
2542     int i;
2543{
2544  return p[i];
2545}
2546static char *f (char * (*g) (char **, int), char **p, ...)
2547{
2548  char *s;
2549  va_list v;
2550  va_start (v,p);
2551  s = g (p, va_arg (v,int));
2552  va_end (v);
2553  return s;
2554}
2555
2556/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
2557   function prototypes and stuff, but not '\xHH' hex character constants.
2558   These don't provoke an error unfortunately, instead are silently treated
2559   as 'x'.  The following induces an error, until -std is added to get
2560   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
2561   array size at least.  It's necessary to write '\x00'==0 to get something
2562   that's true only with -std.  */
2563int osf4_cc_array ['\x00' == 0 ? 1 : -1];
2564
2565/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
2566   inside strings and character constants.  */
2567#define FOO(x) 'x'
2568int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
2569
2570int test (int i, double x);
2571struct s1 {int (*f) (int a);};
2572struct s2 {int (*f) (double a);};
2573int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
2574int argc;
2575char **argv;
2576int
2577main ()
2578{
2579return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
2580  ;
2581  return 0;
2582}
2583_ACEOF
2584for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
2585	-Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
2586do
2587  CC="$ac_save_CC $ac_arg"
2588  if ac_fn_c_try_compile "$LINENO"; then :
2589  ac_cv_prog_cc_c89=$ac_arg
2590fi
2591rm -f core conftest.err conftest.$ac_objext
2592  test "x$ac_cv_prog_cc_c89" != "xno" && break
2593done
2594rm -f conftest.$ac_ext
2595CC=$ac_save_CC
2596
2597fi
2598# AC_CACHE_VAL
2599case "x$ac_cv_prog_cc_c89" in
2600  x)
2601    { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
2602$as_echo "none needed" >&6; } ;;
2603  xno)
2604    { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
2605$as_echo "unsupported" >&6; } ;;
2606  *)
2607    CC="$CC $ac_cv_prog_cc_c89"
2608    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
2609$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
2610esac
2611if test "x$ac_cv_prog_cc_c89" != xno; then :
2612
2613fi
2614
2615ac_ext=c
2616ac_cpp='$CPP $CPPFLAGS'
2617ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2618ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2619ac_compiler_gnu=$ac_cv_c_compiler_gnu
2620
2621	ac_ext=c
2622ac_cpp='$CPP $CPPFLAGS'
2623ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2624ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2625ac_compiler_gnu=$ac_cv_c_compiler_gnu
2626{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
2627$as_echo_n "checking how to run the C preprocessor... " >&6; }
2628# On Suns, sometimes $CPP names a directory.
2629if test -n "$CPP" && test -d "$CPP"; then
2630  CPP=
2631fi
2632if test -z "$CPP"; then
2633  if ${ac_cv_prog_CPP+:} false; then :
2634  $as_echo_n "(cached) " >&6
2635else
2636      # Double quotes because CPP needs to be expanded
2637    for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
2638    do
2639      ac_preproc_ok=false
2640for ac_c_preproc_warn_flag in '' yes
2641do
2642  # Use a header file that comes with gcc, so configuring glibc
2643  # with a fresh cross-compiler works.
2644  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2645  # <limits.h> exists even on freestanding compilers.
2646  # On the NeXT, cc -E runs the code through the compiler's parser,
2647  # not just through cpp. "Syntax error" is here to catch this case.
2648  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2649/* end confdefs.h.  */
2650#ifdef __STDC__
2651# include <limits.h>
2652#else
2653# include <assert.h>
2654#endif
2655		     Syntax error
2656_ACEOF
2657if ac_fn_c_try_cpp "$LINENO"; then :
2658
2659else
2660  # Broken: fails on valid input.
2661continue
2662fi
2663rm -f conftest.err conftest.i conftest.$ac_ext
2664
2665  # OK, works on sane cases.  Now check whether nonexistent headers
2666  # can be detected and how.
2667  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2668/* end confdefs.h.  */
2669#include <ac_nonexistent.h>
2670_ACEOF
2671if ac_fn_c_try_cpp "$LINENO"; then :
2672  # Broken: success on invalid input.
2673continue
2674else
2675  # Passes both tests.
2676ac_preproc_ok=:
2677break
2678fi
2679rm -f conftest.err conftest.i conftest.$ac_ext
2680
2681done
2682# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
2683rm -f conftest.i conftest.err conftest.$ac_ext
2684if $ac_preproc_ok; then :
2685  break
2686fi
2687
2688    done
2689    ac_cv_prog_CPP=$CPP
2690
2691fi
2692  CPP=$ac_cv_prog_CPP
2693else
2694  ac_cv_prog_CPP=$CPP
2695fi
2696{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
2697$as_echo "$CPP" >&6; }
2698ac_preproc_ok=false
2699for ac_c_preproc_warn_flag in '' yes
2700do
2701  # Use a header file that comes with gcc, so configuring glibc
2702  # with a fresh cross-compiler works.
2703  # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2704  # <limits.h> exists even on freestanding compilers.
2705  # On the NeXT, cc -E runs the code through the compiler's parser,
2706  # not just through cpp. "Syntax error" is here to catch this case.
2707  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2708/* end confdefs.h.  */
2709#ifdef __STDC__
2710# include <limits.h>
2711#else
2712# include <assert.h>
2713#endif
2714		     Syntax error
2715_ACEOF
2716if ac_fn_c_try_cpp "$LINENO"; then :
2717
2718else
2719  # Broken: fails on valid input.
2720continue
2721fi
2722rm -f conftest.err conftest.i conftest.$ac_ext
2723
2724  # OK, works on sane cases.  Now check whether nonexistent headers
2725  # can be detected and how.
2726  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2727/* end confdefs.h.  */
2728#include <ac_nonexistent.h>
2729_ACEOF
2730if ac_fn_c_try_cpp "$LINENO"; then :
2731  # Broken: success on invalid input.
2732continue
2733else
2734  # Passes both tests.
2735ac_preproc_ok=:
2736break
2737fi
2738rm -f conftest.err conftest.i conftest.$ac_ext
2739
2740done
2741# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
2742rm -f conftest.i conftest.err conftest.$ac_ext
2743if $ac_preproc_ok; then :
2744
2745else
2746  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2747$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2748as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
2749See \`config.log' for more details" "$LINENO" 5; }
2750fi
2751
2752ac_ext=c
2753ac_cpp='$CPP $CPPFLAGS'
2754ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
2755ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
2756ac_compiler_gnu=$ac_cv_c_compiler_gnu
2757
2758
2759
2760
2761
2762sm_lib_safe=`echo "c" | sed 'y%./+-%__p_%'`
2763sm_func_safe=`echo "printf" | sed 'y%./+-%__p_%'`
2764
2765old_LIBS="$LIBS"
2766old_CPPFLAGS="$CPPFLAGS"
2767smart_lib=
2768smart_ldflags=
2769smart_lib_dir=
2770
2771if test "x$smart_try_dir" != "x"; then
2772  for try in $smart_try_dir; do
2773    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf in -lc in $try" >&5
2774$as_echo_n "checking for printf in -lc in $try... " >&6; }
2775    LIBS="-lc $old_LIBS"
2776    CPPFLAGS="-L$try -Wl,-rpath,$try $old_CPPFLAGS"
2777    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2778/* end confdefs.h.  */
2779extern char printf();
2780int
2781main ()
2782{
2783printf()
2784  ;
2785  return 0;
2786}
2787_ACEOF
2788if ac_fn_c_try_link "$LINENO"; then :
2789
2790		 smart_lib="-lc"
2791		 smart_ldflags="-L$try -Wl,-rpath,$try"
2792		 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2793$as_echo "yes" >&6; }
2794		 break
2795
2796else
2797  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2798$as_echo "no" >&6; }
2799fi
2800rm -f core conftest.err conftest.$ac_objext \
2801    conftest$ac_exeext conftest.$ac_ext
2802  done
2803  LIBS="$old_LIBS"
2804  CPPFLAGS="$old_CPPFLAGS"
2805fi
2806
2807if test "x$smart_lib" = "x"; then
2808  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf in -lc" >&5
2809$as_echo_n "checking for printf in -lc... " >&6; }
2810  LIBS="-lc $old_LIBS"
2811  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2812/* end confdefs.h.  */
2813extern char printf();
2814int
2815main ()
2816{
2817printf()
2818  ;
2819  return 0;
2820}
2821_ACEOF
2822if ac_fn_c_try_link "$LINENO"; then :
2823
2824	        smart_lib="-lc"
2825	        { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2826$as_echo "yes" >&6; }
2827
2828else
2829  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2830$as_echo "no" >&6; }
2831fi
2832rm -f core conftest.err conftest.$ac_objext \
2833    conftest$ac_exeext conftest.$ac_ext
2834  LIBS="$old_LIBS"
2835fi
2836
2837if test "x$smart_lib" = "x"; then
2838
2839
2840if test "x$LOCATE" != "x"; then
2841        DIRS=
2842  file=libc${libltdl_cv_shlibext}
2843
2844  for x in `${LOCATE} $file 2>/dev/null`; do
2845                                        base=`echo $x | sed "s%/${file}%%"`
2846    if test "x$x" = "x$base"; then
2847      continue;
2848    fi
2849
2850    dir=`${DIRNAME} $x 2>/dev/null`
2851                exclude=`echo ${dir} | ${GREP} /home`
2852    if test "x$exclude" != "x"; then
2853      continue
2854    fi
2855
2856                    already=`echo \$smart_lib_dir ${DIRS} | ${GREP} ${dir}`
2857    if test "x$already" = "x"; then
2858      DIRS="$DIRS $dir"
2859    fi
2860  done
2861fi
2862
2863eval "smart_lib_dir=\"\$smart_lib_dir $DIRS\""
2864
2865
2866
2867if test "x$LOCATE" != "x"; then
2868        DIRS=
2869  file=libc.a
2870
2871  for x in `${LOCATE} $file 2>/dev/null`; do
2872                                        base=`echo $x | sed "s%/${file}%%"`
2873    if test "x$x" = "x$base"; then
2874      continue;
2875    fi
2876
2877    dir=`${DIRNAME} $x 2>/dev/null`
2878                exclude=`echo ${dir} | ${GREP} /home`
2879    if test "x$exclude" != "x"; then
2880      continue
2881    fi
2882
2883                    already=`echo \$smart_lib_dir ${DIRS} | ${GREP} ${dir}`
2884    if test "x$already" = "x"; then
2885      DIRS="$DIRS $dir"
2886    fi
2887  done
2888fi
2889
2890eval "smart_lib_dir=\"\$smart_lib_dir $DIRS\""
2891
2892
2893  for try in $smart_lib_dir /usr/local/lib /opt/lib; do
2894    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for printf in -lc in $try" >&5
2895$as_echo_n "checking for printf in -lc in $try... " >&6; }
2896    LIBS="-lc $old_LIBS"
2897    CPPFLAGS="-L$try -Wl,-rpath,$try $old_CPPFLAGS"
2898    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2899/* end confdefs.h.  */
2900extern char printf();
2901int
2902main ()
2903{
2904printf()
2905  ;
2906  return 0;
2907}
2908_ACEOF
2909if ac_fn_c_try_link "$LINENO"; then :
2910
2911		  smart_lib="-lc"
2912		  smart_ldflags="-L$try -Wl,-rpath,$try"
2913		  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2914$as_echo "yes" >&6; }
2915		  break
2916
2917else
2918  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2919$as_echo "no" >&6; }
2920fi
2921rm -f core conftest.err conftest.$ac_objext \
2922    conftest$ac_exeext conftest.$ac_ext
2923  done
2924  LIBS="$old_LIBS"
2925  CPPFLAGS="$old_CPPFLAGS"
2926fi
2927
2928if test "x$smart_lib" != "x"; then
2929  eval "ac_cv_lib_${sm_lib_safe}_${sm_func_safe}=yes"
2930  LIBS="$smart_ldflags $smart_lib $old_LIBS"
2931  SMART_LIBS="$smart_ldflags $smart_lib $SMART_LIBS"
2932fi
2933
2934	if test "x$ac_cv_lib_c_printf" != "xyes"; then
2935		fail="$fail libc"
2936	fi
2937
2938
2939
2940ac_safe=`echo "stdio.h" | sed 'y%./+-%__pm%'`
2941old_CPPFLAGS="$CPPFLAGS"
2942smart_include=
2943smart_include_dir="/usr/local/include /opt/include"
2944
2945_smart_try_dir=
2946_smart_include_dir=
2947
2948for _prefix in $smart_prefix ""; do
2949  for _dir in $smart_try_dir; do
2950    _smart_try_dir="${_smart_try_dir} ${_dir}/${_prefix}"
2951  done
2952
2953  for _dir in $smart_include_dir; do
2954    _smart_include_dir="${_smart_include_dir} ${_dir}/${_prefix}"
2955  done
2956done
2957
2958if test "x$_smart_try_dir" != "x"; then
2959  for try in $_smart_try_dir; do
2960    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdio.h in $try" >&5
2961$as_echo_n "checking for stdio.h in $try... " >&6; }
2962    CPPFLAGS="-isystem $try $old_CPPFLAGS"
2963    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2964/* end confdefs.h.  */
2965
2966		    #include <stdio.h>
2967int
2968main ()
2969{
2970int a = 1;
2971  ;
2972  return 0;
2973}
2974_ACEOF
2975if ac_fn_c_try_compile "$LINENO"; then :
2976
2977		     smart_include="-isystem $try"
2978		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
2979$as_echo "yes" >&6; }
2980		     break
2981
2982else
2983
2984		     smart_include=
2985		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
2986$as_echo "no" >&6; }
2987
2988fi
2989rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2990  done
2991  CPPFLAGS="$old_CPPFLAGS"
2992fi
2993
2994if test "x$smart_include" = "x"; then
2995  for _prefix in $smart_prefix; do
2996    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${_prefix}/stdio.h" >&5
2997$as_echo_n "checking for ${_prefix}/stdio.h... " >&6; }
2998
2999    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3000/* end confdefs.h.  */
3001
3002		    #include <stdio.h>
3003int
3004main ()
3005{
3006int a = 1;
3007  ;
3008  return 0;
3009}
3010_ACEOF
3011if ac_fn_c_try_compile "$LINENO"; then :
3012
3013		     smart_include="-isystem ${_prefix}/"
3014		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3015$as_echo "yes" >&6; }
3016		     break
3017
3018else
3019
3020		     smart_include=
3021		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3022$as_echo "no" >&6; }
3023
3024fi
3025rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3026  done
3027fi
3028
3029if test "x$smart_include" = "x"; then
3030    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdio.h" >&5
3031$as_echo_n "checking for stdio.h... " >&6; }
3032
3033    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3034/* end confdefs.h.  */
3035
3036		    #include <stdio.h>
3037int
3038main ()
3039{
3040int a = 1;
3041  ;
3042  return 0;
3043}
3044_ACEOF
3045if ac_fn_c_try_compile "$LINENO"; then :
3046
3047		     smart_include=" "
3048		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3049$as_echo "yes" >&6; }
3050		     break
3051
3052else
3053
3054		     smart_include=
3055		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3056$as_echo "no" >&6; }
3057
3058fi
3059rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3060fi
3061
3062if test "x$smart_include" = "x"; then
3063
3064  for prefix in $smart_prefix; do
3065
3066
3067if test "x$LOCATE" != "x"; then
3068        DIRS=
3069  file="${_prefix}/${1}"
3070
3071  for x in `${LOCATE} $file 2>/dev/null`; do
3072                                        base=`echo $x | sed "s%/${file}%%"`
3073    if test "x$x" = "x$base"; then
3074      continue;
3075    fi
3076
3077    dir=`${DIRNAME} $x 2>/dev/null`
3078                exclude=`echo ${dir} | ${GREP} /home`
3079    if test "x$exclude" != "x"; then
3080      continue
3081    fi
3082
3083                    already=`echo \$_smart_include_dir ${DIRS} | ${GREP} ${dir}`
3084    if test "x$already" = "x"; then
3085      DIRS="$DIRS $dir"
3086    fi
3087  done
3088fi
3089
3090eval "_smart_include_dir=\"\$_smart_include_dir $DIRS\""
3091
3092  done
3093
3094
3095if test "x$LOCATE" != "x"; then
3096        DIRS=
3097  file=stdio.h
3098
3099  for x in `${LOCATE} $file 2>/dev/null`; do
3100                                        base=`echo $x | sed "s%/${file}%%"`
3101    if test "x$x" = "x$base"; then
3102      continue;
3103    fi
3104
3105    dir=`${DIRNAME} $x 2>/dev/null`
3106                exclude=`echo ${dir} | ${GREP} /home`
3107    if test "x$exclude" != "x"; then
3108      continue
3109    fi
3110
3111                    already=`echo \$_smart_include_dir ${DIRS} | ${GREP} ${dir}`
3112    if test "x$already" = "x"; then
3113      DIRS="$DIRS $dir"
3114    fi
3115  done
3116fi
3117
3118eval "_smart_include_dir=\"\$_smart_include_dir $DIRS\""
3119
3120
3121  for try in $_smart_include_dir; do
3122    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdio.h in $try" >&5
3123$as_echo_n "checking for stdio.h in $try... " >&6; }
3124    CPPFLAGS="-isystem $try $old_CPPFLAGS"
3125    cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3126/* end confdefs.h.  */
3127
3128		    #include <stdio.h>
3129int
3130main ()
3131{
3132int a = 1;
3133  ;
3134  return 0;
3135}
3136_ACEOF
3137if ac_fn_c_try_compile "$LINENO"; then :
3138
3139		     smart_include="-isystem $try"
3140		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3141$as_echo "yes" >&6; }
3142		     break
3143
3144else
3145
3146		     smart_include=
3147		     { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
3148$as_echo "no" >&6; }
3149
3150fi
3151rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
3152  done
3153  CPPFLAGS="$old_CPPFLAGS"
3154fi
3155
3156if test "x$smart_include" != "x"; then
3157  eval "ac_cv_header_$ac_safe=yes"
3158  CPPFLAGS="$smart_include $old_CPPFLAGS"
3159  SMART_CPPFLAGS="$smart_include $SMART_CPPFLAGS"
3160fi
3161
3162smart_prefix=
3163
3164	if test "$ac_cv_header_stdio_h" != "yes"; then
3165		fail="$fail stdio.h"
3166	fi
3167	targetname=rlm_example
3168else
3169	targetname=
3170	echo \*\*\* module rlm_example is disabled.
3171fi
3172
3173if test x"$fail" != x""; then
3174	if test x"${enable_strict_dependencies}" = x"yes"; then
3175		as_fn_error $? "set --without-rlm_example to disable it explicitly." "$LINENO" 5
3176	else
3177		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: silently not building rlm_example." >&5
3178$as_echo "$as_me: WARNING: silently not building rlm_example." >&2;}
3179		{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: FAILURE: rlm_example requires: $fail." >&5
3180$as_echo "$as_me: WARNING: FAILURE: rlm_example requires: $fail." >&2;};
3181		targetname=""
3182	fi
3183fi
3184
3185mod_ldflags="${SMART_LIBS}"
3186mod_cflags="${SMART_CPPFLAGS}"
3187
3188
3189
3190
3191ac_config_headers="$ac_config_headers config.h"
3192
3193
3194
3195
3196  unset ac_cv_env_LIBS_set
3197  unset ac_cv_env_LIBS_value
3198
3199  ac_config_files="$ac_config_files all.mk"
3200
3201cat >confcache <<\_ACEOF
3202# This file is a shell script that caches the results of configure
3203# tests run on this system so they can be shared between configure
3204# scripts and configure runs, see configure's option --config-cache.
3205# It is not useful on other systems.  If it contains results you don't
3206# want to keep, you may remove or edit it.
3207#
3208# config.status only pays attention to the cache file if you give it
3209# the --recheck option to rerun configure.
3210#
3211# `ac_cv_env_foo' variables (set or unset) will be overridden when
3212# loading this file, other *unset* `ac_cv_foo' will be assigned the
3213# following values.
3214
3215_ACEOF
3216
3217# The following way of writing the cache mishandles newlines in values,
3218# but we know of no workaround that is simple, portable, and efficient.
3219# So, we kill variables containing newlines.
3220# Ultrix sh set writes to stderr and can't be redirected directly,
3221# and sets the high bit in the cache file unless we assign to the vars.
3222(
3223  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
3224    eval ac_val=\$$ac_var
3225    case $ac_val in #(
3226    *${as_nl}*)
3227      case $ac_var in #(
3228      *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
3229$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
3230      esac
3231      case $ac_var in #(
3232      _ | IFS | as_nl) ;; #(
3233      BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
3234      *) { eval $ac_var=; unset $ac_var;} ;;
3235      esac ;;
3236    esac
3237  done
3238
3239  (set) 2>&1 |
3240    case $as_nl`(ac_space=' '; set) 2>&1` in #(
3241    *${as_nl}ac_space=\ *)
3242      # `set' does not quote correctly, so add quotes: double-quote
3243      # substitution turns \\\\ into \\, and sed turns \\ into \.
3244      sed -n \
3245	"s/'/'\\\\''/g;
3246	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
3247      ;; #(
3248    *)
3249      # `set' quotes correctly as required by POSIX, so do not add quotes.
3250      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
3251      ;;
3252    esac |
3253    sort
3254) |
3255  sed '
3256     /^ac_cv_env_/b end
3257     t clear
3258     :clear
3259     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
3260     t end
3261     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
3262     :end' >>confcache
3263if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
3264  if test -w "$cache_file"; then
3265    if test "x$cache_file" != "x/dev/null"; then
3266      { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
3267$as_echo "$as_me: updating cache $cache_file" >&6;}
3268      if test ! -f "$cache_file" || test -h "$cache_file"; then
3269	cat confcache >"$cache_file"
3270      else
3271        case $cache_file in #(
3272        */* | ?:*)
3273	  mv -f confcache "$cache_file"$$ &&
3274	  mv -f "$cache_file"$$ "$cache_file" ;; #(
3275        *)
3276	  mv -f confcache "$cache_file" ;;
3277	esac
3278      fi
3279    fi
3280  else
3281    { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
3282$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
3283  fi
3284fi
3285rm -f confcache
3286
3287test "x$prefix" = xNONE && prefix=$ac_default_prefix
3288# Let make expand exec_prefix.
3289test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
3290
3291DEFS=-DHAVE_CONFIG_H
3292
3293ac_libobjs=
3294ac_ltlibobjs=
3295U=
3296for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
3297  # 1. Remove the extension, and $U if already installed.
3298  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
3299  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
3300  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
3301  #    will be set to the directory where LIBOBJS objects are built.
3302  as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
3303  as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
3304done
3305LIBOBJS=$ac_libobjs
3306
3307LTLIBOBJS=$ac_ltlibobjs
3308
3309
3310
3311: "${CONFIG_STATUS=./config.status}"
3312ac_write_fail=0
3313ac_clean_files_save=$ac_clean_files
3314ac_clean_files="$ac_clean_files $CONFIG_STATUS"
3315{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
3316$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
3317as_write_fail=0
3318cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
3319#! $SHELL
3320# Generated by $as_me.
3321# Run this file to recreate the current configuration.
3322# Compiler output produced by configure, useful for debugging
3323# configure, is in config.log if it exists.
3324
3325debug=false
3326ac_cs_recheck=false
3327ac_cs_silent=false
3328
3329SHELL=\${CONFIG_SHELL-$SHELL}
3330export SHELL
3331_ASEOF
3332cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
3333## -------------------- ##
3334## M4sh Initialization. ##
3335## -------------------- ##
3336
3337# Be more Bourne compatible
3338DUALCASE=1; export DUALCASE # for MKS sh
3339if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
3340  emulate sh
3341  NULLCMD=:
3342  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
3343  # is contrary to our usage.  Disable this feature.
3344  alias -g '${1+"$@"}'='"$@"'
3345  setopt NO_GLOB_SUBST
3346else
3347  case `(set -o) 2>/dev/null` in #(
3348  *posix*) :
3349    set -o posix ;; #(
3350  *) :
3351     ;;
3352esac
3353fi
3354
3355
3356as_nl='
3357'
3358export as_nl
3359# Printing a long string crashes Solaris 7 /usr/bin/printf.
3360as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
3361as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
3362as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
3363# Prefer a ksh shell builtin over an external printf program on Solaris,
3364# but without wasting forks for bash or zsh.
3365if test -z "$BASH_VERSION$ZSH_VERSION" \
3366    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
3367  as_echo='print -r --'
3368  as_echo_n='print -rn --'
3369elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
3370  as_echo='printf %s\n'
3371  as_echo_n='printf %s'
3372else
3373  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
3374    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
3375    as_echo_n='/usr/ucb/echo -n'
3376  else
3377    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
3378    as_echo_n_body='eval
3379      arg=$1;
3380      case $arg in #(
3381      *"$as_nl"*)
3382	expr "X$arg" : "X\\(.*\\)$as_nl";
3383	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
3384      esac;
3385      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
3386    '
3387    export as_echo_n_body
3388    as_echo_n='sh -c $as_echo_n_body as_echo'
3389  fi
3390  export as_echo_body
3391  as_echo='sh -c $as_echo_body as_echo'
3392fi
3393
3394# The user is always right.
3395if test "${PATH_SEPARATOR+set}" != set; then
3396  PATH_SEPARATOR=:
3397  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
3398    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
3399      PATH_SEPARATOR=';'
3400  }
3401fi
3402
3403
3404# IFS
3405# We need space, tab and new line, in precisely that order.  Quoting is
3406# there to prevent editors from complaining about space-tab.
3407# (If _AS_PATH_WALK were called with IFS unset, it would disable word
3408# splitting by setting IFS to empty value.)
3409IFS=" ""	$as_nl"
3410
3411# Find who we are.  Look in the path if we contain no directory separator.
3412as_myself=
3413case $0 in #((
3414  *[\\/]* ) as_myself=$0 ;;
3415  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3416for as_dir in $PATH
3417do
3418  IFS=$as_save_IFS
3419  test -z "$as_dir" && as_dir=.
3420    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
3421  done
3422IFS=$as_save_IFS
3423
3424     ;;
3425esac
3426# We did not find ourselves, most probably we were run as `sh COMMAND'
3427# in which case we are not to be found in the path.
3428if test "x$as_myself" = x; then
3429  as_myself=$0
3430fi
3431if test ! -f "$as_myself"; then
3432  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
3433  exit 1
3434fi
3435
3436# Unset variables that we do not need and which cause bugs (e.g. in
3437# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
3438# suppresses any "Segmentation fault" message there.  '((' could
3439# trigger a bug in pdksh 5.2.14.
3440for as_var in BASH_ENV ENV MAIL MAILPATH
3441do eval test x\${$as_var+set} = xset \
3442  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
3443done
3444PS1='$ '
3445PS2='> '
3446PS4='+ '
3447
3448# NLS nuisances.
3449LC_ALL=C
3450export LC_ALL
3451LANGUAGE=C
3452export LANGUAGE
3453
3454# CDPATH.
3455(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
3456
3457
3458# as_fn_error STATUS ERROR [LINENO LOG_FD]
3459# ----------------------------------------
3460# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
3461# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
3462# script with STATUS, using 1 if that was 0.
3463as_fn_error ()
3464{
3465  as_status=$1; test $as_status -eq 0 && as_status=1
3466  if test "$4"; then
3467    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
3468    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
3469  fi
3470  $as_echo "$as_me: error: $2" >&2
3471  as_fn_exit $as_status
3472} # as_fn_error
3473
3474
3475# as_fn_set_status STATUS
3476# -----------------------
3477# Set $? to STATUS, without forking.
3478as_fn_set_status ()
3479{
3480  return $1
3481} # as_fn_set_status
3482
3483# as_fn_exit STATUS
3484# -----------------
3485# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
3486as_fn_exit ()
3487{
3488  set +e
3489  as_fn_set_status $1
3490  exit $1
3491} # as_fn_exit
3492
3493# as_fn_unset VAR
3494# ---------------
3495# Portably unset VAR.
3496as_fn_unset ()
3497{
3498  { eval $1=; unset $1;}
3499}
3500as_unset=as_fn_unset
3501# as_fn_append VAR VALUE
3502# ----------------------
3503# Append the text in VALUE to the end of the definition contained in VAR. Take
3504# advantage of any shell optimizations that allow amortized linear growth over
3505# repeated appends, instead of the typical quadratic growth present in naive
3506# implementations.
3507if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
3508  eval 'as_fn_append ()
3509  {
3510    eval $1+=\$2
3511  }'
3512else
3513  as_fn_append ()
3514  {
3515    eval $1=\$$1\$2
3516  }
3517fi # as_fn_append
3518
3519# as_fn_arith ARG...
3520# ------------------
3521# Perform arithmetic evaluation on the ARGs, and store the result in the
3522# global $as_val. Take advantage of shells that can avoid forks. The arguments
3523# must be portable across $(()) and expr.
3524if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
3525  eval 'as_fn_arith ()
3526  {
3527    as_val=$(( $* ))
3528  }'
3529else
3530  as_fn_arith ()
3531  {
3532    as_val=`expr "$@" || test $? -eq 1`
3533  }
3534fi # as_fn_arith
3535
3536
3537if expr a : '\(a\)' >/dev/null 2>&1 &&
3538   test "X`expr 00001 : '.*\(...\)'`" = X001; then
3539  as_expr=expr
3540else
3541  as_expr=false
3542fi
3543
3544if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
3545  as_basename=basename
3546else
3547  as_basename=false
3548fi
3549
3550if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
3551  as_dirname=dirname
3552else
3553  as_dirname=false
3554fi
3555
3556as_me=`$as_basename -- "$0" ||
3557$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
3558	 X"$0" : 'X\(//\)$' \| \
3559	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
3560$as_echo X/"$0" |
3561    sed '/^.*\/\([^/][^/]*\)\/*$/{
3562	    s//\1/
3563	    q
3564	  }
3565	  /^X\/\(\/\/\)$/{
3566	    s//\1/
3567	    q
3568	  }
3569	  /^X\/\(\/\).*/{
3570	    s//\1/
3571	    q
3572	  }
3573	  s/.*/./; q'`
3574
3575# Avoid depending upon Character Ranges.
3576as_cr_letters='abcdefghijklmnopqrstuvwxyz'
3577as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
3578as_cr_Letters=$as_cr_letters$as_cr_LETTERS
3579as_cr_digits='0123456789'
3580as_cr_alnum=$as_cr_Letters$as_cr_digits
3581
3582ECHO_C= ECHO_N= ECHO_T=
3583case `echo -n x` in #(((((
3584-n*)
3585  case `echo 'xy\c'` in
3586  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
3587  xy)  ECHO_C='\c';;
3588  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
3589       ECHO_T='	';;
3590  esac;;
3591*)
3592  ECHO_N='-n';;
3593esac
3594
3595rm -f conf$$ conf$$.exe conf$$.file
3596if test -d conf$$.dir; then
3597  rm -f conf$$.dir/conf$$.file
3598else
3599  rm -f conf$$.dir
3600  mkdir conf$$.dir 2>/dev/null
3601fi
3602if (echo >conf$$.file) 2>/dev/null; then
3603  if ln -s conf$$.file conf$$ 2>/dev/null; then
3604    as_ln_s='ln -s'
3605    # ... but there are two gotchas:
3606    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
3607    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
3608    # In both cases, we have to default to `cp -pR'.
3609    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
3610      as_ln_s='cp -pR'
3611  elif ln conf$$.file conf$$ 2>/dev/null; then
3612    as_ln_s=ln
3613  else
3614    as_ln_s='cp -pR'
3615  fi
3616else
3617  as_ln_s='cp -pR'
3618fi
3619rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
3620rmdir conf$$.dir 2>/dev/null
3621
3622
3623# as_fn_mkdir_p
3624# -------------
3625# Create "$as_dir" as a directory, including parents if necessary.
3626as_fn_mkdir_p ()
3627{
3628
3629  case $as_dir in #(
3630  -*) as_dir=./$as_dir;;
3631  esac
3632  test -d "$as_dir" || eval $as_mkdir_p || {
3633    as_dirs=
3634    while :; do
3635      case $as_dir in #(
3636      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
3637      *) as_qdir=$as_dir;;
3638      esac
3639      as_dirs="'$as_qdir' $as_dirs"
3640      as_dir=`$as_dirname -- "$as_dir" ||
3641$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
3642	 X"$as_dir" : 'X\(//\)[^/]' \| \
3643	 X"$as_dir" : 'X\(//\)$' \| \
3644	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
3645$as_echo X"$as_dir" |
3646    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
3647	    s//\1/
3648	    q
3649	  }
3650	  /^X\(\/\/\)[^/].*/{
3651	    s//\1/
3652	    q
3653	  }
3654	  /^X\(\/\/\)$/{
3655	    s//\1/
3656	    q
3657	  }
3658	  /^X\(\/\).*/{
3659	    s//\1/
3660	    q
3661	  }
3662	  s/.*/./; q'`
3663      test -d "$as_dir" && break
3664    done
3665    test -z "$as_dirs" || eval "mkdir $as_dirs"
3666  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
3667
3668
3669} # as_fn_mkdir_p
3670if mkdir -p . 2>/dev/null; then
3671  as_mkdir_p='mkdir -p "$as_dir"'
3672else
3673  test -d ./-p && rmdir ./-p
3674  as_mkdir_p=false
3675fi
3676
3677
3678# as_fn_executable_p FILE
3679# -----------------------
3680# Test if FILE is an executable regular file.
3681as_fn_executable_p ()
3682{
3683  test -f "$1" && test -x "$1"
3684} # as_fn_executable_p
3685as_test_x='test -x'
3686as_executable_p=as_fn_executable_p
3687
3688# Sed expression to map a string onto a valid CPP name.
3689as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
3690
3691# Sed expression to map a string onto a valid variable name.
3692as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
3693
3694
3695exec 6>&1
3696## ----------------------------------- ##
3697## Main body of $CONFIG_STATUS script. ##
3698## ----------------------------------- ##
3699_ASEOF
3700test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
3701
3702cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3703# Save the log message, to keep $0 and so on meaningful, and to
3704# report actual input values of CONFIG_FILES etc. instead of their
3705# values after options handling.
3706ac_log="
3707This file was extended by $as_me, which was
3708generated by GNU Autoconf 2.69.  Invocation command line was
3709
3710  CONFIG_FILES    = $CONFIG_FILES
3711  CONFIG_HEADERS  = $CONFIG_HEADERS
3712  CONFIG_LINKS    = $CONFIG_LINKS
3713  CONFIG_COMMANDS = $CONFIG_COMMANDS
3714  $ $0 $@
3715
3716on `(hostname || uname -n) 2>/dev/null | sed 1q`
3717"
3718
3719_ACEOF
3720
3721case $ac_config_files in *"
3722"*) set x $ac_config_files; shift; ac_config_files=$*;;
3723esac
3724
3725case $ac_config_headers in *"
3726"*) set x $ac_config_headers; shift; ac_config_headers=$*;;
3727esac
3728
3729
3730cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3731# Files that config.status was made for.
3732config_files="$ac_config_files"
3733config_headers="$ac_config_headers"
3734
3735_ACEOF
3736
3737cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3738ac_cs_usage="\
3739\`$as_me' instantiates files and other configuration actions
3740from templates according to the current configuration.  Unless the files
3741and actions are specified as TAGs, all are instantiated by default.
3742
3743Usage: $0 [OPTION]... [TAG]...
3744
3745  -h, --help       print this help, then exit
3746  -V, --version    print version number and configuration settings, then exit
3747      --config     print configuration, then exit
3748  -q, --quiet, --silent
3749                   do not print progress messages
3750  -d, --debug      don't remove temporary files
3751      --recheck    update $as_me by reconfiguring in the same conditions
3752      --file=FILE[:TEMPLATE]
3753                   instantiate the configuration file FILE
3754      --header=FILE[:TEMPLATE]
3755                   instantiate the configuration header FILE
3756
3757Configuration files:
3758$config_files
3759
3760Configuration headers:
3761$config_headers
3762
3763Report bugs to the package provider."
3764
3765_ACEOF
3766cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3767ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
3768ac_cs_version="\\
3769config.status
3770configured by $0, generated by GNU Autoconf 2.69,
3771  with options \\"\$ac_cs_config\\"
3772
3773Copyright (C) 2012 Free Software Foundation, Inc.
3774This config.status script is free software; the Free Software Foundation
3775gives unlimited permission to copy, distribute and modify it."
3776
3777ac_pwd='$ac_pwd'
3778srcdir='$srcdir'
3779test -n "\$AWK" || AWK=awk
3780_ACEOF
3781
3782cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3783# The default lists apply if the user does not specify any file.
3784ac_need_defaults=:
3785while test $# != 0
3786do
3787  case $1 in
3788  --*=?*)
3789    ac_option=`expr "X$1" : 'X\([^=]*\)='`
3790    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
3791    ac_shift=:
3792    ;;
3793  --*=)
3794    ac_option=`expr "X$1" : 'X\([^=]*\)='`
3795    ac_optarg=
3796    ac_shift=:
3797    ;;
3798  *)
3799    ac_option=$1
3800    ac_optarg=$2
3801    ac_shift=shift
3802    ;;
3803  esac
3804
3805  case $ac_option in
3806  # Handling of the options.
3807  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
3808    ac_cs_recheck=: ;;
3809  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
3810    $as_echo "$ac_cs_version"; exit ;;
3811  --config | --confi | --conf | --con | --co | --c )
3812    $as_echo "$ac_cs_config"; exit ;;
3813  --debug | --debu | --deb | --de | --d | -d )
3814    debug=: ;;
3815  --file | --fil | --fi | --f )
3816    $ac_shift
3817    case $ac_optarg in
3818    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
3819    '') as_fn_error $? "missing file argument" ;;
3820    esac
3821    as_fn_append CONFIG_FILES " '$ac_optarg'"
3822    ac_need_defaults=false;;
3823  --header | --heade | --head | --hea )
3824    $ac_shift
3825    case $ac_optarg in
3826    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
3827    esac
3828    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
3829    ac_need_defaults=false;;
3830  --he | --h)
3831    # Conflict between --help and --header
3832    as_fn_error $? "ambiguous option: \`$1'
3833Try \`$0 --help' for more information.";;
3834  --help | --hel | -h )
3835    $as_echo "$ac_cs_usage"; exit ;;
3836  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
3837  | -silent | --silent | --silen | --sile | --sil | --si | --s)
3838    ac_cs_silent=: ;;
3839
3840  # This is an error.
3841  -*) as_fn_error $? "unrecognized option: \`$1'
3842Try \`$0 --help' for more information." ;;
3843
3844  *) as_fn_append ac_config_targets " $1"
3845     ac_need_defaults=false ;;
3846
3847  esac
3848  shift
3849done
3850
3851ac_configure_extra_args=
3852
3853if $ac_cs_silent; then
3854  exec 6>/dev/null
3855  ac_configure_extra_args="$ac_configure_extra_args --silent"
3856fi
3857
3858_ACEOF
3859cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3860if \$ac_cs_recheck; then
3861  set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
3862  shift
3863  \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
3864  CONFIG_SHELL='$SHELL'
3865  export CONFIG_SHELL
3866  exec "\$@"
3867fi
3868
3869_ACEOF
3870cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3871exec 5>>config.log
3872{
3873  echo
3874  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
3875## Running $as_me. ##
3876_ASBOX
3877  $as_echo "$ac_log"
3878} >&5
3879
3880_ACEOF
3881cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3882_ACEOF
3883
3884cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
3885
3886# Handling of arguments.
3887for ac_config_target in $ac_config_targets
3888do
3889  case $ac_config_target in
3890    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
3891    "all.mk") CONFIG_FILES="$CONFIG_FILES all.mk" ;;
3892
3893  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
3894  esac
3895done
3896
3897
3898# If the user did not use the arguments to specify the items to instantiate,
3899# then the envvar interface is used.  Set only those that are not.
3900# We use the long form for the default assignment because of an extremely
3901# bizarre bug on SunOS 4.1.3.
3902if $ac_need_defaults; then
3903  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
3904  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
3905fi
3906
3907# Have a temporary directory for convenience.  Make it in the build tree
3908# simply because there is no reason against having it here, and in addition,
3909# creating and moving files from /tmp can sometimes cause problems.
3910# Hook for its removal unless debugging.
3911# Note that there is a small window in which the directory will not be cleaned:
3912# after its creation but before its name has been assigned to `$tmp'.
3913$debug ||
3914{
3915  tmp= ac_tmp=
3916  trap 'exit_status=$?
3917  : "${ac_tmp:=$tmp}"
3918  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
3919' 0
3920  trap 'as_fn_exit 1' 1 2 13 15
3921}
3922# Create a (secure) tmp directory for tmp files.
3923
3924{
3925  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
3926  test -d "$tmp"
3927}  ||
3928{
3929  tmp=./conf$$-$RANDOM
3930  (umask 077 && mkdir "$tmp")
3931} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
3932ac_tmp=$tmp
3933
3934# Set up the scripts for CONFIG_FILES section.
3935# No need to generate them if there are no CONFIG_FILES.
3936# This happens for instance with `./config.status config.h'.
3937if test -n "$CONFIG_FILES"; then
3938
3939
3940ac_cr=`echo X | tr X '\015'`
3941# On cygwin, bash can eat \r inside `` if the user requested igncr.
3942# But we know of no other shell where ac_cr would be empty at this
3943# point, so we can use a bashism as a fallback.
3944if test "x$ac_cr" = x; then
3945  eval ac_cr=\$\'\\r\'
3946fi
3947ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
3948if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
3949  ac_cs_awk_cr='\\r'
3950else
3951  ac_cs_awk_cr=$ac_cr
3952fi
3953
3954echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
3955_ACEOF
3956
3957
3958{
3959  echo "cat >conf$$subs.awk <<_ACEOF" &&
3960  echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
3961  echo "_ACEOF"
3962} >conf$$subs.sh ||
3963  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3964ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
3965ac_delim='%!_!# '
3966for ac_last_try in false false false false false :; do
3967  . ./conf$$subs.sh ||
3968    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3969
3970  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
3971  if test $ac_delim_n = $ac_delim_num; then
3972    break
3973  elif $ac_last_try; then
3974    as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
3975  else
3976    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
3977  fi
3978done
3979rm -f conf$$subs.sh
3980
3981cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
3982cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
3983_ACEOF
3984sed -n '
3985h
3986s/^/S["/; s/!.*/"]=/
3987p
3988g
3989s/^[^!]*!//
3990:repl
3991t repl
3992s/'"$ac_delim"'$//
3993t delim
3994:nl
3995h
3996s/\(.\{148\}\)..*/\1/
3997t more1
3998s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
3999p
4000n
4001b repl
4002:more1
4003s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4004p
4005g
4006s/.\{148\}//
4007t nl
4008:delim
4009h
4010s/\(.\{148\}\)..*/\1/
4011t more2
4012s/["\\]/\\&/g; s/^/"/; s/$/"/
4013p
4014b
4015:more2
4016s/["\\]/\\&/g; s/^/"/; s/$/"\\/
4017p
4018g
4019s/.\{148\}//
4020t delim
4021' <conf$$subs.awk | sed '
4022/^[^""]/{
4023  N
4024  s/\n//
4025}
4026' >>$CONFIG_STATUS || ac_write_fail=1
4027rm -f conf$$subs.awk
4028cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4029_ACAWK
4030cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
4031  for (key in S) S_is_set[key] = 1
4032  FS = ""
4033
4034}
4035{
4036  line = $ 0
4037  nfields = split(line, field, "@")
4038  substed = 0
4039  len = length(field[1])
4040  for (i = 2; i < nfields; i++) {
4041    key = field[i]
4042    keylen = length(key)
4043    if (S_is_set[key]) {
4044      value = S[key]
4045      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
4046      len += length(value) + length(field[++i])
4047      substed = 1
4048    } else
4049      len += 1 + keylen
4050  }
4051
4052  print line
4053}
4054
4055_ACAWK
4056_ACEOF
4057cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4058if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
4059  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
4060else
4061  cat
4062fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
4063  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
4064_ACEOF
4065
4066# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
4067# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
4068# trailing colons and then remove the whole line if VPATH becomes empty
4069# (actually we leave an empty line to preserve line numbers).
4070if test "x$srcdir" = x.; then
4071  ac_vpsub='/^[	 ]*VPATH[	 ]*=[	 ]*/{
4072h
4073s///
4074s/^/:/
4075s/[	 ]*$/:/
4076s/:\$(srcdir):/:/g
4077s/:\${srcdir}:/:/g
4078s/:@srcdir@:/:/g
4079s/^:*//
4080s/:*$//
4081x
4082s/\(=[	 ]*\).*/\1/
4083G
4084s/\n//
4085s/^[^=]*=[	 ]*$//
4086}'
4087fi
4088
4089cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4090fi # test -n "$CONFIG_FILES"
4091
4092# Set up the scripts for CONFIG_HEADERS section.
4093# No need to generate them if there are no CONFIG_HEADERS.
4094# This happens for instance with `./config.status Makefile'.
4095if test -n "$CONFIG_HEADERS"; then
4096cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
4097BEGIN {
4098_ACEOF
4099
4100# Transform confdefs.h into an awk script `defines.awk', embedded as
4101# here-document in config.status, that substitutes the proper values into
4102# config.h.in to produce config.h.
4103
4104# Create a delimiter string that does not exist in confdefs.h, to ease
4105# handling of long lines.
4106ac_delim='%!_!# '
4107for ac_last_try in false false :; do
4108  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
4109  if test -z "$ac_tt"; then
4110    break
4111  elif $ac_last_try; then
4112    as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
4113  else
4114    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
4115  fi
4116done
4117
4118# For the awk script, D is an array of macro values keyed by name,
4119# likewise P contains macro parameters if any.  Preserve backslash
4120# newline sequences.
4121
4122ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
4123sed -n '
4124s/.\{148\}/&'"$ac_delim"'/g
4125t rset
4126:rset
4127s/^[	 ]*#[	 ]*define[	 ][	 ]*/ /
4128t def
4129d
4130:def
4131s/\\$//
4132t bsnl
4133s/["\\]/\\&/g
4134s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
4135D["\1"]=" \3"/p
4136s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2"/p
4137d
4138:bsnl
4139s/["\\]/\\&/g
4140s/^ \('"$ac_word_re"'\)\(([^()]*)\)[	 ]*\(.*\)/P["\1"]="\2"\
4141D["\1"]=" \3\\\\\\n"\\/p
4142t cont
4143s/^ \('"$ac_word_re"'\)[	 ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p
4144t cont
4145d
4146:cont
4147n
4148s/.\{148\}/&'"$ac_delim"'/g
4149t clear
4150:clear
4151s/\\$//
4152t bsnlc
4153s/["\\]/\\&/g; s/^/"/; s/$/"/p
4154d
4155:bsnlc
4156s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p
4157b cont
4158' <confdefs.h | sed '
4159s/'"$ac_delim"'/"\\\
4160"/g' >>$CONFIG_STATUS || ac_write_fail=1
4161
4162cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4163  for (key in D) D_is_set[key] = 1
4164  FS = ""
4165}
4166/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ {
4167  line = \$ 0
4168  split(line, arg, " ")
4169  if (arg[1] == "#") {
4170    defundef = arg[2]
4171    mac1 = arg[3]
4172  } else {
4173    defundef = substr(arg[1], 2)
4174    mac1 = arg[2]
4175  }
4176  split(mac1, mac2, "(") #)
4177  macro = mac2[1]
4178  prefix = substr(line, 1, index(line, defundef) - 1)
4179  if (D_is_set[macro]) {
4180    # Preserve the white space surrounding the "#".
4181    print prefix "define", macro P[macro] D[macro]
4182    next
4183  } else {
4184    # Replace #undef with comments.  This is necessary, for example,
4185    # in the case of _POSIX_SOURCE, which is predefined and required
4186    # on some systems where configure will not decide to define it.
4187    if (defundef == "undef") {
4188      print "/*", prefix defundef, macro, "*/"
4189      next
4190    }
4191  }
4192}
4193{ print }
4194_ACAWK
4195_ACEOF
4196cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4197  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
4198fi # test -n "$CONFIG_HEADERS"
4199
4200
4201eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    "
4202shift
4203for ac_tag
4204do
4205  case $ac_tag in
4206  :[FHLC]) ac_mode=$ac_tag; continue;;
4207  esac
4208  case $ac_mode$ac_tag in
4209  :[FHL]*:*);;
4210  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
4211  :[FH]-) ac_tag=-:-;;
4212  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
4213  esac
4214  ac_save_IFS=$IFS
4215  IFS=:
4216  set x $ac_tag
4217  IFS=$ac_save_IFS
4218  shift
4219  ac_file=$1
4220  shift
4221
4222  case $ac_mode in
4223  :L) ac_source=$1;;
4224  :[FH])
4225    ac_file_inputs=
4226    for ac_f
4227    do
4228      case $ac_f in
4229      -) ac_f="$ac_tmp/stdin";;
4230      *) # Look for the file first in the build tree, then in the source tree
4231	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
4232	 # because $ac_f cannot contain `:'.
4233	 test -f "$ac_f" ||
4234	   case $ac_f in
4235	   [\\/$]*) false;;
4236	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
4237	   esac ||
4238	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
4239      esac
4240      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
4241      as_fn_append ac_file_inputs " '$ac_f'"
4242    done
4243
4244    # Let's still pretend it is `configure' which instantiates (i.e., don't
4245    # use $as_me), people would be surprised to read:
4246    #    /* config.h.  Generated by config.status.  */
4247    configure_input='Generated from '`
4248	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
4249	`' by configure.'
4250    if test x"$ac_file" != x-; then
4251      configure_input="$ac_file.  $configure_input"
4252      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
4253$as_echo "$as_me: creating $ac_file" >&6;}
4254    fi
4255    # Neutralize special characters interpreted by sed in replacement strings.
4256    case $configure_input in #(
4257    *\&* | *\|* | *\\* )
4258       ac_sed_conf_input=`$as_echo "$configure_input" |
4259       sed 's/[\\\\&|]/\\\\&/g'`;; #(
4260    *) ac_sed_conf_input=$configure_input;;
4261    esac
4262
4263    case $ac_tag in
4264    *:-:* | *:-) cat >"$ac_tmp/stdin" \
4265      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
4266    esac
4267    ;;
4268  esac
4269
4270  ac_dir=`$as_dirname -- "$ac_file" ||
4271$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
4272	 X"$ac_file" : 'X\(//\)[^/]' \| \
4273	 X"$ac_file" : 'X\(//\)$' \| \
4274	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
4275$as_echo X"$ac_file" |
4276    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
4277	    s//\1/
4278	    q
4279	  }
4280	  /^X\(\/\/\)[^/].*/{
4281	    s//\1/
4282	    q
4283	  }
4284	  /^X\(\/\/\)$/{
4285	    s//\1/
4286	    q
4287	  }
4288	  /^X\(\/\).*/{
4289	    s//\1/
4290	    q
4291	  }
4292	  s/.*/./; q'`
4293  as_dir="$ac_dir"; as_fn_mkdir_p
4294  ac_builddir=.
4295
4296case "$ac_dir" in
4297.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
4298*)
4299  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
4300  # A ".." for each directory in $ac_dir_suffix.
4301  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
4302  case $ac_top_builddir_sub in
4303  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
4304  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
4305  esac ;;
4306esac
4307ac_abs_top_builddir=$ac_pwd
4308ac_abs_builddir=$ac_pwd$ac_dir_suffix
4309# for backward compatibility:
4310ac_top_builddir=$ac_top_build_prefix
4311
4312case $srcdir in
4313  .)  # We are building in place.
4314    ac_srcdir=.
4315    ac_top_srcdir=$ac_top_builddir_sub
4316    ac_abs_top_srcdir=$ac_pwd ;;
4317  [\\/]* | ?:[\\/]* )  # Absolute name.
4318    ac_srcdir=$srcdir$ac_dir_suffix;
4319    ac_top_srcdir=$srcdir
4320    ac_abs_top_srcdir=$srcdir ;;
4321  *) # Relative name.
4322    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
4323    ac_top_srcdir=$ac_top_build_prefix$srcdir
4324    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
4325esac
4326ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
4327
4328
4329  case $ac_mode in
4330  :F)
4331  #
4332  # CONFIG_FILE
4333  #
4334
4335_ACEOF
4336
4337cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4338# If the template does not know about datarootdir, expand it.
4339# FIXME: This hack should be removed a few years after 2.60.
4340ac_datarootdir_hack=; ac_datarootdir_seen=
4341ac_sed_dataroot='
4342/datarootdir/ {
4343  p
4344  q
4345}
4346/@datadir@/p
4347/@docdir@/p
4348/@infodir@/p
4349/@localedir@/p
4350/@mandir@/p'
4351case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
4352*datarootdir*) ac_datarootdir_seen=yes;;
4353*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
4354  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
4355$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
4356_ACEOF
4357cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4358  ac_datarootdir_hack='
4359  s&@datadir@&$datadir&g
4360  s&@docdir@&$docdir&g
4361  s&@infodir@&$infodir&g
4362  s&@localedir@&$localedir&g
4363  s&@mandir@&$mandir&g
4364  s&\\\${datarootdir}&$datarootdir&g' ;;
4365esac
4366_ACEOF
4367
4368# Neutralize VPATH when `$srcdir' = `.'.
4369# Shell code in configure.ac might set extrasub.
4370# FIXME: do we really want to maintain this feature?
4371cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
4372ac_sed_extra="$ac_vpsub
4373$extrasub
4374_ACEOF
4375cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
4376:t
4377/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
4378s|@configure_input@|$ac_sed_conf_input|;t t
4379s&@top_builddir@&$ac_top_builddir_sub&;t t
4380s&@top_build_prefix@&$ac_top_build_prefix&;t t
4381s&@srcdir@&$ac_srcdir&;t t
4382s&@abs_srcdir@&$ac_abs_srcdir&;t t
4383s&@top_srcdir@&$ac_top_srcdir&;t t
4384s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
4385s&@builddir@&$ac_builddir&;t t
4386s&@abs_builddir@&$ac_abs_builddir&;t t
4387s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
4388$ac_datarootdir_hack
4389"
4390eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
4391  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
4392
4393test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
4394  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
4395  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
4396      "$ac_tmp/out"`; test -z "$ac_out"; } &&
4397  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4398which seems to be undefined.  Please make sure it is defined" >&5
4399$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
4400which seems to be undefined.  Please make sure it is defined" >&2;}
4401
4402  rm -f "$ac_tmp/stdin"
4403  case $ac_file in
4404  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
4405  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
4406  esac \
4407  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
4408 ;;
4409  :H)
4410  #
4411  # CONFIG_HEADER
4412  #
4413  if test x"$ac_file" != x-; then
4414    {
4415      $as_echo "/* $configure_input  */" \
4416      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
4417    } >"$ac_tmp/config.h" \
4418      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
4419    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
4420      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
4421$as_echo "$as_me: $ac_file is unchanged" >&6;}
4422    else
4423      rm -f "$ac_file"
4424      mv "$ac_tmp/config.h" "$ac_file" \
4425	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
4426    fi
4427  else
4428    $as_echo "/* $configure_input  */" \
4429      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
4430      || as_fn_error $? "could not create -" "$LINENO" 5
4431  fi
4432 ;;
4433
4434
4435  esac
4436
4437done # for ac_tag
4438
4439
4440as_fn_exit 0
4441_ACEOF
4442ac_clean_files=$ac_clean_files_save
4443
4444test $ac_write_fail = 0 ||
4445  as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
4446
4447
4448# configure is writing to config.log, and then calls config.status.
4449# config.status does its own redirection, appending to config.log.
4450# Unfortunately, on DOS this fails, as config.log is still kept open
4451# by configure, so config.status won't be able to write to it; its
4452# output is simply discarded.  So we exec the FD to /dev/null,
4453# effectively closing config.log, so it can be properly (re)opened and
4454# appended to by config.status.  When coming back to configure, we
4455# need to make the FD available again.
4456if test "$no_create" != yes; then
4457  ac_cs_success=:
4458  ac_config_status_args=
4459  test "$silent" = yes &&
4460    ac_config_status_args="$ac_config_status_args --quiet"
4461  exec 5>/dev/null
4462  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
4463  exec 5>>config.log
4464  # Use ||, not &&, to avoid exiting from the if with $? = 1, which
4465  # would make configure fail if this is the last instruction.
4466  $ac_cs_success || as_fn_exit 1
4467fi
4468if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
4469  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
4470$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
4471fi
4472
4473
4474