~ubuntu-branches/ubuntu/utopic/dbacl/utopic

« back to all changes in this revision

Viewing changes to debian/patches/20_autotools_update.patch

  • Committer: Bazaar Package Importer
  • Author(s): Zak B. Elep
  • Date: 2008-12-11 23:53:55 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20081211235355-v0f4ijmp7skkd22y
* Acknowledge NMU by bddebian@, thanks
* debian/control:
  + Update maintainer email
  + Update Standards-Version
  + Add ${misc:Depends}
  + Remove flex from Build-Depends
* debian/patches:
  + Fix bashism, patch courtesy of Chris Lamb <chris@chris-lamb.co.uk>
    (Closes: #489560)
  + Rebuild autotools (but don't include autom4te.cache)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Rebuild autotools via `autoreconf --install'
 
2
# Patch by Zak B. Elep <zakame@zakame.net>
 
3
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/config/missing dbacl-1.12.new/config/missing
 
4
--- dbacl-1.12/config/missing   2006-03-26 08:26:06.000000000 +0800
 
5
+++ dbacl-1.12.new/config/missing       2008-12-11 23:52:17.000000000 +0800
 
6
@@ -1,7 +1,11 @@
 
7
 #! /bin/sh
 
8
 # Common stub for a few missing GNU programs while installing.
 
9
-# Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc.
 
10
-# Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996.
 
11
+
 
12
+scriptversion=2005-06-08.21
 
13
+
 
14
+# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005
 
15
+#   Free Software Foundation, Inc.
 
16
+# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
 
17
 
 
18
 # This program is free software; you can redistribute it and/or modify
 
19
 # it under the terms of the GNU General Public License as published by
 
20
@@ -15,23 +19,47 @@
 
21
 
 
22
 # You should have received a copy of the GNU General Public License
 
23
 # along with this program; if not, write to the Free Software
 
24
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
25
-# 02111-1307, USA.
 
26
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
27
+# 02110-1301, USA.
 
28
+
 
29
+# As a special exception to the GNU General Public License, if you
 
30
+# distribute this file as part of a program that contains a
 
31
+# configuration script generated by Autoconf, you may include it under
 
32
+# the same distribution terms that you use for the rest of that program.
 
33
 
 
34
 if test $# -eq 0; then
 
35
   echo 1>&2 "Try \`$0 --help' for more information"
 
36
   exit 1
 
37
 fi
 
38
 
 
39
+run=:
 
40
+
 
41
 # In the cases where this matters, `missing' is being run in the
 
42
 # srcdir already.
 
43
-if test -f configure.in; then
 
44
+if test -f configure.ac; then
 
45
   configure_ac=configure.ac
 
46
 else
 
47
   configure_ac=configure.in
 
48
 fi
 
49
 
 
50
+msg="missing on your system"
 
51
+
 
52
 case "$1" in
 
53
+--run)
 
54
+  # Try to run requested program, and just exit if it succeeds.
 
55
+  run=
 
56
+  shift
 
57
+  "$@" && exit 0
 
58
+  # Exit code 63 means version mismatch.  This often happens
 
59
+  # when the user try to use an ancient version of a tool on
 
60
+  # a file that requires a minimum version.  In this case we
 
61
+  # we should proceed has if the program had been absent, or
 
62
+  # if --run hadn't been passed.
 
63
+  if test $? = 63; then
 
64
+    run=:
 
65
+    msg="probably too old"
 
66
+  fi
 
67
+  ;;
 
68
 
 
69
   -h|--h|--he|--hel|--help)
 
70
     echo "\
 
71
@@ -43,6 +71,7 @@
 
72
 Options:
 
73
   -h, --help      display this help and exit
 
74
   -v, --version   output version information and exit
 
75
+  --run           try to run the given command, and emulate it if it fails
 
76
 
 
77
 Supported PROGRAM values:
 
78
   aclocal      touch file \`aclocal.m4'
 
79
@@ -51,13 +80,19 @@
 
80
   automake     touch all \`Makefile.in' files
 
81
   bison        create \`y.tab.[ch]', if possible, from existing .[ch]
 
82
   flex         create \`lex.yy.c', if possible, from existing .c
 
83
+  help2man     touch the output file
 
84
   lex          create \`lex.yy.c', if possible, from existing .c
 
85
   makeinfo     touch the output file
 
86
-  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]"
 
87
+  tar          try tar, gnutar, gtar, then tar without non-portable flags
 
88
+  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
 
89
+
 
90
+Send bug reports to <bug-automake@gnu.org>."
 
91
+    exit $?
 
92
     ;;
 
93
 
 
94
   -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
 
95
-    echo "missing - GNU libit 0.0"
 
96
+    echo "missing $scriptversion (GNU Automake)"
 
97
+    exit $?
 
98
     ;;
 
99
 
 
100
   -*)
 
101
@@ -66,10 +101,45 @@
 
102
     exit 1
 
103
     ;;
 
104
 
 
105
+esac
 
106
+
 
107
+# Now exit if we have it, but it failed.  Also exit now if we
 
108
+# don't have it and --version was passed (most likely to detect
 
109
+# the program).
 
110
+case "$1" in
 
111
+  lex|yacc)
 
112
+    # Not GNU programs, they don't have --version.
 
113
+    ;;
 
114
+
 
115
+  tar)
 
116
+    if test -n "$run"; then
 
117
+       echo 1>&2 "ERROR: \`tar' requires --run"
 
118
+       exit 1
 
119
+    elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
 
120
+       exit 1
 
121
+    fi
 
122
+    ;;
 
123
+
 
124
+  *)
 
125
+    if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
 
126
+       # We have it, but it failed.
 
127
+       exit 1
 
128
+    elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
 
129
+       # Could not run --version or --help.  This is probably someone
 
130
+       # running `$TOOL --version' or `$TOOL --help' to check whether
 
131
+       # $TOOL exists and not knowing $TOOL uses missing.
 
132
+       exit 1
 
133
+    fi
 
134
+    ;;
 
135
+esac
 
136
+
 
137
+# If it does not exist, or fails to run (possibly an outdated version),
 
138
+# try to emulate it.
 
139
+case "$1" in
 
140
   aclocal*)
 
141
     echo 1>&2 "\
 
142
-WARNING: \`$1' is missing on your system.  You should only need it if
 
143
-         you modified \`acinclude.m4' or \`$configure_ac'.  You might want
 
144
+WARNING: \`$1' is $msg.  You should only need it if
 
145
+         you modified \`acinclude.m4' or \`${configure_ac}'.  You might want
 
146
          to install the \`Automake' and \`Perl' packages.  Grab them from
 
147
          any GNU archive site."
 
148
     touch aclocal.m4
 
149
@@ -77,8 +147,8 @@
 
150
 
 
151
   autoconf)
 
152
     echo 1>&2 "\
 
153
-WARNING: \`$1' is missing on your system.  You should only need it if
 
154
-         you modified \`$configure_ac'.  You might want to install the
 
155
+WARNING: \`$1' is $msg.  You should only need it if
 
156
+         you modified \`${configure_ac}'.  You might want to install the
 
157
          \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU
 
158
          archive site."
 
159
     touch configure
 
160
@@ -86,11 +156,11 @@
 
161
 
 
162
   autoheader)
 
163
     echo 1>&2 "\
 
164
-WARNING: \`$1' is missing on your system.  You should only need it if
 
165
-         you modified \`acconfig.h' or \`$configure_ac'.  You might want
 
166
+WARNING: \`$1' is $msg.  You should only need it if
 
167
+         you modified \`acconfig.h' or \`${configure_ac}'.  You might want
 
168
          to install the \`Autoconf' and \`GNU m4' packages.  Grab them
 
169
          from any GNU archive site."
 
170
-    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' $configure_ac`
 
171
+    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
 
172
     test -z "$files" && files="config.h"
 
173
     touch_files=
 
174
     for f in $files; do
 
175
@@ -105,8 +175,8 @@
 
176
 
 
177
   automake*)
 
178
     echo 1>&2 "\
 
179
-WARNING: \`$1' is missing on your system.  You should only need it if
 
180
-         you modified \`Makefile.am', \`acinclude.m4' or \`$configure_ac'.
 
181
+WARNING: \`$1' is $msg.  You should only need it if
 
182
+         you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
 
183
          You might want to install the \`Automake' and \`Perl' packages.
 
184
          Grab them from any GNU archive site."
 
185
     find . -type f -name Makefile.am -print |
 
186
@@ -114,9 +184,32 @@
 
187
           while read f; do touch "$f"; done
 
188
     ;;
 
189
 
 
190
+  autom4te)
 
191
+    echo 1>&2 "\
 
192
+WARNING: \`$1' is needed, but is $msg.
 
193
+         You might have modified some files without having the
 
194
+         proper tools for further handling them.
 
195
+         You can get \`$1' as part of \`Autoconf' from any GNU
 
196
+         archive site."
 
197
+
 
198
+    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
 
199
+    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
 
200
+    if test -f "$file"; then
 
201
+       touch $file
 
202
+    else
 
203
+       test -z "$file" || exec >$file
 
204
+       echo "#! /bin/sh"
 
205
+       echo "# Created by GNU Automake missing as a replacement of"
 
206
+       echo "#  $ $@"
 
207
+       echo "exit 0"
 
208
+       chmod +x $file
 
209
+       exit 1
 
210
+    fi
 
211
+    ;;
 
212
+
 
213
   bison|yacc)
 
214
     echo 1>&2 "\
 
215
-WARNING: \`$1' is missing on your system.  You should only need it if
 
216
+WARNING: \`$1' $msg.  You should only need it if
 
217
          you modified a \`.y' file.  You may need the \`Bison' package
 
218
          in order for those modifications to take effect.  You can get
 
219
          \`Bison' from any GNU archive site."
 
220
@@ -146,7 +239,7 @@
 
221
 
 
222
   lex|flex)
 
223
     echo 1>&2 "\
 
224
-WARNING: \`$1' is missing on your system.  You should only need it if
 
225
+WARNING: \`$1' is $msg.  You should only need it if
 
226
          you modified a \`.l' file.  You may need the \`Flex' package
 
227
          in order for those modifications to take effect.  You can get
 
228
          \`Flex' from any GNU archive site."
 
229
@@ -167,28 +260,90 @@
 
230
     fi
 
231
     ;;
 
232
 
 
233
+  help2man)
 
234
+    echo 1>&2 "\
 
235
+WARNING: \`$1' is $msg.  You should only need it if
 
236
+        you modified a dependency of a manual page.  You may need the
 
237
+        \`Help2man' package in order for those modifications to take
 
238
+        effect.  You can get \`Help2man' from any GNU archive site."
 
239
+
 
240
+    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
 
241
+    if test -z "$file"; then
 
242
+       file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
 
243
+    fi
 
244
+    if [ -f "$file" ]; then
 
245
+       touch $file
 
246
+    else
 
247
+       test -z "$file" || exec >$file
 
248
+       echo ".ab help2man is required to generate this page"
 
249
+       exit 1
 
250
+    fi
 
251
+    ;;
 
252
+
 
253
   makeinfo)
 
254
     echo 1>&2 "\
 
255
-WARNING: \`$1' is missing on your system.  You should only need it if
 
256
+WARNING: \`$1' is $msg.  You should only need it if
 
257
          you modified a \`.texi' or \`.texinfo' file, or any other file
 
258
          indirectly affecting the aspect of the manual.  The spurious
 
259
          call might also be the consequence of using a buggy \`make' (AIX,
 
260
          DU, IRIX).  You might want to install the \`Texinfo' package or
 
261
          the \`GNU make' package.  Grab either from any GNU archive site."
 
262
+    # The file to touch is that specified with -o ...
 
263
     file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
 
264
     if test -z "$file"; then
 
265
-      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
 
266
-      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
 
267
+      # ... or it is the one specified with @setfilename ...
 
268
+      infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
 
269
+      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
 
270
+      # ... or it is derived from the source name (dir/f.texi becomes f.info)
 
271
+      test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
 
272
     fi
 
273
+    # If the file does not exist, the user really needs makeinfo;
 
274
+    # let's fail without touching anything.
 
275
+    test -f $file || exit 1
 
276
     touch $file
 
277
     ;;
 
278
 
 
279
+  tar)
 
280
+    shift
 
281
+
 
282
+    # We have already tried tar in the generic part.
 
283
+    # Look for gnutar/gtar before invocation to avoid ugly error
 
284
+    # messages.
 
285
+    if (gnutar --version > /dev/null 2>&1); then
 
286
+       gnutar "$@" && exit 0
 
287
+    fi
 
288
+    if (gtar --version > /dev/null 2>&1); then
 
289
+       gtar "$@" && exit 0
 
290
+    fi
 
291
+    firstarg="$1"
 
292
+    if shift; then
 
293
+       case "$firstarg" in
 
294
+       *o*)
 
295
+           firstarg=`echo "$firstarg" | sed s/o//`
 
296
+           tar "$firstarg" "$@" && exit 0
 
297
+           ;;
 
298
+       esac
 
299
+       case "$firstarg" in
 
300
+       *h*)
 
301
+           firstarg=`echo "$firstarg" | sed s/h//`
 
302
+           tar "$firstarg" "$@" && exit 0
 
303
+           ;;
 
304
+       esac
 
305
+    fi
 
306
+
 
307
+    echo 1>&2 "\
 
308
+WARNING: I can't seem to be able to run \`tar' with the given arguments.
 
309
+         You may want to install GNU tar or Free paxutils, or check the
 
310
+         command line arguments."
 
311
+    exit 1
 
312
+    ;;
 
313
+
 
314
   *)
 
315
     echo 1>&2 "\
 
316
-WARNING: \`$1' is needed, and you do not seem to have it handy on your
 
317
-         system.  You might have modified some files without having the
 
318
+WARNING: \`$1' is needed, and is $msg.
 
319
+         You might have modified some files without having the
 
320
          proper tools for further handling them.  Check the \`README' file,
 
321
-         it often tells you about the needed prerequirements for installing
 
322
+         it often tells you about the needed prerequisites for installing
 
323
          this package.  You may also peek at any GNU archive site, in case
 
324
          some other package would contain this missing \`$1' program."
 
325
     exit 1
 
326
@@ -196,3 +351,10 @@
 
327
 esac
 
328
 
 
329
 exit 0
 
330
+
 
331
+# Local variables:
 
332
+# eval: (add-hook 'write-file-hooks 'time-stamp)
 
333
+# time-stamp-start: "scriptversion="
 
334
+# time-stamp-format: "%:y-%02m-%02d.%02H"
 
335
+# time-stamp-end: "$"
 
336
+# End:
 
337
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/configure dbacl-1.12.new/configure
 
338
--- dbacl-1.12/configure        2006-03-22 19:43:54.000000000 +0800
 
339
+++ dbacl-1.12.new/configure    2008-12-11 23:52:36.000000000 +0800
 
340
@@ -1,27 +1,56 @@
 
341
 #! /bin/sh
 
342
 # Guess values for system-dependent variables and create Makefiles.
 
343
-# Generated by GNU Autoconf 2.59 for dbacl 1.12.
 
344
+# Generated by GNU Autoconf 2.61 for dbacl 1.12.
 
345
 #
 
346
 # Report bugs to <laird@lbreyer.com>.
 
347
 #
 
348
-# Copyright (C) 2003 Free Software Foundation, Inc.
 
349
+# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
350
+# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
351
 # This configure script is free software; the Free Software Foundation
 
352
 # gives unlimited permission to copy, distribute and modify it.
 
353
 ## --------------------- ##
 
354
 ## M4sh Initialization.  ##
 
355
 ## --------------------- ##
 
356
 
 
357
-# Be Bourne compatible
 
358
+# Be more Bourne compatible
 
359
+DUALCASE=1; export DUALCASE # for MKS sh
 
360
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
361
   emulate sh
 
362
   NULLCMD=:
 
363
   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
364
   # is contrary to our usage.  Disable this feature.
 
365
   alias -g '${1+"$@"}'='"$@"'
 
366
-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 
367
-  set -o posix
 
368
+  setopt NO_GLOB_SUBST
 
369
+else
 
370
+  case `(set -o) 2>/dev/null` in
 
371
+  *posix*) set -o posix ;;
 
372
+esac
 
373
+
 
374
+fi
 
375
+
 
376
+
 
377
+
 
378
+
 
379
+# PATH needs CR
 
380
+# Avoid depending upon Character Ranges.
 
381
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
382
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
383
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
384
+as_cr_digits='0123456789'
 
385
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
386
+
 
387
+# The user is always right.
 
388
+if test "${PATH_SEPARATOR+set}" != set; then
 
389
+  echo "#! /bin/sh" >conf$$.sh
 
390
+  echo  "exit 0"   >>conf$$.sh
 
391
+  chmod +x conf$$.sh
 
392
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
393
+    PATH_SEPARATOR=';'
 
394
+  else
 
395
+    PATH_SEPARATOR=:
 
396
+  fi
 
397
+  rm -f conf$$.sh
 
398
 fi
 
399
-DUALCASE=1; export DUALCASE # for MKS sh
 
400
 
 
401
 # Support unset when possible.
 
402
 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
403
@@ -31,8 +60,43 @@
 
404
 fi
 
405
 
 
406
 
 
407
+# IFS
 
408
+# We need space, tab and new line, in precisely that order.  Quoting is
 
409
+# there to prevent editors from complaining about space-tab.
 
410
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
411
+# splitting by setting IFS to empty value.)
 
412
+as_nl='
 
413
+'
 
414
+IFS=" ""       $as_nl"
 
415
+
 
416
+# Find who we are.  Look in the path if we contain no directory separator.
 
417
+case $0 in
 
418
+  *[\\/]* ) as_myself=$0 ;;
 
419
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
420
+for as_dir in $PATH
 
421
+do
 
422
+  IFS=$as_save_IFS
 
423
+  test -z "$as_dir" && as_dir=.
 
424
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
425
+done
 
426
+IFS=$as_save_IFS
 
427
+
 
428
+     ;;
 
429
+esac
 
430
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
431
+# in which case we are not to be found in the path.
 
432
+if test "x$as_myself" = x; then
 
433
+  as_myself=$0
 
434
+fi
 
435
+if test ! -f "$as_myself"; then
 
436
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
437
+  { (exit 1); exit 1; }
 
438
+fi
 
439
+
 
440
 # Work around bugs in pre-3.0 UWIN ksh.
 
441
-$as_unset ENV MAIL MAILPATH
 
442
+for as_var in ENV MAIL MAILPATH
 
443
+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
444
+done
 
445
 PS1='$ '
 
446
 PS2='> '
 
447
 PS4='+ '
 
448
@@ -46,18 +110,19 @@
 
449
   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
450
     eval $as_var=C; export $as_var
 
451
   else
 
452
-    $as_unset $as_var
 
453
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
454
   fi
 
455
 done
 
456
 
 
457
 # Required to use basename.
 
458
-if expr a : '\(a\)' >/dev/null 2>&1; then
 
459
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
460
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
461
   as_expr=expr
 
462
 else
 
463
   as_expr=false
 
464
 fi
 
465
 
 
466
-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 
467
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
468
   as_basename=basename
 
469
 else
 
470
   as_basename=false
 
471
@@ -65,157 +130,388 @@
 
472
 
 
473
 
 
474
 # Name of the executable.
 
475
-as_me=`$as_basename "$0" ||
 
476
+as_me=`$as_basename -- "$0" ||
 
477
 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
478
         X"$0" : 'X\(//\)$' \| \
 
479
-        X"$0" : 'X\(/\)$' \| \
 
480
-        .     : '\(.\)' 2>/dev/null ||
 
481
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
482
 echo X/"$0" |
 
483
-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 
484
-         /^X\/\(\/\/\)$/{ s//\1/; q; }
 
485
-         /^X\/\(\/\).*/{ s//\1/; q; }
 
486
-         s/.*/./; q'`
 
487
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
488
+           s//\1/
 
489
+           q
 
490
+         }
 
491
+         /^X\/\(\/\/\)$/{
 
492
+           s//\1/
 
493
+           q
 
494
+         }
 
495
+         /^X\/\(\/\).*/{
 
496
+           s//\1/
 
497
+           q
 
498
+         }
 
499
+         s/.*/./; q'`
 
500
 
 
501
+# CDPATH.
 
502
+$as_unset CDPATH
 
503
 
 
504
-# PATH needs CR, and LINENO needs CR and PATH.
 
505
-# Avoid depending upon Character Ranges.
 
506
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
507
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
508
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
509
-as_cr_digits='0123456789'
 
510
-as_cr_alnum=$as_cr_Letters$as_cr_digits
 
511
 
 
512
-# The user is always right.
 
513
-if test "${PATH_SEPARATOR+set}" != set; then
 
514
-  echo "#! /bin/sh" >conf$$.sh
 
515
-  echo  "exit 0"   >>conf$$.sh
 
516
-  chmod +x conf$$.sh
 
517
-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
518
-    PATH_SEPARATOR=';'
 
519
-  else
 
520
-    PATH_SEPARATOR=:
 
521
-  fi
 
522
-  rm -f conf$$.sh
 
523
+if test "x$CONFIG_SHELL" = x; then
 
524
+  if (eval ":") 2>/dev/null; then
 
525
+  as_have_required=yes
 
526
+else
 
527
+  as_have_required=no
 
528
+fi
 
529
+
 
530
+  if test $as_have_required = yes &&    (eval ":
 
531
+(as_func_return () {
 
532
+  (exit \$1)
 
533
+}
 
534
+as_func_success () {
 
535
+  as_func_return 0
 
536
+}
 
537
+as_func_failure () {
 
538
+  as_func_return 1
 
539
+}
 
540
+as_func_ret_success () {
 
541
+  return 0
 
542
+}
 
543
+as_func_ret_failure () {
 
544
+  return 1
 
545
+}
 
546
+
 
547
+exitcode=0
 
548
+if as_func_success; then
 
549
+  :
 
550
+else
 
551
+  exitcode=1
 
552
+  echo as_func_success failed.
 
553
 fi
 
554
 
 
555
+if as_func_failure; then
 
556
+  exitcode=1
 
557
+  echo as_func_failure succeeded.
 
558
+fi
 
559
 
 
560
-  as_lineno_1=$LINENO
 
561
-  as_lineno_2=$LINENO
 
562
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
563
-  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
564
-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
 
565
-  # Find who we are.  Look in the path if we contain no path at all
 
566
-  # relative or not.
 
567
-  case $0 in
 
568
-    *[\\/]* ) as_myself=$0 ;;
 
569
-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
570
-for as_dir in $PATH
 
571
-do
 
572
-  IFS=$as_save_IFS
 
573
-  test -z "$as_dir" && as_dir=.
 
574
-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
575
-done
 
576
+if as_func_ret_success; then
 
577
+  :
 
578
+else
 
579
+  exitcode=1
 
580
+  echo as_func_ret_success failed.
 
581
+fi
 
582
 
 
583
-       ;;
 
584
-  esac
 
585
-  # We did not find ourselves, most probably we were run as `sh COMMAND'
 
586
-  # in which case we are not to be found in the path.
 
587
-  if test "x$as_myself" = x; then
 
588
-    as_myself=$0
 
589
-  fi
 
590
-  if test ! -f "$as_myself"; then
 
591
-    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
 
592
-   { (exit 1); exit 1; }; }
 
593
-  fi
 
594
-  case $CONFIG_SHELL in
 
595
-  '')
 
596
+if as_func_ret_failure; then
 
597
+  exitcode=1
 
598
+  echo as_func_ret_failure succeeded.
 
599
+fi
 
600
+
 
601
+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
 
602
+  :
 
603
+else
 
604
+  exitcode=1
 
605
+  echo positional parameters were not saved.
 
606
+fi
 
607
+
 
608
+test \$exitcode = 0) || { (exit 1); exit 1; }
 
609
+
 
610
+(
 
611
+  as_lineno_1=\$LINENO
 
612
+  as_lineno_2=\$LINENO
 
613
+  test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" &&
 
614
+  test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; }
 
615
+") 2> /dev/null; then
 
616
+  :
 
617
+else
 
618
+  as_candidate_shells=
 
619
     as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
620
 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
621
 do
 
622
   IFS=$as_save_IFS
 
623
   test -z "$as_dir" && as_dir=.
 
624
-  for as_base in sh bash ksh sh5; do
 
625
-        case $as_dir in
 
626
+  case $as_dir in
 
627
         /*)
 
628
-          if ("$as_dir/$as_base" -c '
 
629
+          for as_base in sh bash ksh sh5; do
 
630
+            as_candidate_shells="$as_candidate_shells $as_dir/$as_base"
 
631
+          done;;
 
632
+       esac
 
633
+done
 
634
+IFS=$as_save_IFS
 
635
+
 
636
+
 
637
+      for as_shell in $as_candidate_shells $SHELL; do
 
638
+        # Try only shells that exist, to save several forks.
 
639
+        if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
 
640
+               { ("$as_shell") 2> /dev/null <<\_ASEOF
 
641
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
642
+  emulate sh
 
643
+  NULLCMD=:
 
644
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
645
+  # is contrary to our usage.  Disable this feature.
 
646
+  alias -g '${1+"$@"}'='"$@"'
 
647
+  setopt NO_GLOB_SUBST
 
648
+else
 
649
+  case `(set -o) 2>/dev/null` in
 
650
+  *posix*) set -o posix ;;
 
651
+esac
 
652
+
 
653
+fi
 
654
+
 
655
+
 
656
+:
 
657
+_ASEOF
 
658
+}; then
 
659
+  CONFIG_SHELL=$as_shell
 
660
+              as_have_required=yes
 
661
+              if { "$as_shell" 2> /dev/null <<\_ASEOF
 
662
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
663
+  emulate sh
 
664
+  NULLCMD=:
 
665
+  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
666
+  # is contrary to our usage.  Disable this feature.
 
667
+  alias -g '${1+"$@"}'='"$@"'
 
668
+  setopt NO_GLOB_SUBST
 
669
+else
 
670
+  case `(set -o) 2>/dev/null` in
 
671
+  *posix*) set -o posix ;;
 
672
+esac
 
673
+
 
674
+fi
 
675
+
 
676
+
 
677
+:
 
678
+(as_func_return () {
 
679
+  (exit $1)
 
680
+}
 
681
+as_func_success () {
 
682
+  as_func_return 0
 
683
+}
 
684
+as_func_failure () {
 
685
+  as_func_return 1
 
686
+}
 
687
+as_func_ret_success () {
 
688
+  return 0
 
689
+}
 
690
+as_func_ret_failure () {
 
691
+  return 1
 
692
+}
 
693
+
 
694
+exitcode=0
 
695
+if as_func_success; then
 
696
+  :
 
697
+else
 
698
+  exitcode=1
 
699
+  echo as_func_success failed.
 
700
+fi
 
701
+
 
702
+if as_func_failure; then
 
703
+  exitcode=1
 
704
+  echo as_func_failure succeeded.
 
705
+fi
 
706
+
 
707
+if as_func_ret_success; then
 
708
+  :
 
709
+else
 
710
+  exitcode=1
 
711
+  echo as_func_ret_success failed.
 
712
+fi
 
713
+
 
714
+if as_func_ret_failure; then
 
715
+  exitcode=1
 
716
+  echo as_func_ret_failure succeeded.
 
717
+fi
 
718
+
 
719
+if ( set x; as_func_ret_success y && test x = "$1" ); then
 
720
+  :
 
721
+else
 
722
+  exitcode=1
 
723
+  echo positional parameters were not saved.
 
724
+fi
 
725
+
 
726
+test $exitcode = 0) || { (exit 1); exit 1; }
 
727
+
 
728
+(
 
729
   as_lineno_1=$LINENO
 
730
   as_lineno_2=$LINENO
 
731
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
732
   test "x$as_lineno_1" != "x$as_lineno_2" &&
 
733
-  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
 
734
-            $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
 
735
-            $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
 
736
-            CONFIG_SHELL=$as_dir/$as_base
 
737
-            export CONFIG_SHELL
 
738
-            exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 
739
-          fi;;
 
740
-        esac
 
741
-       done
 
742
-done
 
743
-;;
 
744
-  esac
 
745
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; }
 
746
+
 
747
+_ASEOF
 
748
+}; then
 
749
+  break
 
750
+fi
 
751
+
 
752
+fi
 
753
+
 
754
+      done
 
755
+
 
756
+      if test "x$CONFIG_SHELL" != x; then
 
757
+  for as_var in BASH_ENV ENV
 
758
+        do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
759
+        done
 
760
+        export CONFIG_SHELL
 
761
+        exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
 
762
+fi
 
763
+
 
764
+
 
765
+    if test $as_have_required = no; then
 
766
+  echo This script requires a shell more modern than all the
 
767
+      echo shells that I found on your system.  Please install a
 
768
+      echo modern shell, or manually run the script under such a
 
769
+      echo shell if you do have one.
 
770
+      { (exit 1); exit 1; }
 
771
+fi
 
772
+
 
773
+
 
774
+fi
 
775
+
 
776
+fi
 
777
+
 
778
+
 
779
+
 
780
+(eval "as_func_return () {
 
781
+  (exit \$1)
 
782
+}
 
783
+as_func_success () {
 
784
+  as_func_return 0
 
785
+}
 
786
+as_func_failure () {
 
787
+  as_func_return 1
 
788
+}
 
789
+as_func_ret_success () {
 
790
+  return 0
 
791
+}
 
792
+as_func_ret_failure () {
 
793
+  return 1
 
794
+}
 
795
+
 
796
+exitcode=0
 
797
+if as_func_success; then
 
798
+  :
 
799
+else
 
800
+  exitcode=1
 
801
+  echo as_func_success failed.
 
802
+fi
 
803
+
 
804
+if as_func_failure; then
 
805
+  exitcode=1
 
806
+  echo as_func_failure succeeded.
 
807
+fi
 
808
+
 
809
+if as_func_ret_success; then
 
810
+  :
 
811
+else
 
812
+  exitcode=1
 
813
+  echo as_func_ret_success failed.
 
814
+fi
 
815
+
 
816
+if as_func_ret_failure; then
 
817
+  exitcode=1
 
818
+  echo as_func_ret_failure succeeded.
 
819
+fi
 
820
+
 
821
+if ( set x; as_func_ret_success y && test x = \"\$1\" ); then
 
822
+  :
 
823
+else
 
824
+  exitcode=1
 
825
+  echo positional parameters were not saved.
 
826
+fi
 
827
+
 
828
+test \$exitcode = 0") || {
 
829
+  echo No shell found that supports shell functions.
 
830
+  echo Please tell autoconf@gnu.org about your system,
 
831
+  echo including any error possibly output before this
 
832
+  echo message
 
833
+}
 
834
+
 
835
+
 
836
+
 
837
+  as_lineno_1=$LINENO
 
838
+  as_lineno_2=$LINENO
 
839
+  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
840
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
 
841
 
 
842
   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
843
   # uniformly replaced by the line number.  The first 'sed' inserts a
 
844
-  # line-number line before each line; the second 'sed' does the real
 
845
-  # work.  The second script uses 'N' to pair each line-number line
 
846
-  # with the numbered line, and appends trailing '-' during
 
847
-  # substitution so that $LINENO is not a special case at line end.
 
848
+  # line-number line after each line using $LINENO; the second 'sed'
 
849
+  # does the real work.  The second script uses 'N' to pair each
 
850
+  # line-number line with the line containing $LINENO, and appends
 
851
+  # trailing '-' during substitution so that $LINENO is not a special
 
852
+  # case at line end.
 
853
   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
854
-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
 
855
-  sed '=' <$as_myself |
 
856
+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
 
857
+  # E. McMahon (1931-1989) for sed's syntax.  :-)
 
858
+  sed -n '
 
859
+    p
 
860
+    /[$]LINENO/=
 
861
+  ' <$as_myself |
 
862
     sed '
 
863
+      s/[$]LINENO.*/&-/
 
864
+      t lineno
 
865
+      b
 
866
+      :lineno
 
867
       N
 
868
-      s,$,-,
 
869
-      : loop
 
870
-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
 
871
+      :loop
 
872
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
873
       t loop
 
874
-      s,-$,,
 
875
-      s,^['$as_cr_digits']*\n,,
 
876
+      s/-\n.*//
 
877
     ' >$as_me.lineno &&
 
878
-  chmod +x $as_me.lineno ||
 
879
+  chmod +x "$as_me.lineno" ||
 
880
     { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
881
    { (exit 1); exit 1; }; }
 
882
 
 
883
   # Don't try to exec as it changes $[0], causing all sort of problems
 
884
   # (the dirname of $[0] is not the place where we might find the
 
885
-  # original and so on.  Autoconf is especially sensible to this).
 
886
-  . ./$as_me.lineno
 
887
+  # original and so on.  Autoconf is especially sensitive to this).
 
888
+  . "./$as_me.lineno"
 
889
   # Exit status is that of the last command.
 
890
   exit
 
891
 }
 
892
 
 
893
 
 
894
-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
 
895
-  *c*,-n*) ECHO_N= ECHO_C='
 
896
-' ECHO_T='     ' ;;
 
897
-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
 
898
-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
 
899
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
900
+  as_dirname=dirname
 
901
+else
 
902
+  as_dirname=false
 
903
+fi
 
904
+
 
905
+ECHO_C= ECHO_N= ECHO_T=
 
906
+case `echo -n x` in
 
907
+-n*)
 
908
+  case `echo 'x\c'` in
 
909
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
910
+  *)   ECHO_C='\c';;
 
911
+  esac;;
 
912
+*)
 
913
+  ECHO_N='-n';;
 
914
 esac
 
915
 
 
916
-if expr a : '\(a\)' >/dev/null 2>&1; then
 
917
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
918
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
919
   as_expr=expr
 
920
 else
 
921
   as_expr=false
 
922
 fi
 
923
 
 
924
 rm -f conf$$ conf$$.exe conf$$.file
 
925
+if test -d conf$$.dir; then
 
926
+  rm -f conf$$.dir/conf$$.file
 
927
+else
 
928
+  rm -f conf$$.dir
 
929
+  mkdir conf$$.dir
 
930
+fi
 
931
 echo >conf$$.file
 
932
 if ln -s conf$$.file conf$$ 2>/dev/null; then
 
933
-  # We could just check for DJGPP; but this test a) works b) is more generic
 
934
-  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 
935
-  if test -f conf$$.exe; then
 
936
-    # Don't use ln at all; we don't have any links
 
937
+  as_ln_s='ln -s'
 
938
+  # ... but there are two gotchas:
 
939
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
940
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
941
+  # In both cases, we have to default to `cp -p'.
 
942
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
943
     as_ln_s='cp -p'
 
944
-  else
 
945
-    as_ln_s='ln -s'
 
946
-  fi
 
947
 elif ln conf$$.file conf$$ 2>/dev/null; then
 
948
   as_ln_s=ln
 
949
 else
 
950
   as_ln_s='cp -p'
 
951
 fi
 
952
-rm -f conf$$ conf$$.exe conf$$.file
 
953
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
954
+rmdir conf$$.dir 2>/dev/null
 
955
 
 
956
 if mkdir -p . 2>/dev/null; then
 
957
   as_mkdir_p=:
 
958
@@ -224,7 +520,28 @@
 
959
   as_mkdir_p=false
 
960
 fi
 
961
 
 
962
-as_executable_p="test -f"
 
963
+if test -x / >/dev/null 2>&1; then
 
964
+  as_test_x='test -x'
 
965
+else
 
966
+  if ls -dL / >/dev/null 2>&1; then
 
967
+    as_ls_L_option=L
 
968
+  else
 
969
+    as_ls_L_option=
 
970
+  fi
 
971
+  as_test_x='
 
972
+    eval sh -c '\''
 
973
+      if test -d "$1"; then
 
974
+        test -d "$1/.";
 
975
+      else
 
976
+       case $1 in
 
977
+        -*)set "./$1";;
 
978
+       esac;
 
979
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
980
+       ???[sx]*):;;*)false;;esac;fi
 
981
+    '\'' sh
 
982
+  '
 
983
+fi
 
984
+as_executable_p=$as_test_x
 
985
 
 
986
 # Sed expression to map a string onto a valid CPP name.
 
987
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
988
@@ -233,39 +550,27 @@
 
989
 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
990
 
 
991
 
 
992
-# IFS
 
993
-# We need space, tab and new line, in precisely that order.
 
994
-as_nl='
 
995
-'
 
996
-IFS="  $as_nl"
 
997
-
 
998
-# CDPATH.
 
999
-$as_unset CDPATH
 
1000
 
 
1001
+exec 7<&0 </dev/null 6>&1
 
1002
 
 
1003
 # Name of the host.
 
1004
 # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
 
1005
 # so uname gets run too.
 
1006
 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
 
1007
 
 
1008
-exec 6>&1
 
1009
-
 
1010
 #
 
1011
 # Initializations.
 
1012
 #
 
1013
 ac_default_prefix=/usr/local
 
1014
+ac_clean_files=
 
1015
 ac_config_libobj_dir=.
 
1016
+LIBOBJS=
 
1017
 cross_compiling=no
 
1018
 subdirs=
 
1019
 MFLAGS=
 
1020
 MAKEFLAGS=
 
1021
 SHELL=${CONFIG_SHELL-/bin/sh}
 
1022
 
 
1023
-# Maximum number of lines to put in a shell here document.
 
1024
-# This variable seems obsolete.  It should probably be removed, and
 
1025
-# only ac_max_sed_lines should be used.
 
1026
-: ${ac_max_here_lines=38}
 
1027
-
 
1028
 # Identity of this package.
 
1029
 PACKAGE_NAME='dbacl'
 
1030
 PACKAGE_TARNAME='dbacl'
 
1031
@@ -276,42 +581,151 @@
 
1032
 # Factoring default headers for most tests.
 
1033
 ac_includes_default="\
 
1034
 #include <stdio.h>
 
1035
-#if HAVE_SYS_TYPES_H
 
1036
+#ifdef HAVE_SYS_TYPES_H
 
1037
 # include <sys/types.h>
 
1038
 #endif
 
1039
-#if HAVE_SYS_STAT_H
 
1040
+#ifdef HAVE_SYS_STAT_H
 
1041
 # include <sys/stat.h>
 
1042
 #endif
 
1043
-#if STDC_HEADERS
 
1044
+#ifdef STDC_HEADERS
 
1045
 # include <stdlib.h>
 
1046
 # include <stddef.h>
 
1047
 #else
 
1048
-# if HAVE_STDLIB_H
 
1049
+# ifdef HAVE_STDLIB_H
 
1050
 #  include <stdlib.h>
 
1051
 # endif
 
1052
 #endif
 
1053
-#if HAVE_STRING_H
 
1054
-# if !STDC_HEADERS && HAVE_MEMORY_H
 
1055
+#ifdef HAVE_STRING_H
 
1056
+# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
 
1057
 #  include <memory.h>
 
1058
 # endif
 
1059
 # include <string.h>
 
1060
 #endif
 
1061
-#if HAVE_STRINGS_H
 
1062
+#ifdef HAVE_STRINGS_H
 
1063
 # include <strings.h>
 
1064
 #endif
 
1065
-#if HAVE_INTTYPES_H
 
1066
+#ifdef HAVE_INTTYPES_H
 
1067
 # include <inttypes.h>
 
1068
-#else
 
1069
-# if HAVE_STDINT_H
 
1070
-#  include <stdint.h>
 
1071
-# endif
 
1072
 #endif
 
1073
-#if HAVE_UNISTD_H
 
1074
+#ifdef HAVE_STDINT_H
 
1075
+# include <stdint.h>
 
1076
+#endif
 
1077
+#ifdef HAVE_UNISTD_H
 
1078
 # include <unistd.h>
 
1079
 #endif"
 
1080
 
 
1081
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP CFLAGSIEEE LEX LEXLIB LEX_OUTPUT_ROOT YACC LDADDINTER INCLUDESINTER LIBOBJS LTLIBOBJS'
 
1082
+ac_subst_vars='SHELL
 
1083
+PATH_SEPARATOR
 
1084
+PACKAGE_NAME
 
1085
+PACKAGE_TARNAME
 
1086
+PACKAGE_VERSION
 
1087
+PACKAGE_STRING
 
1088
+PACKAGE_BUGREPORT
 
1089
+exec_prefix
 
1090
+prefix
 
1091
+program_transform_name
 
1092
+bindir
 
1093
+sbindir
 
1094
+libexecdir
 
1095
+datarootdir
 
1096
+datadir
 
1097
+sysconfdir
 
1098
+sharedstatedir
 
1099
+localstatedir
 
1100
+includedir
 
1101
+oldincludedir
 
1102
+docdir
 
1103
+infodir
 
1104
+htmldir
 
1105
+dvidir
 
1106
+pdfdir
 
1107
+psdir
 
1108
+libdir
 
1109
+localedir
 
1110
+mandir
 
1111
+DEFS
 
1112
+ECHO_C
 
1113
+ECHO_N
 
1114
+ECHO_T
 
1115
+LIBS
 
1116
+build_alias
 
1117
+host_alias
 
1118
+target_alias
 
1119
+build
 
1120
+build_cpu
 
1121
+build_vendor
 
1122
+build_os
 
1123
+host
 
1124
+host_cpu
 
1125
+host_vendor
 
1126
+host_os
 
1127
+target
 
1128
+target_cpu
 
1129
+target_vendor
 
1130
+target_os
 
1131
+INSTALL_PROGRAM
 
1132
+INSTALL_SCRIPT
 
1133
+INSTALL_DATA
 
1134
+CYGPATH_W
 
1135
+PACKAGE
 
1136
+VERSION
 
1137
+ACLOCAL
 
1138
+AUTOCONF
 
1139
+AUTOMAKE
 
1140
+AUTOHEADER
 
1141
+MAKEINFO
 
1142
+install_sh
 
1143
+STRIP
 
1144
+INSTALL_STRIP_PROGRAM
 
1145
+mkdir_p
 
1146
+AWK
 
1147
+SET_MAKE
 
1148
+am__leading_dot
 
1149
+AMTAR
 
1150
+am__tar
 
1151
+am__untar
 
1152
+CC
 
1153
+CFLAGS
 
1154
+LDFLAGS
 
1155
+CPPFLAGS
 
1156
+ac_ct_CC
 
1157
+EXEEXT
 
1158
+OBJEXT
 
1159
+DEPDIR
 
1160
+am__include
 
1161
+am__quote
 
1162
+AMDEP_TRUE
 
1163
+AMDEP_FALSE
 
1164
+AMDEPBACKSLASH
 
1165
+CCDEPMODE
 
1166
+am__fastdepCC_TRUE
 
1167
+am__fastdepCC_FALSE
 
1168
+CPP
 
1169
+GREP
 
1170
+EGREP
 
1171
+CFLAGSIEEE
 
1172
+LEX
 
1173
+LEX_OUTPUT_ROOT
 
1174
+LEXLIB
 
1175
+YACC
 
1176
+YFLAGS
 
1177
+LDADDINTER
 
1178
+INCLUDESINTER
 
1179
+LIBOBJS
 
1180
+LTLIBOBJS'
 
1181
 ac_subst_files=''
 
1182
+      ac_precious_vars='build_alias
 
1183
+host_alias
 
1184
+target_alias
 
1185
+CC
 
1186
+CFLAGS
 
1187
+LDFLAGS
 
1188
+LIBS
 
1189
+CPPFLAGS
 
1190
+CPP
 
1191
+YACC
 
1192
+YFLAGS'
 
1193
+
 
1194
 
 
1195
 # Initialize some variables set by options.
 
1196
 ac_init_help=
 
1197
@@ -338,34 +752,48 @@
 
1198
 # and all the variables that are supposed to be based on exec_prefix
 
1199
 # by default will actually change.
 
1200
 # Use braces instead of parens because sh, perl, etc. also accept them.
 
1201
+# (The list follows the same order as the GNU Coding Standards.)
 
1202
 bindir='${exec_prefix}/bin'
 
1203
 sbindir='${exec_prefix}/sbin'
 
1204
 libexecdir='${exec_prefix}/libexec'
 
1205
-datadir='${prefix}/share'
 
1206
+datarootdir='${prefix}/share'
 
1207
+datadir='${datarootdir}'
 
1208
 sysconfdir='${prefix}/etc'
 
1209
 sharedstatedir='${prefix}/com'
 
1210
 localstatedir='${prefix}/var'
 
1211
-libdir='${exec_prefix}/lib'
 
1212
 includedir='${prefix}/include'
 
1213
 oldincludedir='/usr/include'
 
1214
-infodir='${prefix}/info'
 
1215
-mandir='${prefix}/man'
 
1216
+docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
 
1217
+infodir='${datarootdir}/info'
 
1218
+htmldir='${docdir}'
 
1219
+dvidir='${docdir}'
 
1220
+pdfdir='${docdir}'
 
1221
+psdir='${docdir}'
 
1222
+libdir='${exec_prefix}/lib'
 
1223
+localedir='${datarootdir}/locale'
 
1224
+mandir='${datarootdir}/man'
 
1225
 
 
1226
 ac_prev=
 
1227
+ac_dashdash=
 
1228
 for ac_option
 
1229
 do
 
1230
   # If the previous option needs an argument, assign it.
 
1231
   if test -n "$ac_prev"; then
 
1232
-    eval "$ac_prev=\$ac_option"
 
1233
+    eval $ac_prev=\$ac_option
 
1234
     ac_prev=
 
1235
     continue
 
1236
   fi
 
1237
 
 
1238
-  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
 
1239
+  case $ac_option in
 
1240
+  *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
 
1241
+  *)   ac_optarg=yes ;;
 
1242
+  esac
 
1243
 
 
1244
   # Accept the important Cygnus configure options, so we can diagnose typos.
 
1245
 
 
1246
-  case $ac_option in
 
1247
+  case $ac_dashdash$ac_option in
 
1248
+  --)
 
1249
+    ac_dashdash=yes ;;
 
1250
 
 
1251
   -bindir | --bindir | --bindi | --bind | --bin | --bi)
 
1252
     ac_prev=bindir ;;
 
1253
@@ -387,33 +815,45 @@
 
1254
   --config-cache | -C)
 
1255
     cache_file=config.cache ;;
 
1256
 
 
1257
-  -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
 
1258
+  -datadir | --datadir | --datadi | --datad)
 
1259
     ac_prev=datadir ;;
 
1260
-  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
 
1261
-  | --da=*)
 
1262
+  -datadir=* | --datadir=* | --datadi=* | --datad=*)
 
1263
     datadir=$ac_optarg ;;
 
1264
 
 
1265
+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
 
1266
+  | --dataroo | --dataro | --datar)
 
1267
+    ac_prev=datarootdir ;;
 
1268
+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
 
1269
+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
 
1270
+    datarootdir=$ac_optarg ;;
 
1271
+
 
1272
   -disable-* | --disable-*)
 
1273
     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
 
1274
     # Reject names that are not valid shell variable names.
 
1275
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
1276
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1277
       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
1278
    { (exit 1); exit 1; }; }
 
1279
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
 
1280
-    eval "enable_$ac_feature=no" ;;
 
1281
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
1282
+    eval enable_$ac_feature=no ;;
 
1283
+
 
1284
+  -docdir | --docdir | --docdi | --doc | --do)
 
1285
+    ac_prev=docdir ;;
 
1286
+  -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
 
1287
+    docdir=$ac_optarg ;;
 
1288
+
 
1289
+  -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
 
1290
+    ac_prev=dvidir ;;
 
1291
+  -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
 
1292
+    dvidir=$ac_optarg ;;
 
1293
 
 
1294
   -enable-* | --enable-*)
 
1295
     ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
 
1296
     # Reject names that are not valid shell variable names.
 
1297
-    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
1298
+    expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1299
       { echo "$as_me: error: invalid feature name: $ac_feature" >&2
 
1300
    { (exit 1); exit 1; }; }
 
1301
-    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
 
1302
-    case $ac_option in
 
1303
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
 
1304
-      *) ac_optarg=yes ;;
 
1305
-    esac
 
1306
-    eval "enable_$ac_feature='$ac_optarg'" ;;
 
1307
+    ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
 
1308
+    eval enable_$ac_feature=\$ac_optarg ;;
 
1309
 
 
1310
   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
 
1311
   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
 
1312
@@ -440,6 +880,12 @@
 
1313
   -host=* | --host=* | --hos=* | --ho=*)
 
1314
     host_alias=$ac_optarg ;;
 
1315
 
 
1316
+  -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
 
1317
+    ac_prev=htmldir ;;
 
1318
+  -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
 
1319
+  | --ht=*)
 
1320
+    htmldir=$ac_optarg ;;
 
1321
+
 
1322
   -includedir | --includedir | --includedi | --included | --include \
 
1323
   | --includ | --inclu | --incl | --inc)
 
1324
     ac_prev=includedir ;;
 
1325
@@ -464,13 +910,16 @@
 
1326
   | --libexe=* | --libex=* | --libe=*)
 
1327
     libexecdir=$ac_optarg ;;
 
1328
 
 
1329
+  -localedir | --localedir | --localedi | --localed | --locale)
 
1330
+    ac_prev=localedir ;;
 
1331
+  -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
 
1332
+    localedir=$ac_optarg ;;
 
1333
+
 
1334
   -localstatedir | --localstatedir | --localstatedi | --localstated \
 
1335
-  | --localstate | --localstat | --localsta | --localst \
 
1336
-  | --locals | --local | --loca | --loc | --lo)
 
1337
+  | --localstate | --localstat | --localsta | --localst | --locals)
 
1338
     ac_prev=localstatedir ;;
 
1339
   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
 
1340
-  | --localstate=* | --localstat=* | --localsta=* | --localst=* \
 
1341
-  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
 
1342
+  | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
 
1343
     localstatedir=$ac_optarg ;;
 
1344
 
 
1345
   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
 
1346
@@ -535,6 +984,16 @@
 
1347
   | --progr-tra=* | --program-tr=* | --program-t=*)
 
1348
     program_transform_name=$ac_optarg ;;
 
1349
 
 
1350
+  -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
 
1351
+    ac_prev=pdfdir ;;
 
1352
+  -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
 
1353
+    pdfdir=$ac_optarg ;;
 
1354
+
 
1355
+  -psdir | --psdir | --psdi | --psd | --ps)
 
1356
+    ac_prev=psdir ;;
 
1357
+  -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
 
1358
+    psdir=$ac_optarg ;;
 
1359
+
 
1360
   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1361
   | -silent | --silent | --silen | --sile | --sil)
 
1362
     silent=yes ;;
 
1363
@@ -587,24 +1046,20 @@
 
1364
   -with-* | --with-*)
 
1365
     ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
 
1366
     # Reject names that are not valid shell variable names.
 
1367
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
1368
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1369
       { echo "$as_me: error: invalid package name: $ac_package" >&2
 
1370
    { (exit 1); exit 1; }; }
 
1371
-    ac_package=`echo $ac_package| sed 's/-/_/g'`
 
1372
-    case $ac_option in
 
1373
-      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
 
1374
-      *) ac_optarg=yes ;;
 
1375
-    esac
 
1376
-    eval "with_$ac_package='$ac_optarg'" ;;
 
1377
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
1378
+    eval with_$ac_package=\$ac_optarg ;;
 
1379
 
 
1380
   -without-* | --without-*)
 
1381
     ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
 
1382
     # Reject names that are not valid shell variable names.
 
1383
-    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
 
1384
+    expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null &&
 
1385
       { echo "$as_me: error: invalid package name: $ac_package" >&2
 
1386
    { (exit 1); exit 1; }; }
 
1387
-    ac_package=`echo $ac_package | sed 's/-/_/g'`
 
1388
-    eval "with_$ac_package=no" ;;
 
1389
+    ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
 
1390
+    eval with_$ac_package=no ;;
 
1391
 
 
1392
   --x)
 
1393
     # Obsolete; use --with-x.
 
1394
@@ -635,8 +1090,7 @@
 
1395
     expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
 
1396
       { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
 
1397
    { (exit 1); exit 1; }; }
 
1398
-    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
 
1399
-    eval "$ac_envvar='$ac_optarg'"
 
1400
+    eval $ac_envvar=\$ac_optarg
 
1401
     export $ac_envvar ;;
 
1402
 
 
1403
   *)
 
1404
@@ -656,27 +1110,19 @@
 
1405
    { (exit 1); exit 1; }; }
 
1406
 fi
 
1407
 
 
1408
-# Be sure to have absolute paths.
 
1409
-for ac_var in exec_prefix prefix
 
1410
-do
 
1411
-  eval ac_val=$`echo $ac_var`
 
1412
-  case $ac_val in
 
1413
-    [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
 
1414
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
 
1415
-   { (exit 1); exit 1; }; };;
 
1416
-  esac
 
1417
-done
 
1418
-
 
1419
-# Be sure to have absolute paths.
 
1420
-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
 
1421
-             localstatedir libdir includedir oldincludedir infodir mandir
 
1422
+# Be sure to have absolute directory names.
 
1423
+for ac_var in  exec_prefix prefix bindir sbindir libexecdir datarootdir \
 
1424
+               datadir sysconfdir sharedstatedir localstatedir includedir \
 
1425
+               oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
 
1426
+               libdir localedir mandir
 
1427
 do
 
1428
-  eval ac_val=$`echo $ac_var`
 
1429
+  eval ac_val=\$$ac_var
 
1430
   case $ac_val in
 
1431
-    [\\/$]* | ?:[\\/]* ) ;;
 
1432
-    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
 
1433
-   { (exit 1); exit 1; }; };;
 
1434
+    [\\/$]* | ?:[\\/]* )  continue;;
 
1435
+    NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
 
1436
   esac
 
1437
+  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
 
1438
+   { (exit 1); exit 1; }; }
 
1439
 done
 
1440
 
 
1441
 # There might be people who depend on the old broken behavior: `$host'
 
1442
@@ -703,76 +1149,78 @@
 
1443
 test "$silent" = yes && exec 6>/dev/null
 
1444
 
 
1445
 
 
1446
+ac_pwd=`pwd` && test -n "$ac_pwd" &&
 
1447
+ac_ls_di=`ls -di .` &&
 
1448
+ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
 
1449
+  { echo "$as_me: error: Working directory cannot be determined" >&2
 
1450
+   { (exit 1); exit 1; }; }
 
1451
+test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
 
1452
+  { echo "$as_me: error: pwd does not report name of working directory" >&2
 
1453
+   { (exit 1); exit 1; }; }
 
1454
+
 
1455
+
 
1456
 # Find the source files, if location was not specified.
 
1457
 if test -z "$srcdir"; then
 
1458
   ac_srcdir_defaulted=yes
 
1459
-  # Try the directory containing this script, then its parent.
 
1460
-  ac_confdir=`(dirname "$0") 2>/dev/null ||
 
1461
+  # Try the directory containing this script, then the parent directory.
 
1462
+  ac_confdir=`$as_dirname -- "$0" ||
 
1463
 $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
1464
         X"$0" : 'X\(//\)[^/]' \| \
 
1465
         X"$0" : 'X\(//\)$' \| \
 
1466
-        X"$0" : 'X\(/\)' \| \
 
1467
-        .     : '\(.\)' 2>/dev/null ||
 
1468
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
1469
 echo X"$0" |
 
1470
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
1471
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
1472
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
1473
-         /^X\(\/\).*/{ s//\1/; q; }
 
1474
-         s/.*/./; q'`
 
1475
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
1476
+           s//\1/
 
1477
+           q
 
1478
+         }
 
1479
+         /^X\(\/\/\)[^/].*/{
 
1480
+           s//\1/
 
1481
+           q
 
1482
+         }
 
1483
+         /^X\(\/\/\)$/{
 
1484
+           s//\1/
 
1485
+           q
 
1486
+         }
 
1487
+         /^X\(\/\).*/{
 
1488
+           s//\1/
 
1489
+           q
 
1490
+         }
 
1491
+         s/.*/./; q'`
 
1492
   srcdir=$ac_confdir
 
1493
-  if test ! -r $srcdir/$ac_unique_file; then
 
1494
+  if test ! -r "$srcdir/$ac_unique_file"; then
 
1495
     srcdir=..
 
1496
   fi
 
1497
 else
 
1498
   ac_srcdir_defaulted=no
 
1499
 fi
 
1500
-if test ! -r $srcdir/$ac_unique_file; then
 
1501
-  if test "$ac_srcdir_defaulted" = yes; then
 
1502
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
 
1503
-   { (exit 1); exit 1; }; }
 
1504
-  else
 
1505
-    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
 
1506
+if test ! -r "$srcdir/$ac_unique_file"; then
 
1507
+  test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
 
1508
+  { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
 
1509
    { (exit 1); exit 1; }; }
 
1510
-  fi
 
1511
 fi
 
1512
-(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
 
1513
-  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
 
1514
+ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
 
1515
+ac_abs_confdir=`(
 
1516
+       cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2
 
1517
    { (exit 1); exit 1; }; }
 
1518
-srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
 
1519
-ac_env_build_alias_set=${build_alias+set}
 
1520
-ac_env_build_alias_value=$build_alias
 
1521
-ac_cv_env_build_alias_set=${build_alias+set}
 
1522
-ac_cv_env_build_alias_value=$build_alias
 
1523
-ac_env_host_alias_set=${host_alias+set}
 
1524
-ac_env_host_alias_value=$host_alias
 
1525
-ac_cv_env_host_alias_set=${host_alias+set}
 
1526
-ac_cv_env_host_alias_value=$host_alias
 
1527
-ac_env_target_alias_set=${target_alias+set}
 
1528
-ac_env_target_alias_value=$target_alias
 
1529
-ac_cv_env_target_alias_set=${target_alias+set}
 
1530
-ac_cv_env_target_alias_value=$target_alias
 
1531
-ac_env_CC_set=${CC+set}
 
1532
-ac_env_CC_value=$CC
 
1533
-ac_cv_env_CC_set=${CC+set}
 
1534
-ac_cv_env_CC_value=$CC
 
1535
-ac_env_CFLAGS_set=${CFLAGS+set}
 
1536
-ac_env_CFLAGS_value=$CFLAGS
 
1537
-ac_cv_env_CFLAGS_set=${CFLAGS+set}
 
1538
-ac_cv_env_CFLAGS_value=$CFLAGS
 
1539
-ac_env_LDFLAGS_set=${LDFLAGS+set}
 
1540
-ac_env_LDFLAGS_value=$LDFLAGS
 
1541
-ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
 
1542
-ac_cv_env_LDFLAGS_value=$LDFLAGS
 
1543
-ac_env_CPPFLAGS_set=${CPPFLAGS+set}
 
1544
-ac_env_CPPFLAGS_value=$CPPFLAGS
 
1545
-ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
 
1546
-ac_cv_env_CPPFLAGS_value=$CPPFLAGS
 
1547
-ac_env_CPP_set=${CPP+set}
 
1548
-ac_env_CPP_value=$CPP
 
1549
-ac_cv_env_CPP_set=${CPP+set}
 
1550
-ac_cv_env_CPP_value=$CPP
 
1551
-
 
1552
-#
 
1553
+       pwd)`
 
1554
+# When building in place, set srcdir=.
 
1555
+if test "$ac_abs_confdir" = "$ac_pwd"; then
 
1556
+  srcdir=.
 
1557
+fi
 
1558
+# Remove unnecessary trailing slashes from srcdir.
 
1559
+# Double slashes in file names in object file debugging info
 
1560
+# mess up M-x gdb in Emacs.
 
1561
+case $srcdir in
 
1562
+*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
 
1563
+esac
 
1564
+for ac_var in $ac_precious_vars; do
 
1565
+  eval ac_env_${ac_var}_set=\${${ac_var}+set}
 
1566
+  eval ac_env_${ac_var}_value=\$${ac_var}
 
1567
+  eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
 
1568
+  eval ac_cv_env_${ac_var}_value=\$${ac_var}
 
1569
+done
 
1570
+
 
1571
+#
 
1572
 # Report the --help message.
 
1573
 #
 
1574
 if test "$ac_init_help" = "long"; then
 
1575
@@ -799,9 +1247,6 @@
 
1576
   -n, --no-create         do not create output files
 
1577
       --srcdir=DIR        find the sources in DIR [configure dir or \`..']
 
1578
 
 
1579
-_ACEOF
 
1580
-
 
1581
-  cat <<_ACEOF
 
1582
 Installation directories:
 
1583
   --prefix=PREFIX         install architecture-independent files in PREFIX
 
1584
                          [$ac_default_prefix]
 
1585
@@ -819,15 +1264,22 @@
 
1586
   --bindir=DIR           user executables [EPREFIX/bin]
 
1587
   --sbindir=DIR          system admin executables [EPREFIX/sbin]
 
1588
   --libexecdir=DIR       program executables [EPREFIX/libexec]
 
1589
-  --datadir=DIR          read-only architecture-independent data [PREFIX/share]
 
1590
   --sysconfdir=DIR       read-only single-machine data [PREFIX/etc]
 
1591
   --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com]
 
1592
   --localstatedir=DIR    modifiable single-machine data [PREFIX/var]
 
1593
   --libdir=DIR           object code libraries [EPREFIX/lib]
 
1594
   --includedir=DIR       C header files [PREFIX/include]
 
1595
   --oldincludedir=DIR    C header files for non-gcc [/usr/include]
 
1596
-  --infodir=DIR          info documentation [PREFIX/info]
 
1597
-  --mandir=DIR           man documentation [PREFIX/man]
 
1598
+  --datarootdir=DIR      read-only arch.-independent data root [PREFIX/share]
 
1599
+  --datadir=DIR          read-only architecture-independent data [DATAROOTDIR]
 
1600
+  --infodir=DIR          info documentation [DATAROOTDIR/info]
 
1601
+  --localedir=DIR        locale-dependent data [DATAROOTDIR/locale]
 
1602
+  --mandir=DIR           man documentation [DATAROOTDIR/man]
 
1603
+  --docdir=DIR           documentation root [DATAROOTDIR/doc/dbacl]
 
1604
+  --htmldir=DIR          html documentation [DOCDIR]
 
1605
+  --dvidir=DIR           dvi documentation [DOCDIR]
 
1606
+  --pdfdir=DIR           pdf documentation [DOCDIR]
 
1607
+  --psdir=DIR            ps documentation [DOCDIR]
 
1608
 _ACEOF
 
1609
 
 
1610
   cat <<\_ACEOF
 
1611
@@ -861,129 +1313,101 @@
 
1612
   CFLAGS      C compiler flags
 
1613
   LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
 
1614
               nonstandard directory <lib dir>
 
1615
-  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have
 
1616
-              headers in a nonstandard directory <include dir>
 
1617
+  LIBS        libraries to pass to the linker, e.g. -l<library>
 
1618
+  CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
 
1619
+              you have headers in a nonstandard directory <include dir>
 
1620
   CPP         C preprocessor
 
1621
+  YACC        The `Yet Another C Compiler' implementation to use. Defaults to
 
1622
+              the first program found out of: `bison -y', `byacc', `yacc'.
 
1623
+  YFLAGS      The list of arguments that will be passed by default to $YACC.
 
1624
+              This script will default YFLAGS to the empty string to avoid a
 
1625
+              default value of `-d' given by some make applications.
 
1626
 
 
1627
 Use these variables to override the choices made by `configure' or to help
 
1628
 it to find libraries and programs with nonstandard names/locations.
 
1629
 
 
1630
 Report bugs to <laird@lbreyer.com>.
 
1631
 _ACEOF
 
1632
+ac_status=$?
 
1633
 fi
 
1634
 
 
1635
 if test "$ac_init_help" = "recursive"; then
 
1636
   # If there are subdirs, report their specific --help.
 
1637
-  ac_popdir=`pwd`
 
1638
   for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
 
1639
-    test -d $ac_dir || continue
 
1640
+    test -d "$ac_dir" || continue
 
1641
     ac_builddir=.
 
1642
 
 
1643
-if test "$ac_dir" != .; then
 
1644
+case "$ac_dir" in
 
1645
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1646
+*)
 
1647
   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
1648
-  # A "../" for each directory in $ac_dir_suffix.
 
1649
-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 
1650
-else
 
1651
-  ac_dir_suffix= ac_top_builddir=
 
1652
-fi
 
1653
+  # A ".." for each directory in $ac_dir_suffix.
 
1654
+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
 
1655
+  case $ac_top_builddir_sub in
 
1656
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
1657
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
1658
+  esac ;;
 
1659
+esac
 
1660
+ac_abs_top_builddir=$ac_pwd
 
1661
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
1662
+# for backward compatibility:
 
1663
+ac_top_builddir=$ac_top_build_prefix
 
1664
 
 
1665
 case $srcdir in
 
1666
-  .)  # No --srcdir option.  We are building in place.
 
1667
+  .)  # We are building in place.
 
1668
     ac_srcdir=.
 
1669
-    if test -z "$ac_top_builddir"; then
 
1670
-       ac_top_srcdir=.
 
1671
-    else
 
1672
-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 
1673
-    fi ;;
 
1674
-  [\\/]* | ?:[\\/]* )  # Absolute path.
 
1675
+    ac_top_srcdir=$ac_top_builddir_sub
 
1676
+    ac_abs_top_srcdir=$ac_pwd ;;
 
1677
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
1678
     ac_srcdir=$srcdir$ac_dir_suffix;
 
1679
-    ac_top_srcdir=$srcdir ;;
 
1680
-  *) # Relative path.
 
1681
-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 
1682
-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 
1683
-esac
 
1684
-
 
1685
-# Do not use `cd foo && pwd` to compute absolute paths, because
 
1686
-# the directories may not exist.
 
1687
-case `pwd` in
 
1688
-.) ac_abs_builddir="$ac_dir";;
 
1689
-*)
 
1690
-  case "$ac_dir" in
 
1691
-  .) ac_abs_builddir=`pwd`;;
 
1692
-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 
1693
-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 
1694
-  esac;;
 
1695
-esac
 
1696
-case $ac_abs_builddir in
 
1697
-.) ac_abs_top_builddir=${ac_top_builddir}.;;
 
1698
-*)
 
1699
-  case ${ac_top_builddir}. in
 
1700
-  .) ac_abs_top_builddir=$ac_abs_builddir;;
 
1701
-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 
1702
-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 
1703
-  esac;;
 
1704
-esac
 
1705
-case $ac_abs_builddir in
 
1706
-.) ac_abs_srcdir=$ac_srcdir;;
 
1707
-*)
 
1708
-  case $ac_srcdir in
 
1709
-  .) ac_abs_srcdir=$ac_abs_builddir;;
 
1710
-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 
1711
-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 
1712
-  esac;;
 
1713
-esac
 
1714
-case $ac_abs_builddir in
 
1715
-.) ac_abs_top_srcdir=$ac_top_srcdir;;
 
1716
-*)
 
1717
-  case $ac_top_srcdir in
 
1718
-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 
1719
-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 
1720
-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 
1721
-  esac;;
 
1722
+    ac_top_srcdir=$srcdir
 
1723
+    ac_abs_top_srcdir=$srcdir ;;
 
1724
+  *) # Relative name.
 
1725
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
1726
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
1727
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
1728
 esac
 
1729
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
1730
 
 
1731
-    cd $ac_dir
 
1732
-    # Check for guested configure; otherwise get Cygnus style configure.
 
1733
-    if test -f $ac_srcdir/configure.gnu; then
 
1734
-      echo
 
1735
-      $SHELL $ac_srcdir/configure.gnu  --help=recursive
 
1736
-    elif test -f $ac_srcdir/configure; then
 
1737
-      echo
 
1738
-      $SHELL $ac_srcdir/configure  --help=recursive
 
1739
-    elif test -f $ac_srcdir/configure.ac ||
 
1740
-          test -f $ac_srcdir/configure.in; then
 
1741
-      echo
 
1742
-      $ac_configure --help
 
1743
+    cd "$ac_dir" || { ac_status=$?; continue; }
 
1744
+    # Check for guested configure.
 
1745
+    if test -f "$ac_srcdir/configure.gnu"; then
 
1746
+      echo &&
 
1747
+      $SHELL "$ac_srcdir/configure.gnu" --help=recursive
 
1748
+    elif test -f "$ac_srcdir/configure"; then
 
1749
+      echo &&
 
1750
+      $SHELL "$ac_srcdir/configure" --help=recursive
 
1751
     else
 
1752
       echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
 
1753
-    fi
 
1754
-    cd "$ac_popdir"
 
1755
+    fi || ac_status=$?
 
1756
+    cd "$ac_pwd" || { ac_status=$?; break; }
 
1757
   done
 
1758
 fi
 
1759
 
 
1760
-test -n "$ac_init_help" && exit 0
 
1761
+test -n "$ac_init_help" && exit $ac_status
 
1762
 if $ac_init_version; then
 
1763
   cat <<\_ACEOF
 
1764
 dbacl configure 1.12
 
1765
-generated by GNU Autoconf 2.59
 
1766
+generated by GNU Autoconf 2.61
 
1767
 
 
1768
-Copyright (C) 2003 Free Software Foundation, Inc.
 
1769
+Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
 
1770
+2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
 
1771
 This configure script is free software; the Free Software Foundation
 
1772
 gives unlimited permission to copy, distribute and modify it.
 
1773
 _ACEOF
 
1774
-  exit 0
 
1775
+  exit
 
1776
 fi
 
1777
-exec 5>config.log
 
1778
-cat >&5 <<_ACEOF
 
1779
+cat >config.log <<_ACEOF
 
1780
 This file contains any messages produced by compilers while
 
1781
 running configure, to aid debugging if configure makes a mistake.
 
1782
 
 
1783
 It was created by dbacl $as_me 1.12, which was
 
1784
-generated by GNU Autoconf 2.59.  Invocation command line was
 
1785
+generated by GNU Autoconf 2.61.  Invocation command line was
 
1786
 
 
1787
   $ $0 $@
 
1788
 
 
1789
 _ACEOF
 
1790
+exec 5>>config.log
 
1791
 {
 
1792
 cat <<_ASUNAME
 
1793
 ## --------- ##
 
1794
@@ -1002,7 +1426,7 @@
 
1795
 /bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown`
 
1796
 /usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown`
 
1797
 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
 
1798
-hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown`
 
1799
+/usr/bin/hostinfo      = `(/usr/bin/hostinfo) 2>/dev/null      || echo unknown`
 
1800
 /bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown`
 
1801
 /usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown`
 
1802
 /bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown`
 
1803
@@ -1016,6 +1440,7 @@
 
1804
   test -z "$as_dir" && as_dir=.
 
1805
   echo "PATH: $as_dir"
 
1806
 done
 
1807
+IFS=$as_save_IFS
 
1808
 
 
1809
 } >&5
 
1810
 
 
1811
@@ -1037,7 +1462,6 @@
 
1812
 ac_configure_args=
 
1813
 ac_configure_args0=
 
1814
 ac_configure_args1=
 
1815
-ac_sep=
 
1816
 ac_must_keep_next=false
 
1817
 for ac_pass in 1 2
 
1818
 do
 
1819
@@ -1048,7 +1472,7 @@
 
1820
     -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
1821
     | -silent | --silent | --silen | --sile | --sil)
 
1822
       continue ;;
 
1823
-    *" "*|*"   "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
 
1824
+    *\'*)
 
1825
       ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
 
1826
     esac
 
1827
     case $ac_pass in
 
1828
@@ -1070,9 +1494,7 @@
 
1829
          -* ) ac_must_keep_next=true ;;
 
1830
        esac
 
1831
       fi
 
1832
-      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
 
1833
-      # Get rid of the leading space.
 
1834
-      ac_sep=" "
 
1835
+      ac_configure_args="$ac_configure_args '$ac_arg'"
 
1836
       ;;
 
1837
     esac
 
1838
   done
 
1839
@@ -1083,8 +1505,8 @@
 
1840
 # When interrupted or exit'd, cleanup temporary files, and complete
 
1841
 # config.log.  We remove comments because anyway the quotes in there
 
1842
 # would cause problems or look ugly.
 
1843
-# WARNING: Be sure not to use single quotes in there, as some shells,
 
1844
-# such as our DU 5.0 friend, will then `close' the trap.
 
1845
+# WARNING: Use '\'' to represent an apostrophe within the trap.
 
1846
+# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
 
1847
 trap 'exit_status=$?
 
1848
   # Save into config.log some information that might help in debugging.
 
1849
   {
 
1850
@@ -1097,20 +1519,34 @@
 
1851
 _ASBOX
 
1852
     echo
 
1853
     # The following way of writing the cache mishandles newlines in values,
 
1854
-{
 
1855
+(
 
1856
+  for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
 
1857
+    eval ac_val=\$$ac_var
 
1858
+    case $ac_val in #(
 
1859
+    *${as_nl}*)
 
1860
+      case $ac_var in #(
 
1861
+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
 
1862
+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
 
1863
+      esac
 
1864
+      case $ac_var in #(
 
1865
+      _ | IFS | as_nl) ;; #(
 
1866
+      *) $as_unset $ac_var ;;
 
1867
+      esac ;;
 
1868
+    esac
 
1869
+  done
 
1870
   (set) 2>&1 |
 
1871
-    case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
 
1872
-    *ac_space=\ *)
 
1873
+    case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
 
1874
+    *${as_nl}ac_space=\ *)
 
1875
       sed -n \
 
1876
-       "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
 
1877
-         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
 
1878
-      ;;
 
1879
+       "s/'\''/'\''\\\\'\'''\''/g;
 
1880
+         s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
 
1881
+      ;; #(
 
1882
     *)
 
1883
-      sed -n \
 
1884
-       "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
 
1885
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
1886
       ;;
 
1887
-    esac;
 
1888
-}
 
1889
+    esac |
 
1890
+    sort
 
1891
+)
 
1892
     echo
 
1893
 
 
1894
     cat <<\_ASBOX
 
1895
@@ -1121,22 +1557,28 @@
 
1896
     echo
 
1897
     for ac_var in $ac_subst_vars
 
1898
     do
 
1899
-      eval ac_val=$`echo $ac_var`
 
1900
-      echo "$ac_var='"'"'$ac_val'"'"'"
 
1901
+      eval ac_val=\$$ac_var
 
1902
+      case $ac_val in
 
1903
+      *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1904
+      esac
 
1905
+      echo "$ac_var='\''$ac_val'\''"
 
1906
     done | sort
 
1907
     echo
 
1908
 
 
1909
     if test -n "$ac_subst_files"; then
 
1910
       cat <<\_ASBOX
 
1911
-## ------------- ##
 
1912
-## Output files. ##
 
1913
-## ------------- ##
 
1914
+## ------------------- ##
 
1915
+## File substitutions. ##
 
1916
+## ------------------- ##
 
1917
 _ASBOX
 
1918
       echo
 
1919
       for ac_var in $ac_subst_files
 
1920
       do
 
1921
-       eval ac_val=$`echo $ac_var`
 
1922
-       echo "$ac_var='"'"'$ac_val'"'"'"
 
1923
+       eval ac_val=\$$ac_var
 
1924
+       case $ac_val in
 
1925
+       *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
 
1926
+       esac
 
1927
+       echo "$ac_var='\''$ac_val'\''"
 
1928
       done | sort
 
1929
       echo
 
1930
     fi
 
1931
@@ -1148,26 +1590,24 @@
 
1932
 ## ----------- ##
 
1933
 _ASBOX
 
1934
       echo
 
1935
-      sed "/^$/d" confdefs.h | sort
 
1936
+      cat confdefs.h
 
1937
       echo
 
1938
     fi
 
1939
     test "$ac_signal" != 0 &&
 
1940
       echo "$as_me: caught signal $ac_signal"
 
1941
     echo "$as_me: exit $exit_status"
 
1942
   } >&5
 
1943
-  rm -f core *.core &&
 
1944
-  rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
 
1945
+  rm -f core *.core core.conftest.* &&
 
1946
+    rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
 
1947
     exit $exit_status
 
1948
-     ' 0
 
1949
+' 0
 
1950
 for ac_signal in 1 2 13 15; do
 
1951
   trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
 
1952
 done
 
1953
 ac_signal=0
 
1954
 
 
1955
 # confdefs.h avoids OS command line length limits that DEFS can exceed.
 
1956
-rm -rf conftest* confdefs.h
 
1957
-# AIX cpp loses on an empty file, so make sure it contains at least a newline.
 
1958
-echo >confdefs.h
 
1959
+rm -f -r conftest* confdefs.h
 
1960
 
 
1961
 # Predefined preprocessor variables.
 
1962
 
 
1963
@@ -1198,14 +1638,17 @@
 
1964
 
 
1965
 # Let the site file select an alternate cache file if it wants to.
 
1966
 # Prefer explicitly selected file to automatically selected ones.
 
1967
-if test -z "$CONFIG_SITE"; then
 
1968
-  if test "x$prefix" != xNONE; then
 
1969
-    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
 
1970
-  else
 
1971
-    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
 
1972
-  fi
 
1973
+if test -n "$CONFIG_SITE"; then
 
1974
+  set x "$CONFIG_SITE"
 
1975
+elif test "x$prefix" != xNONE; then
 
1976
+  set x "$prefix/share/config.site" "$prefix/etc/config.site"
 
1977
+else
 
1978
+  set x "$ac_default_prefix/share/config.site" \
 
1979
+       "$ac_default_prefix/etc/config.site"
 
1980
 fi
 
1981
-for ac_site_file in $CONFIG_SITE; do
 
1982
+shift
 
1983
+for ac_site_file
 
1984
+do
 
1985
   if test -r "$ac_site_file"; then
 
1986
     { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
 
1987
 echo "$as_me: loading site script $ac_site_file" >&6;}
 
1988
@@ -1221,8 +1664,8 @@
 
1989
     { echo "$as_me:$LINENO: loading cache $cache_file" >&5
 
1990
 echo "$as_me: loading cache $cache_file" >&6;}
 
1991
     case $cache_file in
 
1992
-      [\\/]* | ?:[\\/]* ) . $cache_file;;
 
1993
-      *)                      . ./$cache_file;;
 
1994
+      [\\/]* | ?:[\\/]* ) . "$cache_file";;
 
1995
+      *)                      . "./$cache_file";;
 
1996
     esac
 
1997
   fi
 
1998
 else
 
1999
@@ -1234,12 +1677,11 @@
 
2000
 # Check that the precious variables saved in the cache have kept the same
 
2001
 # value.
 
2002
 ac_cache_corrupted=false
 
2003
-for ac_var in `(set) 2>&1 |
 
2004
-              sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
 
2005
+for ac_var in $ac_precious_vars; do
 
2006
   eval ac_old_set=\$ac_cv_env_${ac_var}_set
 
2007
   eval ac_new_set=\$ac_env_${ac_var}_set
 
2008
-  eval ac_old_val="\$ac_cv_env_${ac_var}_value"
 
2009
-  eval ac_new_val="\$ac_env_${ac_var}_value"
 
2010
+  eval ac_old_val=\$ac_cv_env_${ac_var}_value
 
2011
+  eval ac_new_val=\$ac_env_${ac_var}_value
 
2012
   case $ac_old_set,$ac_new_set in
 
2013
     set,)
 
2014
       { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 
2015
@@ -1264,8 +1706,7 @@
 
2016
   # Pass precious variables to config.status.
 
2017
   if test "$ac_new_set" = set; then
 
2018
     case $ac_new_val in
 
2019
-    *" "*|*"   "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
 
2020
-      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
2021
+    *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
 
2022
     *) ac_arg=$ac_var=$ac_new_val ;;
 
2023
     esac
 
2024
     case " $ac_configure_args " in
 
2025
@@ -1282,12 +1723,6 @@
 
2026
    { (exit 1); exit 1; }; }
 
2027
 fi
 
2028
 
 
2029
-ac_ext=c
 
2030
-ac_cpp='$CPP $CPPFLAGS'
 
2031
-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
2032
-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
2033
-ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
2034
-
 
2035
 
 
2036
 
 
2037
 
 
2038
@@ -1312,107 +1747,162 @@
 
2039
 
 
2040
 
 
2041
 
 
2042
+ac_ext=c
 
2043
+ac_cpp='$CPP $CPPFLAGS'
 
2044
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
2045
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
2046
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
2047
 
 
2048
 
 
2049
 ac_aux_dir=
 
2050
-for ac_dir in config $srcdir/config; do
 
2051
-  if test -f $ac_dir/install-sh; then
 
2052
+for ac_dir in config "$srcdir"/config; do
 
2053
+  if test -f "$ac_dir/install-sh"; then
 
2054
     ac_aux_dir=$ac_dir
 
2055
     ac_install_sh="$ac_aux_dir/install-sh -c"
 
2056
     break
 
2057
-  elif test -f $ac_dir/install.sh; then
 
2058
+  elif test -f "$ac_dir/install.sh"; then
 
2059
     ac_aux_dir=$ac_dir
 
2060
     ac_install_sh="$ac_aux_dir/install.sh -c"
 
2061
     break
 
2062
-  elif test -f $ac_dir/shtool; then
 
2063
+  elif test -f "$ac_dir/shtool"; then
 
2064
     ac_aux_dir=$ac_dir
 
2065
     ac_install_sh="$ac_aux_dir/shtool install -c"
 
2066
     break
 
2067
   fi
 
2068
 done
 
2069
 if test -z "$ac_aux_dir"; then
 
2070
-  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config $srcdir/config" >&5
 
2071
-echo "$as_me: error: cannot find install-sh or install.sh in config $srcdir/config" >&2;}
 
2072
+  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&5
 
2073
+echo "$as_me: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&2;}
 
2074
    { (exit 1); exit 1; }; }
 
2075
 fi
 
2076
-ac_config_guess="$SHELL $ac_aux_dir/config.guess"
 
2077
-ac_config_sub="$SHELL $ac_aux_dir/config.sub"
 
2078
-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
 
2079
+
 
2080
+# These three variables are undocumented and unsupported,
 
2081
+# and are intended to be withdrawn in a future Autoconf release.
 
2082
+# They can cause serious problems if a builder's source tree is in a directory
 
2083
+# whose full name contains unusual characters.
 
2084
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"  # Please don't use this var.
 
2085
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"  # Please don't use this var.
 
2086
+ac_configure="$SHELL $ac_aux_dir/configure"  # Please don't use this var.
 
2087
+
 
2088
 
 
2089
 # Make sure we can run config.sub.
 
2090
-$ac_config_sub sun4 >/dev/null 2>&1 ||
 
2091
-  { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
 
2092
-echo "$as_me: error: cannot run $ac_config_sub" >&2;}
 
2093
+$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
 
2094
+  { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
 
2095
+echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
 
2096
    { (exit 1); exit 1; }; }
 
2097
 
 
2098
-echo "$as_me:$LINENO: checking build system type" >&5
 
2099
-echo $ECHO_N "checking build system type... $ECHO_C" >&6
 
2100
+{ echo "$as_me:$LINENO: checking build system type" >&5
 
2101
+echo $ECHO_N "checking build system type... $ECHO_C" >&6; }
 
2102
 if test "${ac_cv_build+set}" = set; then
 
2103
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2104
 else
 
2105
-  ac_cv_build_alias=$build_alias
 
2106
-test -z "$ac_cv_build_alias" &&
 
2107
-  ac_cv_build_alias=`$ac_config_guess`
 
2108
-test -z "$ac_cv_build_alias" &&
 
2109
+  ac_build_alias=$build_alias
 
2110
+test "x$ac_build_alias" = x &&
 
2111
+  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
 
2112
+test "x$ac_build_alias" = x &&
 
2113
   { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
 
2114
 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
 
2115
    { (exit 1); exit 1; }; }
 
2116
-ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
 
2117
-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
 
2118
-echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
 
2119
+ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
 
2120
+  { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
 
2121
+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
 
2122
    { (exit 1); exit 1; }; }
 
2123
 
 
2124
 fi
 
2125
-echo "$as_me:$LINENO: result: $ac_cv_build" >&5
 
2126
-echo "${ECHO_T}$ac_cv_build" >&6
 
2127
+{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5
 
2128
+echo "${ECHO_T}$ac_cv_build" >&6; }
 
2129
+case $ac_cv_build in
 
2130
+*-*-*) ;;
 
2131
+*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
 
2132
+echo "$as_me: error: invalid value of canonical build" >&2;}
 
2133
+   { (exit 1); exit 1; }; };;
 
2134
+esac
 
2135
 build=$ac_cv_build
 
2136
-build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 
2137
-build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 
2138
-build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
2139
+ac_save_IFS=$IFS; IFS='-'
 
2140
+set x $ac_cv_build
 
2141
+shift
 
2142
+build_cpu=$1
 
2143
+build_vendor=$2
 
2144
+shift; shift
 
2145
+# Remember, the first character of IFS is used to create $*,
 
2146
+# except with old shells:
 
2147
+build_os=$*
 
2148
+IFS=$ac_save_IFS
 
2149
+case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
 
2150
 
 
2151
 
 
2152
-echo "$as_me:$LINENO: checking host system type" >&5
 
2153
-echo $ECHO_N "checking host system type... $ECHO_C" >&6
 
2154
+{ echo "$as_me:$LINENO: checking host system type" >&5
 
2155
+echo $ECHO_N "checking host system type... $ECHO_C" >&6; }
 
2156
 if test "${ac_cv_host+set}" = set; then
 
2157
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2158
 else
 
2159
-  ac_cv_host_alias=$host_alias
 
2160
-test -z "$ac_cv_host_alias" &&
 
2161
-  ac_cv_host_alias=$ac_cv_build_alias
 
2162
-ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
 
2163
-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
 
2164
-echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
 
2165
+  if test "x$host_alias" = x; then
 
2166
+  ac_cv_host=$ac_cv_build
 
2167
+else
 
2168
+  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
 
2169
+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
 
2170
+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
 
2171
    { (exit 1); exit 1; }; }
 
2172
+fi
 
2173
 
 
2174
 fi
 
2175
-echo "$as_me:$LINENO: result: $ac_cv_host" >&5
 
2176
-echo "${ECHO_T}$ac_cv_host" >&6
 
2177
+{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5
 
2178
+echo "${ECHO_T}$ac_cv_host" >&6; }
 
2179
+case $ac_cv_host in
 
2180
+*-*-*) ;;
 
2181
+*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
 
2182
+echo "$as_me: error: invalid value of canonical host" >&2;}
 
2183
+   { (exit 1); exit 1; }; };;
 
2184
+esac
 
2185
 host=$ac_cv_host
 
2186
-host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 
2187
-host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 
2188
-host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
2189
+ac_save_IFS=$IFS; IFS='-'
 
2190
+set x $ac_cv_host
 
2191
+shift
 
2192
+host_cpu=$1
 
2193
+host_vendor=$2
 
2194
+shift; shift
 
2195
+# Remember, the first character of IFS is used to create $*,
 
2196
+# except with old shells:
 
2197
+host_os=$*
 
2198
+IFS=$ac_save_IFS
 
2199
+case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
 
2200
 
 
2201
 
 
2202
-echo "$as_me:$LINENO: checking target system type" >&5
 
2203
-echo $ECHO_N "checking target system type... $ECHO_C" >&6
 
2204
+{ echo "$as_me:$LINENO: checking target system type" >&5
 
2205
+echo $ECHO_N "checking target system type... $ECHO_C" >&6; }
 
2206
 if test "${ac_cv_target+set}" = set; then
 
2207
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2208
 else
 
2209
-  ac_cv_target_alias=$target_alias
 
2210
-test "x$ac_cv_target_alias" = "x" &&
 
2211
-  ac_cv_target_alias=$ac_cv_host_alias
 
2212
-ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
 
2213
-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_target_alias failed" >&5
 
2214
-echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
 
2215
+  if test "x$target_alias" = x; then
 
2216
+  ac_cv_target=$ac_cv_host
 
2217
+else
 
2218
+  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
 
2219
+    { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&5
 
2220
+echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $target_alias failed" >&2;}
 
2221
    { (exit 1); exit 1; }; }
 
2222
+fi
 
2223
 
 
2224
 fi
 
2225
-echo "$as_me:$LINENO: result: $ac_cv_target" >&5
 
2226
-echo "${ECHO_T}$ac_cv_target" >&6
 
2227
+{ echo "$as_me:$LINENO: result: $ac_cv_target" >&5
 
2228
+echo "${ECHO_T}$ac_cv_target" >&6; }
 
2229
+case $ac_cv_target in
 
2230
+*-*-*) ;;
 
2231
+*) { { echo "$as_me:$LINENO: error: invalid value of canonical target" >&5
 
2232
+echo "$as_me: error: invalid value of canonical target" >&2;}
 
2233
+   { (exit 1); exit 1; }; };;
 
2234
+esac
 
2235
 target=$ac_cv_target
 
2236
-target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 
2237
-target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 
2238
-target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
2239
+ac_save_IFS=$IFS; IFS='-'
 
2240
+set x $ac_cv_target
 
2241
+shift
 
2242
+target_cpu=$1
 
2243
+target_vendor=$2
 
2244
+shift; shift
 
2245
+# Remember, the first character of IFS is used to create $*,
 
2246
+# except with old shells:
 
2247
+target_os=$*
 
2248
+IFS=$ac_save_IFS
 
2249
+case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
 
2250
 
 
2251
 
 
2252
 # The aliases save the names the user supplied, while $host etc.
 
2253
@@ -1441,8 +1931,8 @@
 
2254
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
2255
 # OS/2's system install, which has a completely different semantic
 
2256
 # ./install, which can be erroneously created by make from ./install.sh.
 
2257
-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
2258
-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
 
2259
+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
2260
+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
 
2261
 if test -z "$INSTALL"; then
 
2262
 if test "${ac_cv_path_install+set}" = set; then
 
2263
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2264
@@ -1464,7 +1954,7 @@
 
2265
     # by default.
 
2266
     for ac_prog in ginstall scoinst install; do
 
2267
       for ac_exec_ext in '' $ac_executable_extensions; do
 
2268
-       if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
 
2269
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
2270
          if test $ac_prog = install &&
 
2271
            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
2272
            # AIX install.  It has an incompatible calling convention.
 
2273
@@ -1483,21 +1973,22 @@
 
2274
     ;;
 
2275
 esac
 
2276
 done
 
2277
+IFS=$as_save_IFS
 
2278
 
 
2279
 
 
2280
 fi
 
2281
   if test "${ac_cv_path_install+set}" = set; then
 
2282
     INSTALL=$ac_cv_path_install
 
2283
   else
 
2284
-    # As a last resort, use the slow shell script.  We don't cache a
 
2285
-    # path for INSTALL within a source directory, because that will
 
2286
+    # As a last resort, use the slow shell script.  Don't cache a
 
2287
+    # value for INSTALL within a source directory, because that will
 
2288
     # break other packages using the cache if that directory is
 
2289
-    # removed, or if the path is relative.
 
2290
+    # removed, or if the value is a relative name.
 
2291
     INSTALL=$ac_install_sh
 
2292
   fi
 
2293
 fi
 
2294
-echo "$as_me:$LINENO: result: $INSTALL" >&5
 
2295
-echo "${ECHO_T}$INSTALL" >&6
 
2296
+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
 
2297
+echo "${ECHO_T}$INSTALL" >&6; }
 
2298
 
 
2299
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
2300
 # It thinks the first close brace ends the variable substitution.
 
2301
@@ -1507,8 +1998,8 @@
 
2302
 
 
2303
 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
 
2304
 
 
2305
-echo "$as_me:$LINENO: checking whether build environment is sane" >&5
 
2306
-echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
 
2307
+{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5
 
2308
+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }
 
2309
 # Just in case
 
2310
 sleep 1
 
2311
 echo timestamp > conftest.file
 
2312
@@ -1550,20 +2041,20 @@
 
2313
 Check your system clock" >&2;}
 
2314
    { (exit 1); exit 1; }; }
 
2315
 fi
 
2316
-echo "$as_me:$LINENO: result: yes" >&5
 
2317
-echo "${ECHO_T}yes" >&6
 
2318
+{ echo "$as_me:$LINENO: result: yes" >&5
 
2319
+echo "${ECHO_T}yes" >&6; }
 
2320
 test "$program_prefix" != NONE &&
 
2321
-  program_transform_name="s,^,$program_prefix,;$program_transform_name"
 
2322
+  program_transform_name="s&^&$program_prefix&;$program_transform_name"
 
2323
 # Use a double $ so make ignores it.
 
2324
 test "$program_suffix" != NONE &&
 
2325
-  program_transform_name="s,\$,$program_suffix,;$program_transform_name"
 
2326
+  program_transform_name="s&\$&$program_suffix&;$program_transform_name"
 
2327
 # Double any \ or $.  echo might interpret backslashes.
 
2328
 # By default was `s,x,x', remove it if useless.
 
2329
 cat <<\_ACEOF >conftest.sed
 
2330
 s/[\\$]/&&/g;s/;s,x,x,$//
 
2331
 _ACEOF
 
2332
 program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
 
2333
-rm conftest.sed
 
2334
+rm -f conftest.sed
 
2335
 
 
2336
 # expand $ac_aux_dir to an absolute path
 
2337
 am_aux_dir=`cd $ac_aux_dir && pwd`
 
2338
@@ -1615,8 +2106,8 @@
 
2339
 do
 
2340
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
2341
 set dummy $ac_prog; ac_word=$2
 
2342
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2343
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2344
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2345
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2346
 if test "${ac_cv_prog_AWK+set}" = set; then
 
2347
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2348
 else
 
2349
@@ -1629,54 +2120,57 @@
 
2350
   IFS=$as_save_IFS
 
2351
   test -z "$as_dir" && as_dir=.
 
2352
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2353
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2354
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2355
     ac_cv_prog_AWK="$ac_prog"
 
2356
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2357
     break 2
 
2358
   fi
 
2359
 done
 
2360
 done
 
2361
+IFS=$as_save_IFS
 
2362
 
 
2363
 fi
 
2364
 fi
 
2365
 AWK=$ac_cv_prog_AWK
 
2366
 if test -n "$AWK"; then
 
2367
-  echo "$as_me:$LINENO: result: $AWK" >&5
 
2368
-echo "${ECHO_T}$AWK" >&6
 
2369
+  { echo "$as_me:$LINENO: result: $AWK" >&5
 
2370
+echo "${ECHO_T}$AWK" >&6; }
 
2371
 else
 
2372
-  echo "$as_me:$LINENO: result: no" >&5
 
2373
-echo "${ECHO_T}no" >&6
 
2374
+  { echo "$as_me:$LINENO: result: no" >&5
 
2375
+echo "${ECHO_T}no" >&6; }
 
2376
 fi
 
2377
 
 
2378
+
 
2379
   test -n "$AWK" && break
 
2380
 done
 
2381
 
 
2382
-echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
2383
-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
 
2384
-set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
 
2385
-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
 
2386
+{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
 
2387
+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; }
 
2388
+set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
 
2389
+if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
 
2390
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2391
 else
 
2392
   cat >conftest.make <<\_ACEOF
 
2393
+SHELL = /bin/sh
 
2394
 all:
 
2395
-       @echo 'ac_maketemp="$(MAKE)"'
 
2396
+       @echo '@@@%%%=$(MAKE)=@@@%%%'
 
2397
 _ACEOF
 
2398
 # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
 
2399
-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
 
2400
-if test -n "$ac_maketemp"; then
 
2401
-  eval ac_cv_prog_make_${ac_make}_set=yes
 
2402
-else
 
2403
-  eval ac_cv_prog_make_${ac_make}_set=no
 
2404
-fi
 
2405
+case `${MAKE-make} -f conftest.make 2>/dev/null` in
 
2406
+  *@@@%%%=?*=@@@%%%*)
 
2407
+    eval ac_cv_prog_make_${ac_make}_set=yes;;
 
2408
+  *)
 
2409
+    eval ac_cv_prog_make_${ac_make}_set=no;;
 
2410
+esac
 
2411
 rm -f conftest.make
 
2412
 fi
 
2413
-if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
 
2414
-  echo "$as_me:$LINENO: result: yes" >&5
 
2415
-echo "${ECHO_T}yes" >&6
 
2416
+if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
 
2417
+  { echo "$as_me:$LINENO: result: yes" >&5
 
2418
+echo "${ECHO_T}yes" >&6; }
 
2419
   SET_MAKE=
 
2420
 else
 
2421
-  echo "$as_me:$LINENO: result: no" >&5
 
2422
-echo "${ECHO_T}no" >&6
 
2423
+  { echo "$as_me:$LINENO: result: no" >&5
 
2424
+echo "${ECHO_T}no" >&6; }
 
2425
   SET_MAKE="MAKE=${MAKE-make}"
 
2426
 fi
 
2427
 
 
2428
@@ -1738,8 +2232,8 @@
 
2429
   if test -n "$ac_tool_prefix"; then
 
2430
   # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
 
2431
 set dummy ${ac_tool_prefix}strip; ac_word=$2
 
2432
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2433
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2434
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2435
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2436
 if test "${ac_cv_prog_STRIP+set}" = set; then
 
2437
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2438
 else
 
2439
@@ -1752,32 +2246,34 @@
 
2440
   IFS=$as_save_IFS
 
2441
   test -z "$as_dir" && as_dir=.
 
2442
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2443
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2444
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2445
     ac_cv_prog_STRIP="${ac_tool_prefix}strip"
 
2446
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2447
     break 2
 
2448
   fi
 
2449
 done
 
2450
 done
 
2451
+IFS=$as_save_IFS
 
2452
 
 
2453
 fi
 
2454
 fi
 
2455
 STRIP=$ac_cv_prog_STRIP
 
2456
 if test -n "$STRIP"; then
 
2457
-  echo "$as_me:$LINENO: result: $STRIP" >&5
 
2458
-echo "${ECHO_T}$STRIP" >&6
 
2459
+  { echo "$as_me:$LINENO: result: $STRIP" >&5
 
2460
+echo "${ECHO_T}$STRIP" >&6; }
 
2461
 else
 
2462
-  echo "$as_me:$LINENO: result: no" >&5
 
2463
-echo "${ECHO_T}no" >&6
 
2464
+  { echo "$as_me:$LINENO: result: no" >&5
 
2465
+echo "${ECHO_T}no" >&6; }
 
2466
 fi
 
2467
 
 
2468
+
 
2469
 fi
 
2470
 if test -z "$ac_cv_prog_STRIP"; then
 
2471
   ac_ct_STRIP=$STRIP
 
2472
   # Extract the first word of "strip", so it can be a program name with args.
 
2473
 set dummy strip; ac_word=$2
 
2474
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2475
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2476
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2477
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2478
 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
 
2479
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2480
 else
 
2481
@@ -1790,27 +2286,41 @@
 
2482
   IFS=$as_save_IFS
 
2483
   test -z "$as_dir" && as_dir=.
 
2484
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2485
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2486
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2487
     ac_cv_prog_ac_ct_STRIP="strip"
 
2488
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2489
     break 2
 
2490
   fi
 
2491
 done
 
2492
 done
 
2493
+IFS=$as_save_IFS
 
2494
 
 
2495
-  test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
 
2496
 fi
 
2497
 fi
 
2498
 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
 
2499
 if test -n "$ac_ct_STRIP"; then
 
2500
-  echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 
2501
-echo "${ECHO_T}$ac_ct_STRIP" >&6
 
2502
+  { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
 
2503
+echo "${ECHO_T}$ac_ct_STRIP" >&6; }
 
2504
 else
 
2505
-  echo "$as_me:$LINENO: result: no" >&5
 
2506
-echo "${ECHO_T}no" >&6
 
2507
+  { echo "$as_me:$LINENO: result: no" >&5
 
2508
+echo "${ECHO_T}no" >&6; }
 
2509
 fi
 
2510
 
 
2511
-  STRIP=$ac_ct_STRIP
 
2512
+  if test "x$ac_ct_STRIP" = x; then
 
2513
+    STRIP=":"
 
2514
+  else
 
2515
+    case $cross_compiling:$ac_tool_warned in
 
2516
+yes:)
 
2517
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
2518
+whose name does not start with the host triplet.  If you think this
 
2519
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
2520
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
2521
+whose name does not start with the host triplet.  If you think this
 
2522
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
2523
+ac_tool_warned=yes ;;
 
2524
+esac
 
2525
+    STRIP=$ac_ct_STRIP
 
2526
+  fi
 
2527
 else
 
2528
   STRIP="$ac_cv_prog_STRIP"
 
2529
 fi
 
2530
@@ -1830,13 +2340,13 @@
 
2531
 
 
2532
 
 
2533
 
 
2534
-          ac_config_headers="$ac_config_headers src/config.h"
 
2535
+ac_config_headers="$ac_config_headers src/config.h"
 
2536
 
 
2537
 
 
2538
 ## Checks for host information.
 
2539
 DEPDIR="${am__leading_dot}deps"
 
2540
 
 
2541
-          ac_config_commands="$ac_config_commands depfiles"
 
2542
+ac_config_commands="$ac_config_commands depfiles"
 
2543
 
 
2544
 
 
2545
 am_make=${MAKE-make}
 
2546
@@ -1846,8 +2356,8 @@
 
2547
 .PHONY: am__doit
 
2548
 END
 
2549
 # If we don't find an include directive, just comment out the code.
 
2550
-echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
 
2551
-echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6
 
2552
+{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
 
2553
+echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }
 
2554
 am__include="#"
 
2555
 am__quote=
 
2556
 _am_result=none
 
2557
@@ -1874,15 +2384,15 @@
 
2558
 fi
 
2559
 
 
2560
 
 
2561
-echo "$as_me:$LINENO: result: $_am_result" >&5
 
2562
-echo "${ECHO_T}$_am_result" >&6
 
2563
+{ echo "$as_me:$LINENO: result: $_am_result" >&5
 
2564
+echo "${ECHO_T}$_am_result" >&6; }
 
2565
 rm -f confinc confmf
 
2566
 
 
2567
-# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given.
 
2568
+# Check whether --enable-dependency-tracking was given.
 
2569
 if test "${enable_dependency_tracking+set}" = set; then
 
2570
-  enableval="$enable_dependency_tracking"
 
2571
+  enableval=$enable_dependency_tracking;
 
2572
+fi
 
2573
 
 
2574
-fi;
 
2575
 if test "x$enable_dependency_tracking" != xno; then
 
2576
   am_depcomp="$ac_aux_dir/depcomp"
 
2577
   AMDEPBACKSLASH='\'
 
2578
@@ -1907,8 +2417,8 @@
 
2579
 if test -n "$ac_tool_prefix"; then
 
2580
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 
2581
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
2582
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2583
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2584
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2585
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2586
 if test "${ac_cv_prog_CC+set}" = set; then
 
2587
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2588
 else
 
2589
@@ -1921,32 +2431,34 @@
 
2590
   IFS=$as_save_IFS
 
2591
   test -z "$as_dir" && as_dir=.
 
2592
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2593
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2594
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2595
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
2596
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2597
     break 2
 
2598
   fi
 
2599
 done
 
2600
 done
 
2601
+IFS=$as_save_IFS
 
2602
 
 
2603
 fi
 
2604
 fi
 
2605
 CC=$ac_cv_prog_CC
 
2606
 if test -n "$CC"; then
 
2607
-  echo "$as_me:$LINENO: result: $CC" >&5
 
2608
-echo "${ECHO_T}$CC" >&6
 
2609
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
2610
+echo "${ECHO_T}$CC" >&6; }
 
2611
 else
 
2612
-  echo "$as_me:$LINENO: result: no" >&5
 
2613
-echo "${ECHO_T}no" >&6
 
2614
+  { echo "$as_me:$LINENO: result: no" >&5
 
2615
+echo "${ECHO_T}no" >&6; }
 
2616
 fi
 
2617
 
 
2618
+
 
2619
 fi
 
2620
 if test -z "$ac_cv_prog_CC"; then
 
2621
   ac_ct_CC=$CC
 
2622
   # Extract the first word of "gcc", so it can be a program name with args.
 
2623
 set dummy gcc; ac_word=$2
 
2624
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2625
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2626
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2627
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2628
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
2629
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2630
 else
 
2631
@@ -1959,36 +2471,51 @@
 
2632
   IFS=$as_save_IFS
 
2633
   test -z "$as_dir" && as_dir=.
 
2634
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2635
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2636
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2637
     ac_cv_prog_ac_ct_CC="gcc"
 
2638
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2639
     break 2
 
2640
   fi
 
2641
 done
 
2642
 done
 
2643
+IFS=$as_save_IFS
 
2644
 
 
2645
 fi
 
2646
 fi
 
2647
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
2648
 if test -n "$ac_ct_CC"; then
 
2649
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
2650
-echo "${ECHO_T}$ac_ct_CC" >&6
 
2651
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
2652
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
2653
 else
 
2654
-  echo "$as_me:$LINENO: result: no" >&5
 
2655
-echo "${ECHO_T}no" >&6
 
2656
+  { echo "$as_me:$LINENO: result: no" >&5
 
2657
+echo "${ECHO_T}no" >&6; }
 
2658
 fi
 
2659
 
 
2660
-  CC=$ac_ct_CC
 
2661
+  if test "x$ac_ct_CC" = x; then
 
2662
+    CC=""
 
2663
+  else
 
2664
+    case $cross_compiling:$ac_tool_warned in
 
2665
+yes:)
 
2666
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
2667
+whose name does not start with the host triplet.  If you think this
 
2668
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
2669
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
2670
+whose name does not start with the host triplet.  If you think this
 
2671
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
2672
+ac_tool_warned=yes ;;
 
2673
+esac
 
2674
+    CC=$ac_ct_CC
 
2675
+  fi
 
2676
 else
 
2677
   CC="$ac_cv_prog_CC"
 
2678
 fi
 
2679
 
 
2680
 if test -z "$CC"; then
 
2681
-  if test -n "$ac_tool_prefix"; then
 
2682
-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
2683
+          if test -n "$ac_tool_prefix"; then
 
2684
+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
2685
 set dummy ${ac_tool_prefix}cc; ac_word=$2
 
2686
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2687
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2688
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2689
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2690
 if test "${ac_cv_prog_CC+set}" = set; then
 
2691
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2692
 else
 
2693
@@ -2001,74 +2528,34 @@
 
2694
   IFS=$as_save_IFS
 
2695
   test -z "$as_dir" && as_dir=.
 
2696
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2697
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2698
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2699
     ac_cv_prog_CC="${ac_tool_prefix}cc"
 
2700
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2701
     break 2
 
2702
   fi
 
2703
 done
 
2704
 done
 
2705
+IFS=$as_save_IFS
 
2706
 
 
2707
 fi
 
2708
 fi
 
2709
 CC=$ac_cv_prog_CC
 
2710
 if test -n "$CC"; then
 
2711
-  echo "$as_me:$LINENO: result: $CC" >&5
 
2712
-echo "${ECHO_T}$CC" >&6
 
2713
-else
 
2714
-  echo "$as_me:$LINENO: result: no" >&5
 
2715
-echo "${ECHO_T}no" >&6
 
2716
-fi
 
2717
-
 
2718
-fi
 
2719
-if test -z "$ac_cv_prog_CC"; then
 
2720
-  ac_ct_CC=$CC
 
2721
-  # Extract the first word of "cc", so it can be a program name with args.
 
2722
-set dummy cc; ac_word=$2
 
2723
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2724
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2725
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
2726
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
2727
-else
 
2728
-  if test -n "$ac_ct_CC"; then
 
2729
-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
2730
-else
 
2731
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
2732
-for as_dir in $PATH
 
2733
-do
 
2734
-  IFS=$as_save_IFS
 
2735
-  test -z "$as_dir" && as_dir=.
 
2736
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
2737
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2738
-    ac_cv_prog_ac_ct_CC="cc"
 
2739
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2740
-    break 2
 
2741
-  fi
 
2742
-done
 
2743
-done
 
2744
-
 
2745
-fi
 
2746
-fi
 
2747
-ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
2748
-if test -n "$ac_ct_CC"; then
 
2749
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
2750
-echo "${ECHO_T}$ac_ct_CC" >&6
 
2751
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
2752
+echo "${ECHO_T}$CC" >&6; }
 
2753
 else
 
2754
-  echo "$as_me:$LINENO: result: no" >&5
 
2755
-echo "${ECHO_T}no" >&6
 
2756
+  { echo "$as_me:$LINENO: result: no" >&5
 
2757
+echo "${ECHO_T}no" >&6; }
 
2758
 fi
 
2759
 
 
2760
-  CC=$ac_ct_CC
 
2761
-else
 
2762
-  CC="$ac_cv_prog_CC"
 
2763
-fi
 
2764
 
 
2765
+  fi
 
2766
 fi
 
2767
 if test -z "$CC"; then
 
2768
   # Extract the first word of "cc", so it can be a program name with args.
 
2769
 set dummy cc; ac_word=$2
 
2770
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2771
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2772
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2773
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2774
 if test "${ac_cv_prog_CC+set}" = set; then
 
2775
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2776
 else
 
2777
@@ -2082,7 +2569,7 @@
 
2778
   IFS=$as_save_IFS
 
2779
   test -z "$as_dir" && as_dir=.
 
2780
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2781
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2782
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2783
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 
2784
        ac_prog_rejected=yes
 
2785
        continue
 
2786
@@ -2093,6 +2580,7 @@
 
2787
   fi
 
2788
 done
 
2789
 done
 
2790
+IFS=$as_save_IFS
 
2791
 
 
2792
 if test $ac_prog_rejected = yes; then
 
2793
   # We found a bogon in the path, so make sure we never use it.
 
2794
@@ -2110,22 +2598,23 @@
 
2795
 fi
 
2796
 CC=$ac_cv_prog_CC
 
2797
 if test -n "$CC"; then
 
2798
-  echo "$as_me:$LINENO: result: $CC" >&5
 
2799
-echo "${ECHO_T}$CC" >&6
 
2800
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
2801
+echo "${ECHO_T}$CC" >&6; }
 
2802
 else
 
2803
-  echo "$as_me:$LINENO: result: no" >&5
 
2804
-echo "${ECHO_T}no" >&6
 
2805
+  { echo "$as_me:$LINENO: result: no" >&5
 
2806
+echo "${ECHO_T}no" >&6; }
 
2807
 fi
 
2808
 
 
2809
+
 
2810
 fi
 
2811
 if test -z "$CC"; then
 
2812
   if test -n "$ac_tool_prefix"; then
 
2813
-  for ac_prog in cl
 
2814
+  for ac_prog in cl.exe
 
2815
   do
 
2816
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
2817
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
2818
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2819
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2820
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2821
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2822
 if test "${ac_cv_prog_CC+set}" = set; then
 
2823
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2824
 else
 
2825
@@ -2138,36 +2627,38 @@
 
2826
   IFS=$as_save_IFS
 
2827
   test -z "$as_dir" && as_dir=.
 
2828
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2829
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2830
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2831
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
2832
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2833
     break 2
 
2834
   fi
 
2835
 done
 
2836
 done
 
2837
+IFS=$as_save_IFS
 
2838
 
 
2839
 fi
 
2840
 fi
 
2841
 CC=$ac_cv_prog_CC
 
2842
 if test -n "$CC"; then
 
2843
-  echo "$as_me:$LINENO: result: $CC" >&5
 
2844
-echo "${ECHO_T}$CC" >&6
 
2845
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
2846
+echo "${ECHO_T}$CC" >&6; }
 
2847
 else
 
2848
-  echo "$as_me:$LINENO: result: no" >&5
 
2849
-echo "${ECHO_T}no" >&6
 
2850
+  { echo "$as_me:$LINENO: result: no" >&5
 
2851
+echo "${ECHO_T}no" >&6; }
 
2852
 fi
 
2853
 
 
2854
+
 
2855
     test -n "$CC" && break
 
2856
   done
 
2857
 fi
 
2858
 if test -z "$CC"; then
 
2859
   ac_ct_CC=$CC
 
2860
-  for ac_prog in cl
 
2861
+  for ac_prog in cl.exe
 
2862
 do
 
2863
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
2864
 set dummy $ac_prog; ac_word=$2
 
2865
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2866
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
2867
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
2868
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
2869
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
2870
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
2871
 else
 
2872
@@ -2180,29 +2671,45 @@
 
2873
   IFS=$as_save_IFS
 
2874
   test -z "$as_dir" && as_dir=.
 
2875
   for ac_exec_ext in '' $ac_executable_extensions; do
 
2876
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
2877
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
2878
     ac_cv_prog_ac_ct_CC="$ac_prog"
 
2879
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
2880
     break 2
 
2881
   fi
 
2882
 done
 
2883
 done
 
2884
+IFS=$as_save_IFS
 
2885
 
 
2886
 fi
 
2887
 fi
 
2888
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
2889
 if test -n "$ac_ct_CC"; then
 
2890
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
2891
-echo "${ECHO_T}$ac_ct_CC" >&6
 
2892
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
2893
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
2894
 else
 
2895
-  echo "$as_me:$LINENO: result: no" >&5
 
2896
-echo "${ECHO_T}no" >&6
 
2897
+  { echo "$as_me:$LINENO: result: no" >&5
 
2898
+echo "${ECHO_T}no" >&6; }
 
2899
 fi
 
2900
 
 
2901
+
 
2902
   test -n "$ac_ct_CC" && break
 
2903
 done
 
2904
 
 
2905
-  CC=$ac_ct_CC
 
2906
+  if test "x$ac_ct_CC" = x; then
 
2907
+    CC=""
 
2908
+  else
 
2909
+    case $cross_compiling:$ac_tool_warned in
 
2910
+yes:)
 
2911
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
2912
+whose name does not start with the host triplet.  If you think this
 
2913
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
2914
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
2915
+whose name does not start with the host triplet.  If you think this
 
2916
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
2917
+ac_tool_warned=yes ;;
 
2918
+esac
 
2919
+    CC=$ac_ct_CC
 
2920
+  fi
 
2921
 fi
 
2922
 
 
2923
 fi
 
2924
@@ -2215,21 +2722,35 @@
 
2925
    { (exit 1); exit 1; }; }
 
2926
 
 
2927
 # Provide some information about the compiler.
 
2928
-echo "$as_me:$LINENO:" \
 
2929
-     "checking for C compiler version" >&5
 
2930
+echo "$as_me:$LINENO: checking for C compiler version" >&5
 
2931
 ac_compiler=`set X $ac_compile; echo $2`
 
2932
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
 
2933
-  (eval $ac_compiler --version </dev/null >&5) 2>&5
 
2934
+{ (ac_try="$ac_compiler --version >&5"
 
2935
+case "(($ac_try" in
 
2936
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2937
+  *) ac_try_echo=$ac_try;;
 
2938
+esac
 
2939
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2940
+  (eval "$ac_compiler --version >&5") 2>&5
 
2941
   ac_status=$?
 
2942
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2943
   (exit $ac_status); }
 
2944
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
 
2945
-  (eval $ac_compiler -v </dev/null >&5) 2>&5
 
2946
+{ (ac_try="$ac_compiler -v >&5"
 
2947
+case "(($ac_try" in
 
2948
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2949
+  *) ac_try_echo=$ac_try;;
 
2950
+esac
 
2951
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2952
+  (eval "$ac_compiler -v >&5") 2>&5
 
2953
   ac_status=$?
 
2954
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2955
   (exit $ac_status); }
 
2956
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
 
2957
-  (eval $ac_compiler -V </dev/null >&5) 2>&5
 
2958
+{ (ac_try="$ac_compiler -V >&5"
 
2959
+case "(($ac_try" in
 
2960
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
2961
+  *) ac_try_echo=$ac_try;;
 
2962
+esac
 
2963
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
2964
+  (eval "$ac_compiler -V >&5") 2>&5
 
2965
   ac_status=$?
 
2966
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
2967
   (exit $ac_status); }
 
2968
@@ -2254,47 +2775,77 @@
 
2969
 # Try to create an executable without -o first, disregard a.out.
 
2970
 # It will help us diagnose broken compilers, and finding out an intuition
 
2971
 # of exeext.
 
2972
-echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
 
2973
-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
 
2974
+{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
 
2975
+echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; }
 
2976
 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
 
2977
-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
 
2978
-  (eval $ac_link_default) 2>&5
 
2979
+#
 
2980
+# List of possible output files, starting from the most likely.
 
2981
+# The algorithm is not robust to junk in `.', hence go to wildcards (a.*)
 
2982
+# only as a last resort.  b.out is created by i960 compilers.
 
2983
+ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
 
2984
+#
 
2985
+# The IRIX 6 linker writes into existing files which may not be
 
2986
+# executable, retaining their permissions.  Remove them first so a
 
2987
+# subsequent execution test works.
 
2988
+ac_rmfiles=
 
2989
+for ac_file in $ac_files
 
2990
+do
 
2991
+  case $ac_file in
 
2992
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
 
2993
+    * ) ac_rmfiles="$ac_rmfiles $ac_file";;
 
2994
+  esac
 
2995
+done
 
2996
+rm -f $ac_rmfiles
 
2997
+
 
2998
+if { (ac_try="$ac_link_default"
 
2999
+case "(($ac_try" in
 
3000
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3001
+  *) ac_try_echo=$ac_try;;
 
3002
+esac
 
3003
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3004
+  (eval "$ac_link_default") 2>&5
 
3005
   ac_status=$?
 
3006
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3007
   (exit $ac_status); }; then
 
3008
-  # Find the output, starting from the most likely.  This scheme is
 
3009
-# not robust to junk in `.', hence go to wildcards (a.*) only as a last
 
3010
-# resort.
 
3011
-
 
3012
-# Be careful to initialize this variable, since it used to be cached.
 
3013
-# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
 
3014
-ac_cv_exeext=
 
3015
-# b.out is created by i960 compilers.
 
3016
-for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
 
3017
+  # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
 
3018
+# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
 
3019
+# in a Makefile.  We should not override ac_cv_exeext if it was cached,
 
3020
+# so that the user can short-circuit this test for compilers unknown to
 
3021
+# Autoconf.
 
3022
+for ac_file in $ac_files ''
 
3023
 do
 
3024
   test -f "$ac_file" || continue
 
3025
   case $ac_file in
 
3026
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
 
3027
-       ;;
 
3028
-    conftest.$ac_ext )
 
3029
-       # This is the source file.
 
3030
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
 
3031
        ;;
 
3032
     [ab].out )
 
3033
        # We found the default executable, but exeext='' is most
 
3034
        # certainly right.
 
3035
        break;;
 
3036
     *.* )
 
3037
-       ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
3038
-       # FIXME: I believe we export ac_cv_exeext for Libtool,
 
3039
-       # but it would be cool to find out if it's true.  Does anybody
 
3040
-       # maintain Libtool? --akim.
 
3041
-       export ac_cv_exeext
 
3042
+        if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
 
3043
+       then :; else
 
3044
+          ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
3045
+       fi
 
3046
+       # We set ac_cv_exeext here because the later test for it is not
 
3047
+       # safe: cross compilers may not add the suffix if given an `-o'
 
3048
+       # argument, so we may need to know it at that point already.
 
3049
+       # Even if this section looks crufty: it has the advantage of
 
3050
+       # actually working.
 
3051
        break;;
 
3052
     * )
 
3053
        break;;
 
3054
   esac
 
3055
 done
 
3056
+test "$ac_cv_exeext" = no && ac_cv_exeext=
 
3057
+
 
3058
 else
 
3059
+  ac_file=''
 
3060
+fi
 
3061
+
 
3062
+{ echo "$as_me:$LINENO: result: $ac_file" >&5
 
3063
+echo "${ECHO_T}$ac_file" >&6; }
 
3064
+if test -z "$ac_file"; then
 
3065
   echo "$as_me: failed program was:" >&5
 
3066
 sed 's/^/| /' conftest.$ac_ext >&5
 
3067
 
 
3068
@@ -2306,19 +2857,21 @@
 
3069
 fi
 
3070
 
 
3071
 ac_exeext=$ac_cv_exeext
 
3072
-echo "$as_me:$LINENO: result: $ac_file" >&5
 
3073
-echo "${ECHO_T}$ac_file" >&6
 
3074
 
 
3075
-# Check the compiler produces executables we can run.  If not, either
 
3076
+# Check that the compiler produces executables we can run.  If not, either
 
3077
 # the compiler is broken, or we cross compile.
 
3078
-echo "$as_me:$LINENO: checking whether the C compiler works" >&5
 
3079
-echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
 
3080
+{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5
 
3081
+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }
 
3082
 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
 
3083
 # If not cross compiling, check that we can run a simple program.
 
3084
 if test "$cross_compiling" != yes; then
 
3085
   if { ac_try='./$ac_file'
 
3086
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3087
-  (eval $ac_try) 2>&5
 
3088
+  { (case "(($ac_try" in
 
3089
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3090
+  *) ac_try_echo=$ac_try;;
 
3091
+esac
 
3092
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3093
+  (eval "$ac_try") 2>&5
 
3094
   ac_status=$?
 
3095
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3096
   (exit $ac_status); }; }; then
 
3097
@@ -2337,22 +2890,27 @@
 
3098
     fi
 
3099
   fi
 
3100
 fi
 
3101
-echo "$as_me:$LINENO: result: yes" >&5
 
3102
-echo "${ECHO_T}yes" >&6
 
3103
+{ echo "$as_me:$LINENO: result: yes" >&5
 
3104
+echo "${ECHO_T}yes" >&6; }
 
3105
 
 
3106
 rm -f a.out a.exe conftest$ac_cv_exeext b.out
 
3107
 ac_clean_files=$ac_clean_files_save
 
3108
-# Check the compiler produces executables we can run.  If not, either
 
3109
+# Check that the compiler produces executables we can run.  If not, either
 
3110
 # the compiler is broken, or we cross compile.
 
3111
-echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
 
3112
-echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
 
3113
-echo "$as_me:$LINENO: result: $cross_compiling" >&5
 
3114
-echo "${ECHO_T}$cross_compiling" >&6
 
3115
-
 
3116
-echo "$as_me:$LINENO: checking for suffix of executables" >&5
 
3117
-echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
 
3118
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
3119
-  (eval $ac_link) 2>&5
 
3120
+{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
 
3121
+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }
 
3122
+{ echo "$as_me:$LINENO: result: $cross_compiling" >&5
 
3123
+echo "${ECHO_T}$cross_compiling" >&6; }
 
3124
+
 
3125
+{ echo "$as_me:$LINENO: checking for suffix of executables" >&5
 
3126
+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }
 
3127
+if { (ac_try="$ac_link"
 
3128
+case "(($ac_try" in
 
3129
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3130
+  *) ac_try_echo=$ac_try;;
 
3131
+esac
 
3132
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3133
+  (eval "$ac_link") 2>&5
 
3134
   ac_status=$?
 
3135
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3136
   (exit $ac_status); }; then
 
3137
@@ -2363,9 +2921,8 @@
 
3138
 for ac_file in conftest.exe conftest conftest.*; do
 
3139
   test -f "$ac_file" || continue
 
3140
   case $ac_file in
 
3141
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
 
3142
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
 
3143
     *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
 
3144
-         export ac_cv_exeext
 
3145
          break;;
 
3146
     * ) break;;
 
3147
   esac
 
3148
@@ -2379,14 +2936,14 @@
 
3149
 fi
 
3150
 
 
3151
 rm -f conftest$ac_cv_exeext
 
3152
-echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
 
3153
-echo "${ECHO_T}$ac_cv_exeext" >&6
 
3154
+{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
 
3155
+echo "${ECHO_T}$ac_cv_exeext" >&6; }
 
3156
 
 
3157
 rm -f conftest.$ac_ext
 
3158
 EXEEXT=$ac_cv_exeext
 
3159
 ac_exeext=$EXEEXT
 
3160
-echo "$as_me:$LINENO: checking for suffix of object files" >&5
 
3161
-echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
 
3162
+{ echo "$as_me:$LINENO: checking for suffix of object files" >&5
 
3163
+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }
 
3164
 if test "${ac_cv_objext+set}" = set; then
 
3165
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3166
 else
 
3167
@@ -2406,14 +2963,20 @@
 
3168
 }
 
3169
 _ACEOF
 
3170
 rm -f conftest.o conftest.obj
 
3171
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3172
-  (eval $ac_compile) 2>&5
 
3173
+if { (ac_try="$ac_compile"
 
3174
+case "(($ac_try" in
 
3175
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3176
+  *) ac_try_echo=$ac_try;;
 
3177
+esac
 
3178
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3179
+  (eval "$ac_compile") 2>&5
 
3180
   ac_status=$?
 
3181
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3182
   (exit $ac_status); }; then
 
3183
-  for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
 
3184
+  for ac_file in conftest.o conftest.obj conftest.*; do
 
3185
+  test -f "$ac_file" || continue;
 
3186
   case $ac_file in
 
3187
-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
 
3188
+    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
 
3189
     *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
 
3190
        break;;
 
3191
   esac
 
3192
@@ -2431,12 +2994,12 @@
 
3193
 
 
3194
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 
3195
 fi
 
3196
-echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
 
3197
-echo "${ECHO_T}$ac_cv_objext" >&6
 
3198
+{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
 
3199
+echo "${ECHO_T}$ac_cv_objext" >&6; }
 
3200
 OBJEXT=$ac_cv_objext
 
3201
 ac_objext=$OBJEXT
 
3202
-echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
3203
-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 
3204
+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
3205
+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
 
3206
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
 
3207
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3208
 else
 
3209
@@ -2459,49 +3022,49 @@
 
3210
 }
 
3211
 _ACEOF
 
3212
 rm -f conftest.$ac_objext
 
3213
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3214
-  (eval $ac_compile) 2>conftest.er1
 
3215
+if { (ac_try="$ac_compile"
 
3216
+case "(($ac_try" in
 
3217
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3218
+  *) ac_try_echo=$ac_try;;
 
3219
+esac
 
3220
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3221
+  (eval "$ac_compile") 2>conftest.er1
 
3222
   ac_status=$?
 
3223
   grep -v '^ *+' conftest.er1 >conftest.err
 
3224
   rm -f conftest.er1
 
3225
   cat conftest.err >&5
 
3226
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3227
-  (exit $ac_status); } &&
 
3228
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3229
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3230
-  (eval $ac_try) 2>&5
 
3231
-  ac_status=$?
 
3232
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3233
-  (exit $ac_status); }; } &&
 
3234
-        { ac_try='test -s conftest.$ac_objext'
 
3235
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3236
-  (eval $ac_try) 2>&5
 
3237
-  ac_status=$?
 
3238
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3239
-  (exit $ac_status); }; }; then
 
3240
+  (exit $ac_status); } && {
 
3241
+        test -z "$ac_c_werror_flag" ||
 
3242
+        test ! -s conftest.err
 
3243
+       } && test -s conftest.$ac_objext; then
 
3244
   ac_compiler_gnu=yes
 
3245
 else
 
3246
   echo "$as_me: failed program was:" >&5
 
3247
 sed 's/^/| /' conftest.$ac_ext >&5
 
3248
 
 
3249
-ac_compiler_gnu=no
 
3250
+       ac_compiler_gnu=no
 
3251
 fi
 
3252
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
3253
+
 
3254
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3255
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
3256
 
 
3257
 fi
 
3258
-echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
3259
-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 
3260
+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
3261
+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
 
3262
 GCC=`test $ac_compiler_gnu = yes && echo yes`
 
3263
 ac_test_CFLAGS=${CFLAGS+set}
 
3264
 ac_save_CFLAGS=$CFLAGS
 
3265
-CFLAGS="-g"
 
3266
-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
3267
-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 
3268
+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
3269
+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
 
3270
 if test "${ac_cv_prog_cc_g+set}" = set; then
 
3271
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3272
 else
 
3273
-  cat >conftest.$ac_ext <<_ACEOF
 
3274
+  ac_save_c_werror_flag=$ac_c_werror_flag
 
3275
+   ac_c_werror_flag=yes
 
3276
+   ac_cv_prog_cc_g=no
 
3277
+   CFLAGS="-g"
 
3278
+   cat >conftest.$ac_ext <<_ACEOF
 
3279
 /* confdefs.h.  */
 
3280
 _ACEOF
 
3281
 cat confdefs.h >>conftest.$ac_ext
 
3282
@@ -2517,37 +3080,118 @@
 
3283
 }
 
3284
 _ACEOF
 
3285
 rm -f conftest.$ac_objext
 
3286
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3287
-  (eval $ac_compile) 2>conftest.er1
 
3288
+if { (ac_try="$ac_compile"
 
3289
+case "(($ac_try" in
 
3290
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3291
+  *) ac_try_echo=$ac_try;;
 
3292
+esac
 
3293
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3294
+  (eval "$ac_compile") 2>conftest.er1
 
3295
   ac_status=$?
 
3296
   grep -v '^ *+' conftest.er1 >conftest.err
 
3297
   rm -f conftest.er1
 
3298
   cat conftest.err >&5
 
3299
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3300
-  (exit $ac_status); } &&
 
3301
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3302
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3303
-  (eval $ac_try) 2>&5
 
3304
+  (exit $ac_status); } && {
 
3305
+        test -z "$ac_c_werror_flag" ||
 
3306
+        test ! -s conftest.err
 
3307
+       } && test -s conftest.$ac_objext; then
 
3308
+  ac_cv_prog_cc_g=yes
 
3309
+else
 
3310
+  echo "$as_me: failed program was:" >&5
 
3311
+sed 's/^/| /' conftest.$ac_ext >&5
 
3312
+
 
3313
+       CFLAGS=""
 
3314
+      cat >conftest.$ac_ext <<_ACEOF
 
3315
+/* confdefs.h.  */
 
3316
+_ACEOF
 
3317
+cat confdefs.h >>conftest.$ac_ext
 
3318
+cat >>conftest.$ac_ext <<_ACEOF
 
3319
+/* end confdefs.h.  */
 
3320
+
 
3321
+int
 
3322
+main ()
 
3323
+{
 
3324
+
 
3325
+  ;
 
3326
+  return 0;
 
3327
+}
 
3328
+_ACEOF
 
3329
+rm -f conftest.$ac_objext
 
3330
+if { (ac_try="$ac_compile"
 
3331
+case "(($ac_try" in
 
3332
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3333
+  *) ac_try_echo=$ac_try;;
 
3334
+esac
 
3335
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3336
+  (eval "$ac_compile") 2>conftest.er1
 
3337
   ac_status=$?
 
3338
+  grep -v '^ *+' conftest.er1 >conftest.err
 
3339
+  rm -f conftest.er1
 
3340
+  cat conftest.err >&5
 
3341
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3342
-  (exit $ac_status); }; } &&
 
3343
-        { ac_try='test -s conftest.$ac_objext'
 
3344
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3345
-  (eval $ac_try) 2>&5
 
3346
+  (exit $ac_status); } && {
 
3347
+        test -z "$ac_c_werror_flag" ||
 
3348
+        test ! -s conftest.err
 
3349
+       } && test -s conftest.$ac_objext; then
 
3350
+  :
 
3351
+else
 
3352
+  echo "$as_me: failed program was:" >&5
 
3353
+sed 's/^/| /' conftest.$ac_ext >&5
 
3354
+
 
3355
+       ac_c_werror_flag=$ac_save_c_werror_flag
 
3356
+        CFLAGS="-g"
 
3357
+        cat >conftest.$ac_ext <<_ACEOF
 
3358
+/* confdefs.h.  */
 
3359
+_ACEOF
 
3360
+cat confdefs.h >>conftest.$ac_ext
 
3361
+cat >>conftest.$ac_ext <<_ACEOF
 
3362
+/* end confdefs.h.  */
 
3363
+
 
3364
+int
 
3365
+main ()
 
3366
+{
 
3367
+
 
3368
+  ;
 
3369
+  return 0;
 
3370
+}
 
3371
+_ACEOF
 
3372
+rm -f conftest.$ac_objext
 
3373
+if { (ac_try="$ac_compile"
 
3374
+case "(($ac_try" in
 
3375
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3376
+  *) ac_try_echo=$ac_try;;
 
3377
+esac
 
3378
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3379
+  (eval "$ac_compile") 2>conftest.er1
 
3380
   ac_status=$?
 
3381
+  grep -v '^ *+' conftest.er1 >conftest.err
 
3382
+  rm -f conftest.er1
 
3383
+  cat conftest.err >&5
 
3384
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3385
-  (exit $ac_status); }; }; then
 
3386
+  (exit $ac_status); } && {
 
3387
+        test -z "$ac_c_werror_flag" ||
 
3388
+        test ! -s conftest.err
 
3389
+       } && test -s conftest.$ac_objext; then
 
3390
   ac_cv_prog_cc_g=yes
 
3391
 else
 
3392
   echo "$as_me: failed program was:" >&5
 
3393
 sed 's/^/| /' conftest.$ac_ext >&5
 
3394
 
 
3395
-ac_cv_prog_cc_g=no
 
3396
+
 
3397
+fi
 
3398
+
 
3399
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3400
+fi
 
3401
+
 
3402
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3403
 fi
 
3404
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
3405
+
 
3406
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
3407
+   ac_c_werror_flag=$ac_save_c_werror_flag
 
3408
 fi
 
3409
-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
3410
-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 
3411
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
3412
+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
 
3413
 if test "$ac_test_CFLAGS" = set; then
 
3414
   CFLAGS=$ac_save_CFLAGS
 
3415
 elif test $ac_cv_prog_cc_g = yes; then
 
3416
@@ -2563,12 +3207,12 @@
 
3417
     CFLAGS=
 
3418
   fi
 
3419
 fi
 
3420
-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
 
3421
-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 
3422
-if test "${ac_cv_prog_cc_stdc+set}" = set; then
 
3423
+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
 
3424
+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
 
3425
+if test "${ac_cv_prog_cc_c89+set}" = set; then
 
3426
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3427
 else
 
3428
-  ac_cv_prog_cc_stdc=no
 
3429
+  ac_cv_prog_cc_c89=no
 
3430
 ac_save_CC=$CC
 
3431
 cat >conftest.$ac_ext <<_ACEOF
 
3432
 /* confdefs.h.  */
 
3433
@@ -2602,12 +3246,17 @@
 
3434
 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 
3435
    function prototypes and stuff, but not '\xHH' hex character constants.
 
3436
    These don't provoke an error unfortunately, instead are silently treated
 
3437
-   as 'x'.  The following induces an error, until -std1 is added to get
 
3438
+   as 'x'.  The following induces an error, until -std is added to get
 
3439
    proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 
3440
    array size at least.  It's necessary to write '\x00'==0 to get something
 
3441
-   that's true only with -std1.  */
 
3442
+   that's true only with -std.  */
 
3443
 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 
3444
 
 
3445
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
 
3446
+   inside strings and character constants.  */
 
3447
+#define FOO(x) 'x'
 
3448
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
 
3449
+
 
3450
 int test (int i, double x);
 
3451
 struct s1 {int (*f) (int a);};
 
3452
 struct s2 {int (*f) (double a);};
 
3453
@@ -2622,201 +3271,57 @@
 
3454
   return 0;
 
3455
 }
 
3456
 _ACEOF
 
3457
-# Don't try gcc -ansi; that turns off useful extensions and
 
3458
-# breaks some systems' header files.
 
3459
-# AIX                  -qlanglvl=ansi
 
3460
-# Ultrix and OSF/1     -std1
 
3461
-# HP-UX 10.20 and later        -Ae
 
3462
-# HP-UX older versions -Aa -D_HPUX_SOURCE
 
3463
-# SVR4                 -Xc -D__EXTENSIONS__
 
3464
-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
3465
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
 
3466
+       -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
3467
 do
 
3468
   CC="$ac_save_CC $ac_arg"
 
3469
   rm -f conftest.$ac_objext
 
3470
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3471
-  (eval $ac_compile) 2>conftest.er1
 
3472
+if { (ac_try="$ac_compile"
 
3473
+case "(($ac_try" in
 
3474
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3475
+  *) ac_try_echo=$ac_try;;
 
3476
+esac
 
3477
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3478
+  (eval "$ac_compile") 2>conftest.er1
 
3479
   ac_status=$?
 
3480
   grep -v '^ *+' conftest.er1 >conftest.err
 
3481
   rm -f conftest.er1
 
3482
   cat conftest.err >&5
 
3483
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3484
-  (exit $ac_status); } &&
 
3485
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3486
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3487
-  (eval $ac_try) 2>&5
 
3488
-  ac_status=$?
 
3489
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3490
-  (exit $ac_status); }; } &&
 
3491
-        { ac_try='test -s conftest.$ac_objext'
 
3492
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3493
-  (eval $ac_try) 2>&5
 
3494
-  ac_status=$?
 
3495
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3496
-  (exit $ac_status); }; }; then
 
3497
-  ac_cv_prog_cc_stdc=$ac_arg
 
3498
-break
 
3499
+  (exit $ac_status); } && {
 
3500
+        test -z "$ac_c_werror_flag" ||
 
3501
+        test ! -s conftest.err
 
3502
+       } && test -s conftest.$ac_objext; then
 
3503
+  ac_cv_prog_cc_c89=$ac_arg
 
3504
 else
 
3505
   echo "$as_me: failed program was:" >&5
 
3506
 sed 's/^/| /' conftest.$ac_ext >&5
 
3507
 
 
3508
+
 
3509
 fi
 
3510
-rm -f conftest.err conftest.$ac_objext
 
3511
+
 
3512
+rm -f core conftest.err conftest.$ac_objext
 
3513
+  test "x$ac_cv_prog_cc_c89" != "xno" && break
 
3514
 done
 
3515
-rm -f conftest.$ac_ext conftest.$ac_objext
 
3516
+rm -f conftest.$ac_ext
 
3517
 CC=$ac_save_CC
 
3518
 
 
3519
 fi
 
3520
-
 
3521
-case "x$ac_cv_prog_cc_stdc" in
 
3522
-  x|xno)
 
3523
-    echo "$as_me:$LINENO: result: none needed" >&5
 
3524
-echo "${ECHO_T}none needed" >&6 ;;
 
3525
+# AC_CACHE_VAL
 
3526
+case "x$ac_cv_prog_cc_c89" in
 
3527
+  x)
 
3528
+    { echo "$as_me:$LINENO: result: none needed" >&5
 
3529
+echo "${ECHO_T}none needed" >&6; } ;;
 
3530
+  xno)
 
3531
+    { echo "$as_me:$LINENO: result: unsupported" >&5
 
3532
+echo "${ECHO_T}unsupported" >&6; } ;;
 
3533
   *)
 
3534
-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
 
3535
-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
 
3536
-    CC="$CC $ac_cv_prog_cc_stdc" ;;
 
3537
+    CC="$CC $ac_cv_prog_cc_c89"
 
3538
+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
 
3539
+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
 
3540
 esac
 
3541
 
 
3542
-# Some people use a C++ compiler to compile C.  Since we use `exit',
 
3543
-# in C++ we need to declare it.  In case someone uses the same compiler
 
3544
-# for both compiling C and C++ we need to have the C++ compiler decide
 
3545
-# the declaration of exit, since it's the most demanding environment.
 
3546
-cat >conftest.$ac_ext <<_ACEOF
 
3547
-#ifndef __cplusplus
 
3548
-  choke me
 
3549
-#endif
 
3550
-_ACEOF
 
3551
-rm -f conftest.$ac_objext
 
3552
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3553
-  (eval $ac_compile) 2>conftest.er1
 
3554
-  ac_status=$?
 
3555
-  grep -v '^ *+' conftest.er1 >conftest.err
 
3556
-  rm -f conftest.er1
 
3557
-  cat conftest.err >&5
 
3558
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3559
-  (exit $ac_status); } &&
 
3560
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3561
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3562
-  (eval $ac_try) 2>&5
 
3563
-  ac_status=$?
 
3564
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3565
-  (exit $ac_status); }; } &&
 
3566
-        { ac_try='test -s conftest.$ac_objext'
 
3567
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3568
-  (eval $ac_try) 2>&5
 
3569
-  ac_status=$?
 
3570
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3571
-  (exit $ac_status); }; }; then
 
3572
-  for ac_declaration in \
 
3573
-   '' \
 
3574
-   'extern "C" void std::exit (int) throw (); using std::exit;' \
 
3575
-   'extern "C" void std::exit (int); using std::exit;' \
 
3576
-   'extern "C" void exit (int) throw ();' \
 
3577
-   'extern "C" void exit (int);' \
 
3578
-   'void exit (int);'
 
3579
-do
 
3580
-  cat >conftest.$ac_ext <<_ACEOF
 
3581
-/* confdefs.h.  */
 
3582
-_ACEOF
 
3583
-cat confdefs.h >>conftest.$ac_ext
 
3584
-cat >>conftest.$ac_ext <<_ACEOF
 
3585
-/* end confdefs.h.  */
 
3586
-$ac_declaration
 
3587
-#include <stdlib.h>
 
3588
-int
 
3589
-main ()
 
3590
-{
 
3591
-exit (42);
 
3592
-  ;
 
3593
-  return 0;
 
3594
-}
 
3595
-_ACEOF
 
3596
-rm -f conftest.$ac_objext
 
3597
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3598
-  (eval $ac_compile) 2>conftest.er1
 
3599
-  ac_status=$?
 
3600
-  grep -v '^ *+' conftest.er1 >conftest.err
 
3601
-  rm -f conftest.er1
 
3602
-  cat conftest.err >&5
 
3603
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3604
-  (exit $ac_status); } &&
 
3605
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3606
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3607
-  (eval $ac_try) 2>&5
 
3608
-  ac_status=$?
 
3609
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3610
-  (exit $ac_status); }; } &&
 
3611
-        { ac_try='test -s conftest.$ac_objext'
 
3612
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3613
-  (eval $ac_try) 2>&5
 
3614
-  ac_status=$?
 
3615
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3616
-  (exit $ac_status); }; }; then
 
3617
-  :
 
3618
-else
 
3619
-  echo "$as_me: failed program was:" >&5
 
3620
-sed 's/^/| /' conftest.$ac_ext >&5
 
3621
-
 
3622
-continue
 
3623
-fi
 
3624
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
3625
-  cat >conftest.$ac_ext <<_ACEOF
 
3626
-/* confdefs.h.  */
 
3627
-_ACEOF
 
3628
-cat confdefs.h >>conftest.$ac_ext
 
3629
-cat >>conftest.$ac_ext <<_ACEOF
 
3630
-/* end confdefs.h.  */
 
3631
-$ac_declaration
 
3632
-int
 
3633
-main ()
 
3634
-{
 
3635
-exit (42);
 
3636
-  ;
 
3637
-  return 0;
 
3638
-}
 
3639
-_ACEOF
 
3640
-rm -f conftest.$ac_objext
 
3641
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
3642
-  (eval $ac_compile) 2>conftest.er1
 
3643
-  ac_status=$?
 
3644
-  grep -v '^ *+' conftest.er1 >conftest.err
 
3645
-  rm -f conftest.er1
 
3646
-  cat conftest.err >&5
 
3647
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3648
-  (exit $ac_status); } &&
 
3649
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
3650
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3651
-  (eval $ac_try) 2>&5
 
3652
-  ac_status=$?
 
3653
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3654
-  (exit $ac_status); }; } &&
 
3655
-        { ac_try='test -s conftest.$ac_objext'
 
3656
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
3657
-  (eval $ac_try) 2>&5
 
3658
-  ac_status=$?
 
3659
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3660
-  (exit $ac_status); }; }; then
 
3661
-  break
 
3662
-else
 
3663
-  echo "$as_me: failed program was:" >&5
 
3664
-sed 's/^/| /' conftest.$ac_ext >&5
 
3665
-
 
3666
-fi
 
3667
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
3668
-done
 
3669
-rm -f conftest*
 
3670
-if test -n "$ac_declaration"; then
 
3671
-  echo '#ifdef __cplusplus' >>confdefs.h
 
3672
-  echo $ac_declaration      >>confdefs.h
 
3673
-  echo '#endif'             >>confdefs.h
 
3674
-fi
 
3675
-
 
3676
-else
 
3677
-  echo "$as_me: failed program was:" >&5
 
3678
-sed 's/^/| /' conftest.$ac_ext >&5
 
3679
 
 
3680
-fi
 
3681
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
3682
 ac_ext=c
 
3683
 ac_cpp='$CPP $CPPFLAGS'
 
3684
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
3685
@@ -2825,8 +3330,8 @@
 
3686
 
 
3687
 depcc="$CC"   am_compiler_list=
 
3688
 
 
3689
-echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
3690
-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
 
3691
+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
3692
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
 
3693
 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
 
3694
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
3695
 else
 
3696
@@ -2915,8 +3420,8 @@
 
3697
 fi
 
3698
 
 
3699
 fi
 
3700
-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
3701
-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
 
3702
+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
3703
+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
 
3704
 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 
3705
 
 
3706
 
 
3707
@@ -2938,8 +3443,8 @@
 
3708
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
3709
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 
3710
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
3711
-echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
 
3712
-echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
 
3713
+{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
 
3714
+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }
 
3715
 # On Suns, sometimes $CPP names a directory.
 
3716
 if test -n "$CPP" && test -d "$CPP"; then
 
3717
   CPP=
 
3718
@@ -2973,24 +3478,22 @@
 
3719
 #endif
 
3720
                     Syntax error
 
3721
 _ACEOF
 
3722
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
3723
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
3724
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
3725
+case "(($ac_try" in
 
3726
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3727
+  *) ac_try_echo=$ac_try;;
 
3728
+esac
 
3729
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3730
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
3731
   ac_status=$?
 
3732
   grep -v '^ *+' conftest.er1 >conftest.err
 
3733
   rm -f conftest.er1
 
3734
   cat conftest.err >&5
 
3735
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3736
-  (exit $ac_status); } >/dev/null; then
 
3737
-  if test -s conftest.err; then
 
3738
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3739
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3740
-  else
 
3741
-    ac_cpp_err=
 
3742
-  fi
 
3743
-else
 
3744
-  ac_cpp_err=yes
 
3745
-fi
 
3746
-if test -z "$ac_cpp_err"; then
 
3747
+  (exit $ac_status); } >/dev/null && {
 
3748
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3749
+        test ! -s conftest.err
 
3750
+       }; then
 
3751
   :
 
3752
 else
 
3753
   echo "$as_me: failed program was:" >&5
 
3754
@@ -2999,9 +3502,10 @@
 
3755
   # Broken: fails on valid input.
 
3756
 continue
 
3757
 fi
 
3758
+
 
3759
 rm -f conftest.err conftest.$ac_ext
 
3760
 
 
3761
-  # OK, works on sane cases.  Now check whether non-existent headers
 
3762
+  # OK, works on sane cases.  Now check whether nonexistent headers
 
3763
   # can be detected and how.
 
3764
   cat >conftest.$ac_ext <<_ACEOF
 
3765
 /* confdefs.h.  */
 
3766
@@ -3011,24 +3515,22 @@
 
3767
 /* end confdefs.h.  */
 
3768
 #include <ac_nonexistent.h>
 
3769
 _ACEOF
 
3770
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
3771
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
3772
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
3773
+case "(($ac_try" in
 
3774
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3775
+  *) ac_try_echo=$ac_try;;
 
3776
+esac
 
3777
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3778
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
3779
   ac_status=$?
 
3780
   grep -v '^ *+' conftest.er1 >conftest.err
 
3781
   rm -f conftest.er1
 
3782
   cat conftest.err >&5
 
3783
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3784
-  (exit $ac_status); } >/dev/null; then
 
3785
-  if test -s conftest.err; then
 
3786
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3787
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3788
-  else
 
3789
-    ac_cpp_err=
 
3790
-  fi
 
3791
-else
 
3792
-  ac_cpp_err=yes
 
3793
-fi
 
3794
-if test -z "$ac_cpp_err"; then
 
3795
+  (exit $ac_status); } >/dev/null && {
 
3796
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3797
+        test ! -s conftest.err
 
3798
+       }; then
 
3799
   # Broken: success on invalid input.
 
3800
 continue
 
3801
 else
 
3802
@@ -3039,6 +3541,7 @@
 
3803
 ac_preproc_ok=:
 
3804
 break
 
3805
 fi
 
3806
+
 
3807
 rm -f conftest.err conftest.$ac_ext
 
3808
 
 
3809
 done
 
3810
@@ -3056,8 +3559,8 @@
 
3811
 else
 
3812
   ac_cv_prog_CPP=$CPP
 
3813
 fi
 
3814
-echo "$as_me:$LINENO: result: $CPP" >&5
 
3815
-echo "${ECHO_T}$CPP" >&6
 
3816
+{ echo "$as_me:$LINENO: result: $CPP" >&5
 
3817
+echo "${ECHO_T}$CPP" >&6; }
 
3818
 ac_preproc_ok=false
 
3819
 for ac_c_preproc_warn_flag in '' yes
 
3820
 do
 
3821
@@ -3080,24 +3583,22 @@
 
3822
 #endif
 
3823
                     Syntax error
 
3824
 _ACEOF
 
3825
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
3826
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
3827
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
3828
+case "(($ac_try" in
 
3829
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3830
+  *) ac_try_echo=$ac_try;;
 
3831
+esac
 
3832
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3833
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
3834
   ac_status=$?
 
3835
   grep -v '^ *+' conftest.er1 >conftest.err
 
3836
   rm -f conftest.er1
 
3837
   cat conftest.err >&5
 
3838
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3839
-  (exit $ac_status); } >/dev/null; then
 
3840
-  if test -s conftest.err; then
 
3841
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3842
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3843
-  else
 
3844
-    ac_cpp_err=
 
3845
-  fi
 
3846
-else
 
3847
-  ac_cpp_err=yes
 
3848
-fi
 
3849
-if test -z "$ac_cpp_err"; then
 
3850
+  (exit $ac_status); } >/dev/null && {
 
3851
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3852
+        test ! -s conftest.err
 
3853
+       }; then
 
3854
   :
 
3855
 else
 
3856
   echo "$as_me: failed program was:" >&5
 
3857
@@ -3106,9 +3607,10 @@
 
3858
   # Broken: fails on valid input.
 
3859
 continue
 
3860
 fi
 
3861
+
 
3862
 rm -f conftest.err conftest.$ac_ext
 
3863
 
 
3864
-  # OK, works on sane cases.  Now check whether non-existent headers
 
3865
+  # OK, works on sane cases.  Now check whether nonexistent headers
 
3866
   # can be detected and how.
 
3867
   cat >conftest.$ac_ext <<_ACEOF
 
3868
 /* confdefs.h.  */
 
3869
@@ -3118,24 +3620,22 @@
 
3870
 /* end confdefs.h.  */
 
3871
 #include <ac_nonexistent.h>
 
3872
 _ACEOF
 
3873
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
3874
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
3875
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
3876
+case "(($ac_try" in
 
3877
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
3878
+  *) ac_try_echo=$ac_try;;
 
3879
+esac
 
3880
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
3881
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
3882
   ac_status=$?
 
3883
   grep -v '^ *+' conftest.er1 >conftest.err
 
3884
   rm -f conftest.er1
 
3885
   cat conftest.err >&5
 
3886
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3887
-  (exit $ac_status); } >/dev/null; then
 
3888
-  if test -s conftest.err; then
 
3889
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
3890
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
3891
-  else
 
3892
-    ac_cpp_err=
 
3893
-  fi
 
3894
-else
 
3895
-  ac_cpp_err=yes
 
3896
-fi
 
3897
-if test -z "$ac_cpp_err"; then
 
3898
+  (exit $ac_status); } >/dev/null && {
 
3899
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
3900
+        test ! -s conftest.err
 
3901
+       }; then
 
3902
   # Broken: success on invalid input.
 
3903
 continue
 
3904
 else
 
3905
@@ -3146,6 +3646,7 @@
 
3906
 ac_preproc_ok=:
 
3907
 break
 
3908
 fi
 
3909
+
 
3910
 rm -f conftest.err conftest.$ac_ext
 
3911
 
 
3912
 done
 
3913
@@ -3168,24 +3669,171 @@
 
3914
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
3915
 
 
3916
 
 
3917
-echo "$as_me:$LINENO: checking for egrep" >&5
 
3918
-echo $ECHO_N "checking for egrep... $ECHO_C" >&6
 
3919
-if test "${ac_cv_prog_egrep+set}" = set; then
 
3920
+{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5
 
3921
+echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }
 
3922
+if test "${ac_cv_path_GREP+set}" = set; then
 
3923
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
3924
+else
 
3925
+  # Extract the first word of "grep ggrep" to use in msg output
 
3926
+if test -z "$GREP"; then
 
3927
+set dummy grep ggrep; ac_prog_name=$2
 
3928
+if test "${ac_cv_path_GREP+set}" = set; then
 
3929
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
3930
+else
 
3931
+  ac_path_GREP_found=false
 
3932
+# Loop through the user's path and test for each of PROGNAME-LIST
 
3933
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
3934
+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 
3935
+do
 
3936
+  IFS=$as_save_IFS
 
3937
+  test -z "$as_dir" && as_dir=.
 
3938
+  for ac_prog in grep ggrep; do
 
3939
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
3940
+    ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
 
3941
+    { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
 
3942
+    # Check for GNU ac_path_GREP and select it if it is found.
 
3943
+  # Check for GNU $ac_path_GREP
 
3944
+case `"$ac_path_GREP" --version 2>&1` in
 
3945
+*GNU*)
 
3946
+  ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
 
3947
+*)
 
3948
+  ac_count=0
 
3949
+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
 
3950
+  while :
 
3951
+  do
 
3952
+    cat "conftest.in" "conftest.in" >"conftest.tmp"
 
3953
+    mv "conftest.tmp" "conftest.in"
 
3954
+    cp "conftest.in" "conftest.nl"
 
3955
+    echo 'GREP' >> "conftest.nl"
 
3956
+    "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 
3957
+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 
3958
+    ac_count=`expr $ac_count + 1`
 
3959
+    if test $ac_count -gt ${ac_path_GREP_max-0}; then
 
3960
+      # Best one so far, save it but keep looking for a better one
 
3961
+      ac_cv_path_GREP="$ac_path_GREP"
 
3962
+      ac_path_GREP_max=$ac_count
 
3963
+    fi
 
3964
+    # 10*(2^10) chars as input seems more than enough
 
3965
+    test $ac_count -gt 10 && break
 
3966
+  done
 
3967
+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 
3968
+esac
 
3969
+
 
3970
+
 
3971
+    $ac_path_GREP_found && break 3
 
3972
+  done
 
3973
+done
 
3974
+
 
3975
+done
 
3976
+IFS=$as_save_IFS
 
3977
+
 
3978
+
 
3979
+fi
 
3980
+
 
3981
+GREP="$ac_cv_path_GREP"
 
3982
+if test -z "$GREP"; then
 
3983
+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
3984
+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
3985
+   { (exit 1); exit 1; }; }
 
3986
+fi
 
3987
+
 
3988
+else
 
3989
+  ac_cv_path_GREP=$GREP
 
3990
+fi
 
3991
+
 
3992
+
 
3993
+fi
 
3994
+{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5
 
3995
+echo "${ECHO_T}$ac_cv_path_GREP" >&6; }
 
3996
+ GREP="$ac_cv_path_GREP"
 
3997
+
 
3998
+
 
3999
+{ echo "$as_me:$LINENO: checking for egrep" >&5
 
4000
+echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }
 
4001
+if test "${ac_cv_path_EGREP+set}" = set; then
 
4002
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4003
 else
 
4004
-  if echo a | (grep -E '(a|b)') >/dev/null 2>&1
 
4005
-    then ac_cv_prog_egrep='grep -E'
 
4006
-    else ac_cv_prog_egrep='egrep'
 
4007
+  if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
 
4008
+   then ac_cv_path_EGREP="$GREP -E"
 
4009
+   else
 
4010
+     # Extract the first word of "egrep" to use in msg output
 
4011
+if test -z "$EGREP"; then
 
4012
+set dummy egrep; ac_prog_name=$2
 
4013
+if test "${ac_cv_path_EGREP+set}" = set; then
 
4014
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
4015
+else
 
4016
+  ac_path_EGREP_found=false
 
4017
+# Loop through the user's path and test for each of PROGNAME-LIST
 
4018
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
4019
+for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
 
4020
+do
 
4021
+  IFS=$as_save_IFS
 
4022
+  test -z "$as_dir" && as_dir=.
 
4023
+  for ac_prog in egrep; do
 
4024
+  for ac_exec_ext in '' $ac_executable_extensions; do
 
4025
+    ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
 
4026
+    { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
 
4027
+    # Check for GNU ac_path_EGREP and select it if it is found.
 
4028
+  # Check for GNU $ac_path_EGREP
 
4029
+case `"$ac_path_EGREP" --version 2>&1` in
 
4030
+*GNU*)
 
4031
+  ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
 
4032
+*)
 
4033
+  ac_count=0
 
4034
+  echo $ECHO_N "0123456789$ECHO_C" >"conftest.in"
 
4035
+  while :
 
4036
+  do
 
4037
+    cat "conftest.in" "conftest.in" >"conftest.tmp"
 
4038
+    mv "conftest.tmp" "conftest.in"
 
4039
+    cp "conftest.in" "conftest.nl"
 
4040
+    echo 'EGREP' >> "conftest.nl"
 
4041
+    "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
 
4042
+    diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
 
4043
+    ac_count=`expr $ac_count + 1`
 
4044
+    if test $ac_count -gt ${ac_path_EGREP_max-0}; then
 
4045
+      # Best one so far, save it but keep looking for a better one
 
4046
+      ac_cv_path_EGREP="$ac_path_EGREP"
 
4047
+      ac_path_EGREP_max=$ac_count
 
4048
     fi
 
4049
+    # 10*(2^10) chars as input seems more than enough
 
4050
+    test $ac_count -gt 10 && break
 
4051
+  done
 
4052
+  rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
 
4053
+esac
 
4054
+
 
4055
+
 
4056
+    $ac_path_EGREP_found && break 3
 
4057
+  done
 
4058
+done
 
4059
+
 
4060
+done
 
4061
+IFS=$as_save_IFS
 
4062
+
 
4063
+
 
4064
+fi
 
4065
+
 
4066
+EGREP="$ac_cv_path_EGREP"
 
4067
+if test -z "$EGREP"; then
 
4068
+  { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5
 
4069
+echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;}
 
4070
+   { (exit 1); exit 1; }; }
 
4071
+fi
 
4072
+
 
4073
+else
 
4074
+  ac_cv_path_EGREP=$EGREP
 
4075
+fi
 
4076
+
 
4077
+
 
4078
+   fi
 
4079
 fi
 
4080
-echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
 
4081
-echo "${ECHO_T}$ac_cv_prog_egrep" >&6
 
4082
- EGREP=$ac_cv_prog_egrep
 
4083
+{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5
 
4084
+echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }
 
4085
+ EGREP="$ac_cv_path_EGREP"
 
4086
 
 
4087
 
 
4088
 
 
4089
-echo "$as_me:$LINENO: checking for AIX" >&5
 
4090
-echo $ECHO_N "checking for AIX... $ECHO_C" >&6
 
4091
+{ echo "$as_me:$LINENO: checking for AIX" >&5
 
4092
+echo $ECHO_N "checking for AIX... $ECHO_C" >&6; }
 
4093
 cat >conftest.$ac_ext <<_ACEOF
 
4094
 /* confdefs.h.  */
 
4095
 _ACEOF
 
4096
@@ -3199,21 +3847,21 @@
 
4097
 _ACEOF
 
4098
 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
 
4099
   $EGREP "yes" >/dev/null 2>&1; then
 
4100
-  echo "$as_me:$LINENO: result: yes" >&5
 
4101
-echo "${ECHO_T}yes" >&6
 
4102
+  { echo "$as_me:$LINENO: result: yes" >&5
 
4103
+echo "${ECHO_T}yes" >&6; }
 
4104
 cat >>confdefs.h <<\_ACEOF
 
4105
 #define _ALL_SOURCE 1
 
4106
 _ACEOF
 
4107
 
 
4108
 else
 
4109
-  echo "$as_me:$LINENO: result: no" >&5
 
4110
-echo "${ECHO_T}no" >&6
 
4111
+  { echo "$as_me:$LINENO: result: no" >&5
 
4112
+echo "${ECHO_T}no" >&6; }
 
4113
 fi
 
4114
 rm -f conftest*
 
4115
 
 
4116
 
 
4117
-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
4118
-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 
4119
+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
4120
+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
 
4121
 if test "${ac_cv_header_stdc+set}" = set; then
 
4122
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4123
 else
 
4124
@@ -3237,34 +3885,31 @@
 
4125
 }
 
4126
 _ACEOF
 
4127
 rm -f conftest.$ac_objext
 
4128
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
4129
-  (eval $ac_compile) 2>conftest.er1
 
4130
+if { (ac_try="$ac_compile"
 
4131
+case "(($ac_try" in
 
4132
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4133
+  *) ac_try_echo=$ac_try;;
 
4134
+esac
 
4135
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4136
+  (eval "$ac_compile") 2>conftest.er1
 
4137
   ac_status=$?
 
4138
   grep -v '^ *+' conftest.er1 >conftest.err
 
4139
   rm -f conftest.er1
 
4140
   cat conftest.err >&5
 
4141
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4142
-  (exit $ac_status); } &&
 
4143
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
4144
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4145
-  (eval $ac_try) 2>&5
 
4146
-  ac_status=$?
 
4147
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4148
-  (exit $ac_status); }; } &&
 
4149
-        { ac_try='test -s conftest.$ac_objext'
 
4150
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4151
-  (eval $ac_try) 2>&5
 
4152
-  ac_status=$?
 
4153
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4154
-  (exit $ac_status); }; }; then
 
4155
+  (exit $ac_status); } && {
 
4156
+        test -z "$ac_c_werror_flag" ||
 
4157
+        test ! -s conftest.err
 
4158
+       } && test -s conftest.$ac_objext; then
 
4159
   ac_cv_header_stdc=yes
 
4160
 else
 
4161
   echo "$as_me: failed program was:" >&5
 
4162
 sed 's/^/| /' conftest.$ac_ext >&5
 
4163
 
 
4164
-ac_cv_header_stdc=no
 
4165
+       ac_cv_header_stdc=no
 
4166
 fi
 
4167
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
4168
+
 
4169
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
4170
 
 
4171
 if test $ac_cv_header_stdc = yes; then
 
4172
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
 
4173
@@ -3320,6 +3965,7 @@
 
4174
 cat >>conftest.$ac_ext <<_ACEOF
 
4175
 /* end confdefs.h.  */
 
4176
 #include <ctype.h>
 
4177
+#include <stdlib.h>
 
4178
 #if ((' ' & 0x0FF) == 0x020)
 
4179
 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
 
4180
 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
 
4181
@@ -3339,18 +3985,27 @@
 
4182
   for (i = 0; i < 256; i++)
 
4183
     if (XOR (islower (i), ISLOWER (i))
 
4184
        || toupper (i) != TOUPPER (i))
 
4185
-      exit(2);
 
4186
-  exit (0);
 
4187
+      return 2;
 
4188
+  return 0;
 
4189
 }
 
4190
 _ACEOF
 
4191
 rm -f conftest$ac_exeext
 
4192
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
4193
-  (eval $ac_link) 2>&5
 
4194
+if { (ac_try="$ac_link"
 
4195
+case "(($ac_try" in
 
4196
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4197
+  *) ac_try_echo=$ac_try;;
 
4198
+esac
 
4199
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4200
+  (eval "$ac_link") 2>&5
 
4201
   ac_status=$?
 
4202
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4203
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
4204
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4205
-  (eval $ac_try) 2>&5
 
4206
+  { (case "(($ac_try" in
 
4207
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4208
+  *) ac_try_echo=$ac_try;;
 
4209
+esac
 
4210
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4211
+  (eval "$ac_try") 2>&5
 
4212
   ac_status=$?
 
4213
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4214
   (exit $ac_status); }; }; then
 
4215
@@ -3363,12 +4018,14 @@
 
4216
 ( exit $ac_status )
 
4217
 ac_cv_header_stdc=no
 
4218
 fi
 
4219
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
4220
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
4221
 fi
 
4222
+
 
4223
+
 
4224
 fi
 
4225
 fi
 
4226
-echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
4227
-echo "${ECHO_T}$ac_cv_header_stdc" >&6
 
4228
+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
4229
+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
 
4230
 if test $ac_cv_header_stdc = yes; then
 
4231
 
 
4232
 cat >>confdefs.h <<\_ACEOF
 
4233
@@ -3391,9 +4048,9 @@
 
4234
                  inttypes.h stdint.h unistd.h
 
4235
 do
 
4236
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
4237
-echo "$as_me:$LINENO: checking for $ac_header" >&5
 
4238
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
4239
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
4240
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
4241
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
4242
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
4243
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4244
 else
 
4245
   cat >conftest.$ac_ext <<_ACEOF
 
4246
@@ -3407,37 +4064,35 @@
 
4247
 #include <$ac_header>
 
4248
 _ACEOF
 
4249
 rm -f conftest.$ac_objext
 
4250
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
4251
-  (eval $ac_compile) 2>conftest.er1
 
4252
+if { (ac_try="$ac_compile"
 
4253
+case "(($ac_try" in
 
4254
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4255
+  *) ac_try_echo=$ac_try;;
 
4256
+esac
 
4257
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4258
+  (eval "$ac_compile") 2>conftest.er1
 
4259
   ac_status=$?
 
4260
   grep -v '^ *+' conftest.er1 >conftest.err
 
4261
   rm -f conftest.er1
 
4262
   cat conftest.err >&5
 
4263
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4264
-  (exit $ac_status); } &&
 
4265
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
4266
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4267
-  (eval $ac_try) 2>&5
 
4268
-  ac_status=$?
 
4269
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4270
-  (exit $ac_status); }; } &&
 
4271
-        { ac_try='test -s conftest.$ac_objext'
 
4272
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4273
-  (eval $ac_try) 2>&5
 
4274
-  ac_status=$?
 
4275
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4276
-  (exit $ac_status); }; }; then
 
4277
+  (exit $ac_status); } && {
 
4278
+        test -z "$ac_c_werror_flag" ||
 
4279
+        test ! -s conftest.err
 
4280
+       } && test -s conftest.$ac_objext; then
 
4281
   eval "$as_ac_Header=yes"
 
4282
 else
 
4283
   echo "$as_me: failed program was:" >&5
 
4284
 sed 's/^/| /' conftest.$ac_ext >&5
 
4285
 
 
4286
-eval "$as_ac_Header=no"
 
4287
+       eval "$as_ac_Header=no"
 
4288
 fi
 
4289
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
4290
+
 
4291
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
4292
 fi
 
4293
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
4294
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
4295
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
4296
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
4297
+echo "${ECHO_T}$ac_res" >&6; }
 
4298
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
4299
   cat >>confdefs.h <<_ACEOF
 
4300
 #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
 
4301
@@ -3449,17 +4104,17 @@
 
4302
 
 
4303
 
 
4304
 if test "${ac_cv_header_minix_config_h+set}" = set; then
 
4305
-  echo "$as_me:$LINENO: checking for minix/config.h" >&5
 
4306
-echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6
 
4307
+  { echo "$as_me:$LINENO: checking for minix/config.h" >&5
 
4308
+echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6; }
 
4309
 if test "${ac_cv_header_minix_config_h+set}" = set; then
 
4310
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4311
 fi
 
4312
-echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5
 
4313
-echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6
 
4314
+{ echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5
 
4315
+echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6; }
 
4316
 else
 
4317
   # Is the header compilable?
 
4318
-echo "$as_me:$LINENO: checking minix/config.h usability" >&5
 
4319
-echo $ECHO_N "checking minix/config.h usability... $ECHO_C" >&6
 
4320
+{ echo "$as_me:$LINENO: checking minix/config.h usability" >&5
 
4321
+echo $ECHO_N "checking minix/config.h usability... $ECHO_C" >&6; }
 
4322
 cat >conftest.$ac_ext <<_ACEOF
 
4323
 /* confdefs.h.  */
 
4324
 _ACEOF
 
4325
@@ -3470,40 +4125,37 @@
 
4326
 #include <minix/config.h>
 
4327
 _ACEOF
 
4328
 rm -f conftest.$ac_objext
 
4329
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
4330
-  (eval $ac_compile) 2>conftest.er1
 
4331
+if { (ac_try="$ac_compile"
 
4332
+case "(($ac_try" in
 
4333
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4334
+  *) ac_try_echo=$ac_try;;
 
4335
+esac
 
4336
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4337
+  (eval "$ac_compile") 2>conftest.er1
 
4338
   ac_status=$?
 
4339
   grep -v '^ *+' conftest.er1 >conftest.err
 
4340
   rm -f conftest.er1
 
4341
   cat conftest.err >&5
 
4342
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4343
-  (exit $ac_status); } &&
 
4344
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
4345
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4346
-  (eval $ac_try) 2>&5
 
4347
-  ac_status=$?
 
4348
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4349
-  (exit $ac_status); }; } &&
 
4350
-        { ac_try='test -s conftest.$ac_objext'
 
4351
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4352
-  (eval $ac_try) 2>&5
 
4353
-  ac_status=$?
 
4354
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4355
-  (exit $ac_status); }; }; then
 
4356
+  (exit $ac_status); } && {
 
4357
+        test -z "$ac_c_werror_flag" ||
 
4358
+        test ! -s conftest.err
 
4359
+       } && test -s conftest.$ac_objext; then
 
4360
   ac_header_compiler=yes
 
4361
 else
 
4362
   echo "$as_me: failed program was:" >&5
 
4363
 sed 's/^/| /' conftest.$ac_ext >&5
 
4364
 
 
4365
-ac_header_compiler=no
 
4366
+       ac_header_compiler=no
 
4367
 fi
 
4368
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
4369
-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
4370
-echo "${ECHO_T}$ac_header_compiler" >&6
 
4371
+
 
4372
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
4373
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
4374
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
4375
 
 
4376
 # Is the header present?
 
4377
-echo "$as_me:$LINENO: checking minix/config.h presence" >&5
 
4378
-echo $ECHO_N "checking minix/config.h presence... $ECHO_C" >&6
 
4379
+{ echo "$as_me:$LINENO: checking minix/config.h presence" >&5
 
4380
+echo $ECHO_N "checking minix/config.h presence... $ECHO_C" >&6; }
 
4381
 cat >conftest.$ac_ext <<_ACEOF
 
4382
 /* confdefs.h.  */
 
4383
 _ACEOF
 
4384
@@ -3512,24 +4164,22 @@
 
4385
 /* end confdefs.h.  */
 
4386
 #include <minix/config.h>
 
4387
 _ACEOF
 
4388
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
4389
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
4390
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
4391
+case "(($ac_try" in
 
4392
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4393
+  *) ac_try_echo=$ac_try;;
 
4394
+esac
 
4395
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4396
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
4397
   ac_status=$?
 
4398
   grep -v '^ *+' conftest.er1 >conftest.err
 
4399
   rm -f conftest.er1
 
4400
   cat conftest.err >&5
 
4401
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4402
-  (exit $ac_status); } >/dev/null; then
 
4403
-  if test -s conftest.err; then
 
4404
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
4405
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
4406
-  else
 
4407
-    ac_cpp_err=
 
4408
-  fi
 
4409
-else
 
4410
-  ac_cpp_err=yes
 
4411
-fi
 
4412
-if test -z "$ac_cpp_err"; then
 
4413
+  (exit $ac_status); } >/dev/null && {
 
4414
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
4415
+        test ! -s conftest.err
 
4416
+       }; then
 
4417
   ac_header_preproc=yes
 
4418
 else
 
4419
   echo "$as_me: failed program was:" >&5
 
4420
@@ -3537,9 +4187,10 @@
 
4421
 
 
4422
   ac_header_preproc=no
 
4423
 fi
 
4424
+
 
4425
 rm -f conftest.err conftest.$ac_ext
 
4426
-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
4427
-echo "${ECHO_T}$ac_header_preproc" >&6
 
4428
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
4429
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
4430
 
 
4431
 # So?  What about this header?
 
4432
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
4433
@@ -3563,25 +4214,23 @@
 
4434
 echo "$as_me: WARNING: minix/config.h: proceeding with the preprocessor's result" >&2;}
 
4435
     { echo "$as_me:$LINENO: WARNING: minix/config.h: in the future, the compiler will take precedence" >&5
 
4436
 echo "$as_me: WARNING: minix/config.h: in the future, the compiler will take precedence" >&2;}
 
4437
-    (
 
4438
-      cat <<\_ASBOX
 
4439
+    ( cat <<\_ASBOX
 
4440
 ## -------------------------------- ##
 
4441
 ## Report this to laird@lbreyer.com ##
 
4442
 ## -------------------------------- ##
 
4443
 _ASBOX
 
4444
-    ) |
 
4445
-      sed "s/^/$as_me: WARNING:     /" >&2
 
4446
+     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
4447
     ;;
 
4448
 esac
 
4449
-echo "$as_me:$LINENO: checking for minix/config.h" >&5
 
4450
-echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6
 
4451
+{ echo "$as_me:$LINENO: checking for minix/config.h" >&5
 
4452
+echo $ECHO_N "checking for minix/config.h... $ECHO_C" >&6; }
 
4453
 if test "${ac_cv_header_minix_config_h+set}" = set; then
 
4454
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4455
 else
 
4456
   ac_cv_header_minix_config_h=$ac_header_preproc
 
4457
 fi
 
4458
-echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5
 
4459
-echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6
 
4460
+{ echo "$as_me:$LINENO: result: $ac_cv_header_minix_config_h" >&5
 
4461
+echo "${ECHO_T}$ac_cv_header_minix_config_h" >&6; }
 
4462
 
 
4463
 fi
 
4464
 if test $ac_cv_header_minix_config_h = yes; then
 
4465
@@ -3676,8 +4325,8 @@
 
4466
 if test -n "$ac_tool_prefix"; then
 
4467
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 
4468
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
 
4469
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4470
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4471
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4472
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4473
 if test "${ac_cv_prog_CC+set}" = set; then
 
4474
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4475
 else
 
4476
@@ -3690,32 +4339,34 @@
 
4477
   IFS=$as_save_IFS
 
4478
   test -z "$as_dir" && as_dir=.
 
4479
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4480
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4481
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4482
     ac_cv_prog_CC="${ac_tool_prefix}gcc"
 
4483
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4484
     break 2
 
4485
   fi
 
4486
 done
 
4487
 done
 
4488
+IFS=$as_save_IFS
 
4489
 
 
4490
 fi
 
4491
 fi
 
4492
 CC=$ac_cv_prog_CC
 
4493
 if test -n "$CC"; then
 
4494
-  echo "$as_me:$LINENO: result: $CC" >&5
 
4495
-echo "${ECHO_T}$CC" >&6
 
4496
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
4497
+echo "${ECHO_T}$CC" >&6; }
 
4498
 else
 
4499
-  echo "$as_me:$LINENO: result: no" >&5
 
4500
-echo "${ECHO_T}no" >&6
 
4501
+  { echo "$as_me:$LINENO: result: no" >&5
 
4502
+echo "${ECHO_T}no" >&6; }
 
4503
 fi
 
4504
 
 
4505
+
 
4506
 fi
 
4507
 if test -z "$ac_cv_prog_CC"; then
 
4508
   ac_ct_CC=$CC
 
4509
   # Extract the first word of "gcc", so it can be a program name with args.
 
4510
 set dummy gcc; ac_word=$2
 
4511
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4512
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4513
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4514
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4515
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
4516
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4517
 else
 
4518
@@ -3728,36 +4379,51 @@
 
4519
   IFS=$as_save_IFS
 
4520
   test -z "$as_dir" && as_dir=.
 
4521
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4522
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4523
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4524
     ac_cv_prog_ac_ct_CC="gcc"
 
4525
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4526
     break 2
 
4527
   fi
 
4528
 done
 
4529
 done
 
4530
+IFS=$as_save_IFS
 
4531
 
 
4532
 fi
 
4533
 fi
 
4534
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
4535
 if test -n "$ac_ct_CC"; then
 
4536
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
4537
-echo "${ECHO_T}$ac_ct_CC" >&6
 
4538
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
4539
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
4540
 else
 
4541
-  echo "$as_me:$LINENO: result: no" >&5
 
4542
-echo "${ECHO_T}no" >&6
 
4543
+  { echo "$as_me:$LINENO: result: no" >&5
 
4544
+echo "${ECHO_T}no" >&6; }
 
4545
 fi
 
4546
 
 
4547
-  CC=$ac_ct_CC
 
4548
+  if test "x$ac_ct_CC" = x; then
 
4549
+    CC=""
 
4550
+  else
 
4551
+    case $cross_compiling:$ac_tool_warned in
 
4552
+yes:)
 
4553
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
4554
+whose name does not start with the host triplet.  If you think this
 
4555
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
4556
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
4557
+whose name does not start with the host triplet.  If you think this
 
4558
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
4559
+ac_tool_warned=yes ;;
 
4560
+esac
 
4561
+    CC=$ac_ct_CC
 
4562
+  fi
 
4563
 else
 
4564
   CC="$ac_cv_prog_CC"
 
4565
 fi
 
4566
 
 
4567
 if test -z "$CC"; then
 
4568
-  if test -n "$ac_tool_prefix"; then
 
4569
-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
4570
+          if test -n "$ac_tool_prefix"; then
 
4571
+    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 
4572
 set dummy ${ac_tool_prefix}cc; ac_word=$2
 
4573
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4574
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4575
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4576
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4577
 if test "${ac_cv_prog_CC+set}" = set; then
 
4578
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4579
 else
 
4580
@@ -3770,74 +4436,34 @@
 
4581
   IFS=$as_save_IFS
 
4582
   test -z "$as_dir" && as_dir=.
 
4583
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4584
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4585
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4586
     ac_cv_prog_CC="${ac_tool_prefix}cc"
 
4587
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4588
     break 2
 
4589
   fi
 
4590
 done
 
4591
 done
 
4592
+IFS=$as_save_IFS
 
4593
 
 
4594
 fi
 
4595
 fi
 
4596
 CC=$ac_cv_prog_CC
 
4597
 if test -n "$CC"; then
 
4598
-  echo "$as_me:$LINENO: result: $CC" >&5
 
4599
-echo "${ECHO_T}$CC" >&6
 
4600
-else
 
4601
-  echo "$as_me:$LINENO: result: no" >&5
 
4602
-echo "${ECHO_T}no" >&6
 
4603
-fi
 
4604
-
 
4605
-fi
 
4606
-if test -z "$ac_cv_prog_CC"; then
 
4607
-  ac_ct_CC=$CC
 
4608
-  # Extract the first word of "cc", so it can be a program name with args.
 
4609
-set dummy cc; ac_word=$2
 
4610
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4611
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4612
-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
4613
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
4614
-else
 
4615
-  if test -n "$ac_ct_CC"; then
 
4616
-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
 
4617
-else
 
4618
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
4619
-for as_dir in $PATH
 
4620
-do
 
4621
-  IFS=$as_save_IFS
 
4622
-  test -z "$as_dir" && as_dir=.
 
4623
-  for ac_exec_ext in '' $ac_executable_extensions; do
 
4624
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4625
-    ac_cv_prog_ac_ct_CC="cc"
 
4626
-    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4627
-    break 2
 
4628
-  fi
 
4629
-done
 
4630
-done
 
4631
-
 
4632
-fi
 
4633
-fi
 
4634
-ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
4635
-if test -n "$ac_ct_CC"; then
 
4636
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
4637
-echo "${ECHO_T}$ac_ct_CC" >&6
 
4638
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
4639
+echo "${ECHO_T}$CC" >&6; }
 
4640
 else
 
4641
-  echo "$as_me:$LINENO: result: no" >&5
 
4642
-echo "${ECHO_T}no" >&6
 
4643
+  { echo "$as_me:$LINENO: result: no" >&5
 
4644
+echo "${ECHO_T}no" >&6; }
 
4645
 fi
 
4646
 
 
4647
-  CC=$ac_ct_CC
 
4648
-else
 
4649
-  CC="$ac_cv_prog_CC"
 
4650
-fi
 
4651
 
 
4652
+  fi
 
4653
 fi
 
4654
 if test -z "$CC"; then
 
4655
   # Extract the first word of "cc", so it can be a program name with args.
 
4656
 set dummy cc; ac_word=$2
 
4657
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4658
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4659
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4660
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4661
 if test "${ac_cv_prog_CC+set}" = set; then
 
4662
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4663
 else
 
4664
@@ -3851,7 +4477,7 @@
 
4665
   IFS=$as_save_IFS
 
4666
   test -z "$as_dir" && as_dir=.
 
4667
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4668
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4669
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4670
     if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
 
4671
        ac_prog_rejected=yes
 
4672
        continue
 
4673
@@ -3862,6 +4488,7 @@
 
4674
   fi
 
4675
 done
 
4676
 done
 
4677
+IFS=$as_save_IFS
 
4678
 
 
4679
 if test $ac_prog_rejected = yes; then
 
4680
   # We found a bogon in the path, so make sure we never use it.
 
4681
@@ -3879,22 +4506,23 @@
 
4682
 fi
 
4683
 CC=$ac_cv_prog_CC
 
4684
 if test -n "$CC"; then
 
4685
-  echo "$as_me:$LINENO: result: $CC" >&5
 
4686
-echo "${ECHO_T}$CC" >&6
 
4687
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
4688
+echo "${ECHO_T}$CC" >&6; }
 
4689
 else
 
4690
-  echo "$as_me:$LINENO: result: no" >&5
 
4691
-echo "${ECHO_T}no" >&6
 
4692
+  { echo "$as_me:$LINENO: result: no" >&5
 
4693
+echo "${ECHO_T}no" >&6; }
 
4694
 fi
 
4695
 
 
4696
+
 
4697
 fi
 
4698
 if test -z "$CC"; then
 
4699
   if test -n "$ac_tool_prefix"; then
 
4700
-  for ac_prog in cl
 
4701
+  for ac_prog in cl.exe
 
4702
   do
 
4703
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 
4704
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
 
4705
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4706
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4707
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4708
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4709
 if test "${ac_cv_prog_CC+set}" = set; then
 
4710
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4711
 else
 
4712
@@ -3907,36 +4535,38 @@
 
4713
   IFS=$as_save_IFS
 
4714
   test -z "$as_dir" && as_dir=.
 
4715
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4716
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4717
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4718
     ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
 
4719
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4720
     break 2
 
4721
   fi
 
4722
 done
 
4723
 done
 
4724
+IFS=$as_save_IFS
 
4725
 
 
4726
 fi
 
4727
 fi
 
4728
 CC=$ac_cv_prog_CC
 
4729
 if test -n "$CC"; then
 
4730
-  echo "$as_me:$LINENO: result: $CC" >&5
 
4731
-echo "${ECHO_T}$CC" >&6
 
4732
+  { echo "$as_me:$LINENO: result: $CC" >&5
 
4733
+echo "${ECHO_T}$CC" >&6; }
 
4734
 else
 
4735
-  echo "$as_me:$LINENO: result: no" >&5
 
4736
-echo "${ECHO_T}no" >&6
 
4737
+  { echo "$as_me:$LINENO: result: no" >&5
 
4738
+echo "${ECHO_T}no" >&6; }
 
4739
 fi
 
4740
 
 
4741
+
 
4742
     test -n "$CC" && break
 
4743
   done
 
4744
 fi
 
4745
 if test -z "$CC"; then
 
4746
   ac_ct_CC=$CC
 
4747
-  for ac_prog in cl
 
4748
+  for ac_prog in cl.exe
 
4749
 do
 
4750
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
4751
 set dummy $ac_prog; ac_word=$2
 
4752
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4753
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
4754
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
4755
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
4756
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
 
4757
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4758
 else
 
4759
@@ -3949,29 +4579,45 @@
 
4760
   IFS=$as_save_IFS
 
4761
   test -z "$as_dir" && as_dir=.
 
4762
   for ac_exec_ext in '' $ac_executable_extensions; do
 
4763
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
4764
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
4765
     ac_cv_prog_ac_ct_CC="$ac_prog"
 
4766
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
4767
     break 2
 
4768
   fi
 
4769
 done
 
4770
 done
 
4771
+IFS=$as_save_IFS
 
4772
 
 
4773
 fi
 
4774
 fi
 
4775
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 
4776
 if test -n "$ac_ct_CC"; then
 
4777
-  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
4778
-echo "${ECHO_T}$ac_ct_CC" >&6
 
4779
+  { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
 
4780
+echo "${ECHO_T}$ac_ct_CC" >&6; }
 
4781
 else
 
4782
-  echo "$as_me:$LINENO: result: no" >&5
 
4783
-echo "${ECHO_T}no" >&6
 
4784
+  { echo "$as_me:$LINENO: result: no" >&5
 
4785
+echo "${ECHO_T}no" >&6; }
 
4786
 fi
 
4787
 
 
4788
+
 
4789
   test -n "$ac_ct_CC" && break
 
4790
 done
 
4791
 
 
4792
-  CC=$ac_ct_CC
 
4793
+  if test "x$ac_ct_CC" = x; then
 
4794
+    CC=""
 
4795
+  else
 
4796
+    case $cross_compiling:$ac_tool_warned in
 
4797
+yes:)
 
4798
+{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
 
4799
+whose name does not start with the host triplet.  If you think this
 
4800
+configuration is useful to you, please write to autoconf@gnu.org." >&5
 
4801
+echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
 
4802
+whose name does not start with the host triplet.  If you think this
 
4803
+configuration is useful to you, please write to autoconf@gnu.org." >&2;}
 
4804
+ac_tool_warned=yes ;;
 
4805
+esac
 
4806
+    CC=$ac_ct_CC
 
4807
+  fi
 
4808
 fi
 
4809
 
 
4810
 fi
 
4811
@@ -3984,27 +4630,41 @@
 
4812
    { (exit 1); exit 1; }; }
 
4813
 
 
4814
 # Provide some information about the compiler.
 
4815
-echo "$as_me:$LINENO:" \
 
4816
-     "checking for C compiler version" >&5
 
4817
+echo "$as_me:$LINENO: checking for C compiler version" >&5
 
4818
 ac_compiler=`set X $ac_compile; echo $2`
 
4819
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
 
4820
-  (eval $ac_compiler --version </dev/null >&5) 2>&5
 
4821
+{ (ac_try="$ac_compiler --version >&5"
 
4822
+case "(($ac_try" in
 
4823
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4824
+  *) ac_try_echo=$ac_try;;
 
4825
+esac
 
4826
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4827
+  (eval "$ac_compiler --version >&5") 2>&5
 
4828
   ac_status=$?
 
4829
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4830
   (exit $ac_status); }
 
4831
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5
 
4832
-  (eval $ac_compiler -v </dev/null >&5) 2>&5
 
4833
+{ (ac_try="$ac_compiler -v >&5"
 
4834
+case "(($ac_try" in
 
4835
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4836
+  *) ac_try_echo=$ac_try;;
 
4837
+esac
 
4838
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4839
+  (eval "$ac_compiler -v >&5") 2>&5
 
4840
   ac_status=$?
 
4841
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4842
   (exit $ac_status); }
 
4843
-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5
 
4844
-  (eval $ac_compiler -V </dev/null >&5) 2>&5
 
4845
+{ (ac_try="$ac_compiler -V >&5"
 
4846
+case "(($ac_try" in
 
4847
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4848
+  *) ac_try_echo=$ac_try;;
 
4849
+esac
 
4850
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4851
+  (eval "$ac_compiler -V >&5") 2>&5
 
4852
   ac_status=$?
 
4853
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4854
   (exit $ac_status); }
 
4855
 
 
4856
-echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
4857
-echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 
4858
+{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
 
4859
+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }
 
4860
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
 
4861
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4862
 else
 
4863
@@ -4027,49 +4687,49 @@
 
4864
 }
 
4865
 _ACEOF
 
4866
 rm -f conftest.$ac_objext
 
4867
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
4868
-  (eval $ac_compile) 2>conftest.er1
 
4869
+if { (ac_try="$ac_compile"
 
4870
+case "(($ac_try" in
 
4871
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4872
+  *) ac_try_echo=$ac_try;;
 
4873
+esac
 
4874
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4875
+  (eval "$ac_compile") 2>conftest.er1
 
4876
   ac_status=$?
 
4877
   grep -v '^ *+' conftest.er1 >conftest.err
 
4878
   rm -f conftest.er1
 
4879
   cat conftest.err >&5
 
4880
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4881
-  (exit $ac_status); } &&
 
4882
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
4883
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4884
-  (eval $ac_try) 2>&5
 
4885
-  ac_status=$?
 
4886
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4887
-  (exit $ac_status); }; } &&
 
4888
-        { ac_try='test -s conftest.$ac_objext'
 
4889
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4890
-  (eval $ac_try) 2>&5
 
4891
-  ac_status=$?
 
4892
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4893
-  (exit $ac_status); }; }; then
 
4894
+  (exit $ac_status); } && {
 
4895
+        test -z "$ac_c_werror_flag" ||
 
4896
+        test ! -s conftest.err
 
4897
+       } && test -s conftest.$ac_objext; then
 
4898
   ac_compiler_gnu=yes
 
4899
 else
 
4900
   echo "$as_me: failed program was:" >&5
 
4901
 sed 's/^/| /' conftest.$ac_ext >&5
 
4902
 
 
4903
-ac_compiler_gnu=no
 
4904
+       ac_compiler_gnu=no
 
4905
 fi
 
4906
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
4907
+
 
4908
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
4909
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
4910
 
 
4911
 fi
 
4912
-echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
4913
-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 
4914
+{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
 
4915
+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; }
 
4916
 GCC=`test $ac_compiler_gnu = yes && echo yes`
 
4917
 ac_test_CFLAGS=${CFLAGS+set}
 
4918
 ac_save_CFLAGS=$CFLAGS
 
4919
-CFLAGS="-g"
 
4920
-echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
4921
-echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 
4922
+{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
 
4923
+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }
 
4924
 if test "${ac_cv_prog_cc_g+set}" = set; then
 
4925
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
4926
 else
 
4927
-  cat >conftest.$ac_ext <<_ACEOF
 
4928
+  ac_save_c_werror_flag=$ac_c_werror_flag
 
4929
+   ac_c_werror_flag=yes
 
4930
+   ac_cv_prog_cc_g=no
 
4931
+   CFLAGS="-g"
 
4932
+   cat >conftest.$ac_ext <<_ACEOF
 
4933
 /* confdefs.h.  */
 
4934
 _ACEOF
 
4935
 cat confdefs.h >>conftest.$ac_ext
 
4936
@@ -4085,306 +4745,248 @@
 
4937
 }
 
4938
 _ACEOF
 
4939
 rm -f conftest.$ac_objext
 
4940
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
4941
-  (eval $ac_compile) 2>conftest.er1
 
4942
+if { (ac_try="$ac_compile"
 
4943
+case "(($ac_try" in
 
4944
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
4945
+  *) ac_try_echo=$ac_try;;
 
4946
+esac
 
4947
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
4948
+  (eval "$ac_compile") 2>conftest.er1
 
4949
   ac_status=$?
 
4950
   grep -v '^ *+' conftest.er1 >conftest.err
 
4951
   rm -f conftest.er1
 
4952
   cat conftest.err >&5
 
4953
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4954
-  (exit $ac_status); } &&
 
4955
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
4956
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4957
-  (eval $ac_try) 2>&5
 
4958
-  ac_status=$?
 
4959
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4960
-  (exit $ac_status); }; } &&
 
4961
-        { ac_try='test -s conftest.$ac_objext'
 
4962
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
4963
-  (eval $ac_try) 2>&5
 
4964
-  ac_status=$?
 
4965
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
4966
-  (exit $ac_status); }; }; then
 
4967
+  (exit $ac_status); } && {
 
4968
+        test -z "$ac_c_werror_flag" ||
 
4969
+        test ! -s conftest.err
 
4970
+       } && test -s conftest.$ac_objext; then
 
4971
   ac_cv_prog_cc_g=yes
 
4972
 else
 
4973
   echo "$as_me: failed program was:" >&5
 
4974
 sed 's/^/| /' conftest.$ac_ext >&5
 
4975
 
 
4976
-ac_cv_prog_cc_g=no
 
4977
-fi
 
4978
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
4979
-fi
 
4980
-echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
4981
-echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 
4982
-if test "$ac_test_CFLAGS" = set; then
 
4983
-  CFLAGS=$ac_save_CFLAGS
 
4984
-elif test $ac_cv_prog_cc_g = yes; then
 
4985
-  if test "$GCC" = yes; then
 
4986
-    CFLAGS="-g -O2"
 
4987
-  else
 
4988
-    CFLAGS="-g"
 
4989
-  fi
 
4990
-else
 
4991
-  if test "$GCC" = yes; then
 
4992
-    CFLAGS="-O2"
 
4993
-  else
 
4994
-    CFLAGS=
 
4995
-  fi
 
4996
-fi
 
4997
-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
 
4998
-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 
4999
-if test "${ac_cv_prog_cc_stdc+set}" = set; then
 
5000
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
5001
-else
 
5002
-  ac_cv_prog_cc_stdc=no
 
5003
-ac_save_CC=$CC
 
5004
-cat >conftest.$ac_ext <<_ACEOF
 
5005
+       CFLAGS=""
 
5006
+      cat >conftest.$ac_ext <<_ACEOF
 
5007
 /* confdefs.h.  */
 
5008
 _ACEOF
 
5009
 cat confdefs.h >>conftest.$ac_ext
 
5010
 cat >>conftest.$ac_ext <<_ACEOF
 
5011
 /* end confdefs.h.  */
 
5012
-#include <stdarg.h>
 
5013
-#include <stdio.h>
 
5014
-#include <sys/types.h>
 
5015
-#include <sys/stat.h>
 
5016
-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 
5017
-struct buf { int x; };
 
5018
-FILE * (*rcsopen) (struct buf *, struct stat *, int);
 
5019
-static char *e (p, i)
 
5020
-     char **p;
 
5021
-     int i;
 
5022
-{
 
5023
-  return p[i];
 
5024
-}
 
5025
-static char *f (char * (*g) (char **, int), char **p, ...)
 
5026
-{
 
5027
-  char *s;
 
5028
-  va_list v;
 
5029
-  va_start (v,p);
 
5030
-  s = g (p, va_arg (v,int));
 
5031
-  va_end (v);
 
5032
-  return s;
 
5033
-}
 
5034
-
 
5035
-/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 
5036
-   function prototypes and stuff, but not '\xHH' hex character constants.
 
5037
-   These don't provoke an error unfortunately, instead are silently treated
 
5038
-   as 'x'.  The following induces an error, until -std1 is added to get
 
5039
-   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 
5040
-   array size at least.  It's necessary to write '\x00'==0 to get something
 
5041
-   that's true only with -std1.  */
 
5042
-int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 
5043
 
 
5044
-int test (int i, double x);
 
5045
-struct s1 {int (*f) (int a);};
 
5046
-struct s2 {int (*f) (double a);};
 
5047
-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 
5048
-int argc;
 
5049
-char **argv;
 
5050
 int
 
5051
 main ()
 
5052
 {
 
5053
-return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 
5054
+
 
5055
   ;
 
5056
   return 0;
 
5057
 }
 
5058
 _ACEOF
 
5059
-# Don't try gcc -ansi; that turns off useful extensions and
 
5060
-# breaks some systems' header files.
 
5061
-# AIX                  -qlanglvl=ansi
 
5062
-# Ultrix and OSF/1     -std1
 
5063
-# HP-UX 10.20 and later        -Ae
 
5064
-# HP-UX older versions -Aa -D_HPUX_SOURCE
 
5065
-# SVR4                 -Xc -D__EXTENSIONS__
 
5066
-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
5067
-do
 
5068
-  CC="$ac_save_CC $ac_arg"
 
5069
-  rm -f conftest.$ac_objext
 
5070
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
5071
-  (eval $ac_compile) 2>conftest.er1
 
5072
+rm -f conftest.$ac_objext
 
5073
+if { (ac_try="$ac_compile"
 
5074
+case "(($ac_try" in
 
5075
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5076
+  *) ac_try_echo=$ac_try;;
 
5077
+esac
 
5078
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5079
+  (eval "$ac_compile") 2>conftest.er1
 
5080
   ac_status=$?
 
5081
   grep -v '^ *+' conftest.er1 >conftest.err
 
5082
   rm -f conftest.er1
 
5083
   cat conftest.err >&5
 
5084
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5085
-  (exit $ac_status); } &&
 
5086
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5087
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5088
-  (eval $ac_try) 2>&5
 
5089
-  ac_status=$?
 
5090
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5091
-  (exit $ac_status); }; } &&
 
5092
-        { ac_try='test -s conftest.$ac_objext'
 
5093
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5094
-  (eval $ac_try) 2>&5
 
5095
-  ac_status=$?
 
5096
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5097
-  (exit $ac_status); }; }; then
 
5098
-  ac_cv_prog_cc_stdc=$ac_arg
 
5099
-break
 
5100
+  (exit $ac_status); } && {
 
5101
+        test -z "$ac_c_werror_flag" ||
 
5102
+        test ! -s conftest.err
 
5103
+       } && test -s conftest.$ac_objext; then
 
5104
+  :
 
5105
 else
 
5106
   echo "$as_me: failed program was:" >&5
 
5107
 sed 's/^/| /' conftest.$ac_ext >&5
 
5108
 
 
5109
-fi
 
5110
-rm -f conftest.err conftest.$ac_objext
 
5111
-done
 
5112
-rm -f conftest.$ac_ext conftest.$ac_objext
 
5113
-CC=$ac_save_CC
 
5114
-
 
5115
-fi
 
5116
-
 
5117
-case "x$ac_cv_prog_cc_stdc" in
 
5118
-  x|xno)
 
5119
-    echo "$as_me:$LINENO: result: none needed" >&5
 
5120
-echo "${ECHO_T}none needed" >&6 ;;
 
5121
-  *)
 
5122
-    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
 
5123
-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
 
5124
-    CC="$CC $ac_cv_prog_cc_stdc" ;;
 
5125
-esac
 
5126
-
 
5127
-# Some people use a C++ compiler to compile C.  Since we use `exit',
 
5128
-# in C++ we need to declare it.  In case someone uses the same compiler
 
5129
-# for both compiling C and C++ we need to have the C++ compiler decide
 
5130
-# the declaration of exit, since it's the most demanding environment.
 
5131
-cat >conftest.$ac_ext <<_ACEOF
 
5132
-#ifndef __cplusplus
 
5133
-  choke me
 
5134
-#endif
 
5135
-_ACEOF
 
5136
-rm -f conftest.$ac_objext
 
5137
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
5138
-  (eval $ac_compile) 2>conftest.er1
 
5139
-  ac_status=$?
 
5140
-  grep -v '^ *+' conftest.er1 >conftest.err
 
5141
-  rm -f conftest.er1
 
5142
-  cat conftest.err >&5
 
5143
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5144
-  (exit $ac_status); } &&
 
5145
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5146
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5147
-  (eval $ac_try) 2>&5
 
5148
-  ac_status=$?
 
5149
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5150
-  (exit $ac_status); }; } &&
 
5151
-        { ac_try='test -s conftest.$ac_objext'
 
5152
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5153
-  (eval $ac_try) 2>&5
 
5154
-  ac_status=$?
 
5155
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5156
-  (exit $ac_status); }; }; then
 
5157
-  for ac_declaration in \
 
5158
-   '' \
 
5159
-   'extern "C" void std::exit (int) throw (); using std::exit;' \
 
5160
-   'extern "C" void std::exit (int); using std::exit;' \
 
5161
-   'extern "C" void exit (int) throw ();' \
 
5162
-   'extern "C" void exit (int);' \
 
5163
-   'void exit (int);'
 
5164
-do
 
5165
-  cat >conftest.$ac_ext <<_ACEOF
 
5166
+       ac_c_werror_flag=$ac_save_c_werror_flag
 
5167
+        CFLAGS="-g"
 
5168
+        cat >conftest.$ac_ext <<_ACEOF
 
5169
 /* confdefs.h.  */
 
5170
 _ACEOF
 
5171
 cat confdefs.h >>conftest.$ac_ext
 
5172
 cat >>conftest.$ac_ext <<_ACEOF
 
5173
 /* end confdefs.h.  */
 
5174
-$ac_declaration
 
5175
-#include <stdlib.h>
 
5176
+
 
5177
 int
 
5178
 main ()
 
5179
 {
 
5180
-exit (42);
 
5181
+
 
5182
   ;
 
5183
   return 0;
 
5184
 }
 
5185
 _ACEOF
 
5186
 rm -f conftest.$ac_objext
 
5187
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
5188
-  (eval $ac_compile) 2>conftest.er1
 
5189
+if { (ac_try="$ac_compile"
 
5190
+case "(($ac_try" in
 
5191
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5192
+  *) ac_try_echo=$ac_try;;
 
5193
+esac
 
5194
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5195
+  (eval "$ac_compile") 2>conftest.er1
 
5196
   ac_status=$?
 
5197
   grep -v '^ *+' conftest.er1 >conftest.err
 
5198
   rm -f conftest.er1
 
5199
   cat conftest.err >&5
 
5200
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5201
-  (exit $ac_status); } &&
 
5202
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5203
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5204
-  (eval $ac_try) 2>&5
 
5205
-  ac_status=$?
 
5206
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5207
-  (exit $ac_status); }; } &&
 
5208
-        { ac_try='test -s conftest.$ac_objext'
 
5209
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5210
-  (eval $ac_try) 2>&5
 
5211
-  ac_status=$?
 
5212
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5213
-  (exit $ac_status); }; }; then
 
5214
-  :
 
5215
+  (exit $ac_status); } && {
 
5216
+        test -z "$ac_c_werror_flag" ||
 
5217
+        test ! -s conftest.err
 
5218
+       } && test -s conftest.$ac_objext; then
 
5219
+  ac_cv_prog_cc_g=yes
 
5220
 else
 
5221
   echo "$as_me: failed program was:" >&5
 
5222
 sed 's/^/| /' conftest.$ac_ext >&5
 
5223
 
 
5224
-continue
 
5225
+
 
5226
 fi
 
5227
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
5228
-  cat >conftest.$ac_ext <<_ACEOF
 
5229
+
 
5230
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
5231
+fi
 
5232
+
 
5233
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
5234
+fi
 
5235
+
 
5236
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
5237
+   ac_c_werror_flag=$ac_save_c_werror_flag
 
5238
+fi
 
5239
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
 
5240
+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }
 
5241
+if test "$ac_test_CFLAGS" = set; then
 
5242
+  CFLAGS=$ac_save_CFLAGS
 
5243
+elif test $ac_cv_prog_cc_g = yes; then
 
5244
+  if test "$GCC" = yes; then
 
5245
+    CFLAGS="-g -O2"
 
5246
+  else
 
5247
+    CFLAGS="-g"
 
5248
+  fi
 
5249
+else
 
5250
+  if test "$GCC" = yes; then
 
5251
+    CFLAGS="-O2"
 
5252
+  else
 
5253
+    CFLAGS=
 
5254
+  fi
 
5255
+fi
 
5256
+{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
 
5257
+echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }
 
5258
+if test "${ac_cv_prog_cc_c89+set}" = set; then
 
5259
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
5260
+else
 
5261
+  ac_cv_prog_cc_c89=no
 
5262
+ac_save_CC=$CC
 
5263
+cat >conftest.$ac_ext <<_ACEOF
 
5264
 /* confdefs.h.  */
 
5265
 _ACEOF
 
5266
 cat confdefs.h >>conftest.$ac_ext
 
5267
 cat >>conftest.$ac_ext <<_ACEOF
 
5268
 /* end confdefs.h.  */
 
5269
-$ac_declaration
 
5270
+#include <stdarg.h>
 
5271
+#include <stdio.h>
 
5272
+#include <sys/types.h>
 
5273
+#include <sys/stat.h>
 
5274
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
 
5275
+struct buf { int x; };
 
5276
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
 
5277
+static char *e (p, i)
 
5278
+     char **p;
 
5279
+     int i;
 
5280
+{
 
5281
+  return p[i];
 
5282
+}
 
5283
+static char *f (char * (*g) (char **, int), char **p, ...)
 
5284
+{
 
5285
+  char *s;
 
5286
+  va_list v;
 
5287
+  va_start (v,p);
 
5288
+  s = g (p, va_arg (v,int));
 
5289
+  va_end (v);
 
5290
+  return s;
 
5291
+}
 
5292
+
 
5293
+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has
 
5294
+   function prototypes and stuff, but not '\xHH' hex character constants.
 
5295
+   These don't provoke an error unfortunately, instead are silently treated
 
5296
+   as 'x'.  The following induces an error, until -std is added to get
 
5297
+   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an
 
5298
+   array size at least.  It's necessary to write '\x00'==0 to get something
 
5299
+   that's true only with -std.  */
 
5300
+int osf4_cc_array ['\x00' == 0 ? 1 : -1];
 
5301
+
 
5302
+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
 
5303
+   inside strings and character constants.  */
 
5304
+#define FOO(x) 'x'
 
5305
+int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
 
5306
+
 
5307
+int test (int i, double x);
 
5308
+struct s1 {int (*f) (int a);};
 
5309
+struct s2 {int (*f) (double a);};
 
5310
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
 
5311
+int argc;
 
5312
+char **argv;
 
5313
 int
 
5314
 main ()
 
5315
 {
 
5316
-exit (42);
 
5317
+return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
 
5318
   ;
 
5319
   return 0;
 
5320
 }
 
5321
 _ACEOF
 
5322
-rm -f conftest.$ac_objext
 
5323
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
5324
-  (eval $ac_compile) 2>conftest.er1
 
5325
+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
 
5326
+       -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
 
5327
+do
 
5328
+  CC="$ac_save_CC $ac_arg"
 
5329
+  rm -f conftest.$ac_objext
 
5330
+if { (ac_try="$ac_compile"
 
5331
+case "(($ac_try" in
 
5332
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5333
+  *) ac_try_echo=$ac_try;;
 
5334
+esac
 
5335
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5336
+  (eval "$ac_compile") 2>conftest.er1
 
5337
   ac_status=$?
 
5338
   grep -v '^ *+' conftest.er1 >conftest.err
 
5339
   rm -f conftest.er1
 
5340
   cat conftest.err >&5
 
5341
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5342
-  (exit $ac_status); } &&
 
5343
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5344
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5345
-  (eval $ac_try) 2>&5
 
5346
-  ac_status=$?
 
5347
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5348
-  (exit $ac_status); }; } &&
 
5349
-        { ac_try='test -s conftest.$ac_objext'
 
5350
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5351
-  (eval $ac_try) 2>&5
 
5352
-  ac_status=$?
 
5353
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5354
-  (exit $ac_status); }; }; then
 
5355
-  break
 
5356
+  (exit $ac_status); } && {
 
5357
+        test -z "$ac_c_werror_flag" ||
 
5358
+        test ! -s conftest.err
 
5359
+       } && test -s conftest.$ac_objext; then
 
5360
+  ac_cv_prog_cc_c89=$ac_arg
 
5361
 else
 
5362
   echo "$as_me: failed program was:" >&5
 
5363
 sed 's/^/| /' conftest.$ac_ext >&5
 
5364
 
 
5365
+
 
5366
 fi
 
5367
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
5368
+
 
5369
+rm -f core conftest.err conftest.$ac_objext
 
5370
+  test "x$ac_cv_prog_cc_c89" != "xno" && break
 
5371
 done
 
5372
-rm -f conftest*
 
5373
-if test -n "$ac_declaration"; then
 
5374
-  echo '#ifdef __cplusplus' >>confdefs.h
 
5375
-  echo $ac_declaration      >>confdefs.h
 
5376
-  echo '#endif'             >>confdefs.h
 
5377
+rm -f conftest.$ac_ext
 
5378
+CC=$ac_save_CC
 
5379
+
 
5380
 fi
 
5381
+# AC_CACHE_VAL
 
5382
+case "x$ac_cv_prog_cc_c89" in
 
5383
+  x)
 
5384
+    { echo "$as_me:$LINENO: result: none needed" >&5
 
5385
+echo "${ECHO_T}none needed" >&6; } ;;
 
5386
+  xno)
 
5387
+    { echo "$as_me:$LINENO: result: unsupported" >&5
 
5388
+echo "${ECHO_T}unsupported" >&6; } ;;
 
5389
+  *)
 
5390
+    CC="$CC $ac_cv_prog_cc_c89"
 
5391
+    { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
 
5392
+echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;
 
5393
+esac
 
5394
 
 
5395
-else
 
5396
-  echo "$as_me: failed program was:" >&5
 
5397
-sed 's/^/| /' conftest.$ac_ext >&5
 
5398
 
 
5399
-fi
 
5400
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
5401
 ac_ext=c
 
5402
 ac_cpp='$CPP $CPPFLAGS'
 
5403
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 
5404
@@ -4393,8 +4995,8 @@
 
5405
 
 
5406
 depcc="$CC"   am_compiler_list=
 
5407
 
 
5408
-echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
5409
-echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6
 
5410
+{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
 
5411
+echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }
 
5412
 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
 
5413
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5414
 else
 
5415
@@ -4483,8 +5085,8 @@
 
5416
 fi
 
5417
 
 
5418
 fi
 
5419
-echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
5420
-echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6
 
5421
+{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
 
5422
+echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }
 
5423
 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
 
5424
 
 
5425
 
 
5426
@@ -4513,8 +5115,8 @@
 
5427
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 
5428
 # OS/2's system install, which has a completely different semantic
 
5429
 # ./install, which can be erroneously created by make from ./install.sh.
 
5430
-echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
5431
-echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
 
5432
+{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
 
5433
+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; }
 
5434
 if test -z "$INSTALL"; then
 
5435
 if test "${ac_cv_path_install+set}" = set; then
 
5436
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5437
@@ -4536,7 +5138,7 @@
 
5438
     # by default.
 
5439
     for ac_prog in ginstall scoinst install; do
 
5440
       for ac_exec_ext in '' $ac_executable_extensions; do
 
5441
-       if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
 
5442
+       if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
 
5443
          if test $ac_prog = install &&
 
5444
            grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
 
5445
            # AIX install.  It has an incompatible calling convention.
 
5446
@@ -4555,21 +5157,22 @@
 
5447
     ;;
 
5448
 esac
 
5449
 done
 
5450
+IFS=$as_save_IFS
 
5451
 
 
5452
 
 
5453
 fi
 
5454
   if test "${ac_cv_path_install+set}" = set; then
 
5455
     INSTALL=$ac_cv_path_install
 
5456
   else
 
5457
-    # As a last resort, use the slow shell script.  We don't cache a
 
5458
-    # path for INSTALL within a source directory, because that will
 
5459
+    # As a last resort, use the slow shell script.  Don't cache a
 
5460
+    # value for INSTALL within a source directory, because that will
 
5461
     # break other packages using the cache if that directory is
 
5462
-    # removed, or if the path is relative.
 
5463
+    # removed, or if the value is a relative name.
 
5464
     INSTALL=$ac_install_sh
 
5465
   fi
 
5466
 fi
 
5467
-echo "$as_me:$LINENO: result: $INSTALL" >&5
 
5468
-echo "${ECHO_T}$INSTALL" >&6
 
5469
+{ echo "$as_me:$LINENO: result: $INSTALL" >&5
 
5470
+echo "${ECHO_T}$INSTALL" >&6; }
 
5471
 
 
5472
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
 
5473
 # It thinks the first close brace ends the variable substitution.
 
5474
@@ -4583,8 +5186,8 @@
 
5475
 do
 
5476
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
5477
 set dummy $ac_prog; ac_word=$2
 
5478
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
5479
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
5480
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
5481
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
5482
 if test "${ac_cv_prog_LEX+set}" = set; then
 
5483
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5484
 else
 
5485
@@ -4597,250 +5200,182 @@
 
5486
   IFS=$as_save_IFS
 
5487
   test -z "$as_dir" && as_dir=.
 
5488
   for ac_exec_ext in '' $ac_executable_extensions; do
 
5489
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
5490
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5491
     ac_cv_prog_LEX="$ac_prog"
 
5492
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
5493
     break 2
 
5494
   fi
 
5495
 done
 
5496
 done
 
5497
+IFS=$as_save_IFS
 
5498
 
 
5499
 fi
 
5500
 fi
 
5501
 LEX=$ac_cv_prog_LEX
 
5502
 if test -n "$LEX"; then
 
5503
-  echo "$as_me:$LINENO: result: $LEX" >&5
 
5504
-echo "${ECHO_T}$LEX" >&6
 
5505
+  { echo "$as_me:$LINENO: result: $LEX" >&5
 
5506
+echo "${ECHO_T}$LEX" >&6; }
 
5507
 else
 
5508
-  echo "$as_me:$LINENO: result: no" >&5
 
5509
-echo "${ECHO_T}no" >&6
 
5510
+  { echo "$as_me:$LINENO: result: no" >&5
 
5511
+echo "${ECHO_T}no" >&6; }
 
5512
 fi
 
5513
 
 
5514
+
 
5515
   test -n "$LEX" && break
 
5516
 done
 
5517
 test -n "$LEX" || LEX=":"
 
5518
 
 
5519
-if test -z "$LEXLIB"
 
5520
-then
 
5521
-  echo "$as_me:$LINENO: checking for yywrap in -lfl" >&5
 
5522
-echo $ECHO_N "checking for yywrap in -lfl... $ECHO_C" >&6
 
5523
-if test "${ac_cv_lib_fl_yywrap+set}" = set; then
 
5524
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
5525
-else
 
5526
-  ac_check_lib_save_LIBS=$LIBS
 
5527
-LIBS="-lfl  $LIBS"
 
5528
-cat >conftest.$ac_ext <<_ACEOF
 
5529
-/* confdefs.h.  */
 
5530
-_ACEOF
 
5531
-cat confdefs.h >>conftest.$ac_ext
 
5532
-cat >>conftest.$ac_ext <<_ACEOF
 
5533
-/* end confdefs.h.  */
 
5534
-
 
5535
-/* Override any gcc2 internal prototype to avoid an error.  */
 
5536
-#ifdef __cplusplus
 
5537
-extern "C"
 
5538
+if test "x$LEX" != "x:"; then
 
5539
+  cat >conftest.l <<_ACEOF
 
5540
+%%
 
5541
+a { ECHO; }
 
5542
+b { REJECT; }
 
5543
+c { yymore (); }
 
5544
+d { yyless (1); }
 
5545
+e { yyless (input () != 0); }
 
5546
+f { unput (yytext[0]); }
 
5547
+. { BEGIN INITIAL; }
 
5548
+%%
 
5549
+#ifdef YYTEXT_POINTER
 
5550
+extern char *yytext;
 
5551
 #endif
 
5552
-/* We use char because int might match the return type of a gcc2
 
5553
-   builtin and then its argument prototype would still apply.  */
 
5554
-char yywrap ();
 
5555
 int
 
5556
-main ()
 
5557
+main (void)
 
5558
 {
 
5559
-yywrap ();
 
5560
-  ;
 
5561
-  return 0;
 
5562
+  return ! yylex () + ! yywrap ();
 
5563
 }
 
5564
 _ACEOF
 
5565
-rm -f conftest.$ac_objext conftest$ac_exeext
 
5566
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
5567
-  (eval $ac_link) 2>conftest.er1
 
5568
-  ac_status=$?
 
5569
-  grep -v '^ *+' conftest.er1 >conftest.err
 
5570
-  rm -f conftest.er1
 
5571
-  cat conftest.err >&5
 
5572
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5573
-  (exit $ac_status); } &&
 
5574
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5575
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5576
-  (eval $ac_try) 2>&5
 
5577
-  ac_status=$?
 
5578
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5579
-  (exit $ac_status); }; } &&
 
5580
-        { ac_try='test -s conftest$ac_exeext'
 
5581
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5582
-  (eval $ac_try) 2>&5
 
5583
+{ (ac_try="$LEX conftest.l"
 
5584
+case "(($ac_try" in
 
5585
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5586
+  *) ac_try_echo=$ac_try;;
 
5587
+esac
 
5588
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5589
+  (eval "$LEX conftest.l") 2>&5
 
5590
   ac_status=$?
 
5591
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5592
-  (exit $ac_status); }; }; then
 
5593
-  ac_cv_lib_fl_yywrap=yes
 
5594
+  (exit $ac_status); }
 
5595
+{ echo "$as_me:$LINENO: checking lex output file root" >&5
 
5596
+echo $ECHO_N "checking lex output file root... $ECHO_C" >&6; }
 
5597
+if test "${ac_cv_prog_lex_root+set}" = set; then
 
5598
+  echo $ECHO_N "(cached) $ECHO_C" >&6
 
5599
 else
 
5600
-  echo "$as_me: failed program was:" >&5
 
5601
-sed 's/^/| /' conftest.$ac_ext >&5
 
5602
 
 
5603
-ac_cv_lib_fl_yywrap=no
 
5604
+if test -f lex.yy.c; then
 
5605
+  ac_cv_prog_lex_root=lex.yy
 
5606
+elif test -f lexyy.c; then
 
5607
+  ac_cv_prog_lex_root=lexyy
 
5608
+else
 
5609
+  { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
 
5610
+echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
 
5611
+   { (exit 1); exit 1; }; }
 
5612
 fi
 
5613
-rm -f conftest.err conftest.$ac_objext \
 
5614
-      conftest$ac_exeext conftest.$ac_ext
 
5615
-LIBS=$ac_check_lib_save_LIBS
 
5616
 fi
 
5617
-echo "$as_me:$LINENO: result: $ac_cv_lib_fl_yywrap" >&5
 
5618
-echo "${ECHO_T}$ac_cv_lib_fl_yywrap" >&6
 
5619
-if test $ac_cv_lib_fl_yywrap = yes; then
 
5620
-  LEXLIB="-lfl"
 
5621
-else
 
5622
-  echo "$as_me:$LINENO: checking for yywrap in -ll" >&5
 
5623
-echo $ECHO_N "checking for yywrap in -ll... $ECHO_C" >&6
 
5624
-if test "${ac_cv_lib_l_yywrap+set}" = set; then
 
5625
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
 
5626
+echo "${ECHO_T}$ac_cv_prog_lex_root" >&6; }
 
5627
+LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
 
5628
+
 
5629
+if test -z "${LEXLIB+set}"; then
 
5630
+  { echo "$as_me:$LINENO: checking lex library" >&5
 
5631
+echo $ECHO_N "checking lex library... $ECHO_C" >&6; }
 
5632
+if test "${ac_cv_lib_lex+set}" = set; then
 
5633
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5634
 else
 
5635
-  ac_check_lib_save_LIBS=$LIBS
 
5636
-LIBS="-ll  $LIBS"
 
5637
-cat >conftest.$ac_ext <<_ACEOF
 
5638
-/* confdefs.h.  */
 
5639
-_ACEOF
 
5640
-cat confdefs.h >>conftest.$ac_ext
 
5641
-cat >>conftest.$ac_ext <<_ACEOF
 
5642
-/* end confdefs.h.  */
 
5643
 
 
5644
-/* Override any gcc2 internal prototype to avoid an error.  */
 
5645
-#ifdef __cplusplus
 
5646
-extern "C"
 
5647
-#endif
 
5648
-/* We use char because int might match the return type of a gcc2
 
5649
-   builtin and then its argument prototype would still apply.  */
 
5650
-char yywrap ();
 
5651
-int
 
5652
-main ()
 
5653
-{
 
5654
-yywrap ();
 
5655
-  ;
 
5656
-  return 0;
 
5657
-}
 
5658
+    ac_save_LIBS=$LIBS
 
5659
+    ac_cv_lib_lex='none needed'
 
5660
+    for ac_lib in '' -lfl -ll; do
 
5661
+      LIBS="$ac_lib $ac_save_LIBS"
 
5662
+      cat >conftest.$ac_ext <<_ACEOF
 
5663
+`cat $LEX_OUTPUT_ROOT.c`
 
5664
 _ACEOF
 
5665
 rm -f conftest.$ac_objext conftest$ac_exeext
 
5666
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
5667
-  (eval $ac_link) 2>conftest.er1
 
5668
+if { (ac_try="$ac_link"
 
5669
+case "(($ac_try" in
 
5670
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5671
+  *) ac_try_echo=$ac_try;;
 
5672
+esac
 
5673
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5674
+  (eval "$ac_link") 2>conftest.er1
 
5675
   ac_status=$?
 
5676
   grep -v '^ *+' conftest.er1 >conftest.err
 
5677
   rm -f conftest.er1
 
5678
   cat conftest.err >&5
 
5679
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5680
-  (exit $ac_status); } &&
 
5681
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5682
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5683
-  (eval $ac_try) 2>&5
 
5684
-  ac_status=$?
 
5685
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5686
-  (exit $ac_status); }; } &&
 
5687
-        { ac_try='test -s conftest$ac_exeext'
 
5688
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5689
-  (eval $ac_try) 2>&5
 
5690
-  ac_status=$?
 
5691
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5692
-  (exit $ac_status); }; }; then
 
5693
-  ac_cv_lib_l_yywrap=yes
 
5694
+  (exit $ac_status); } && {
 
5695
+        test -z "$ac_c_werror_flag" ||
 
5696
+        test ! -s conftest.err
 
5697
+       } && test -s conftest$ac_exeext &&
 
5698
+       $as_test_x conftest$ac_exeext; then
 
5699
+  ac_cv_lib_lex=$ac_lib
 
5700
 else
 
5701
   echo "$as_me: failed program was:" >&5
 
5702
 sed 's/^/| /' conftest.$ac_ext >&5
 
5703
 
 
5704
-ac_cv_lib_l_yywrap=no
 
5705
+
 
5706
 fi
 
5707
-rm -f conftest.err conftest.$ac_objext \
 
5708
+
 
5709
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5710
       conftest$ac_exeext conftest.$ac_ext
 
5711
-LIBS=$ac_check_lib_save_LIBS
 
5712
-fi
 
5713
-echo "$as_me:$LINENO: result: $ac_cv_lib_l_yywrap" >&5
 
5714
-echo "${ECHO_T}$ac_cv_lib_l_yywrap" >&6
 
5715
-if test $ac_cv_lib_l_yywrap = yes; then
 
5716
-  LEXLIB="-ll"
 
5717
-fi
 
5718
+      test "$ac_cv_lib_lex" != 'none needed' && break
 
5719
+    done
 
5720
+    LIBS=$ac_save_LIBS
 
5721
 
 
5722
 fi
 
5723
-
 
5724
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_lex" >&5
 
5725
+echo "${ECHO_T}$ac_cv_lib_lex" >&6; }
 
5726
+  test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex
 
5727
 fi
 
5728
 
 
5729
-if test "x$LEX" != "x:"; then
 
5730
-  echo "$as_me:$LINENO: checking lex output file root" >&5
 
5731
-echo $ECHO_N "checking lex output file root... $ECHO_C" >&6
 
5732
-if test "${ac_cv_prog_lex_root+set}" = set; then
 
5733
-  echo $ECHO_N "(cached) $ECHO_C" >&6
 
5734
-else
 
5735
-  # The minimal lex program is just a single line: %%.  But some broken lexes
 
5736
-# (Solaris, I think it was) want two %% lines, so accommodate them.
 
5737
-cat >conftest.l <<_ACEOF
 
5738
-%%
 
5739
-%%
 
5740
-_ACEOF
 
5741
-{ (eval echo "$as_me:$LINENO: \"$LEX conftest.l\"") >&5
 
5742
-  (eval $LEX conftest.l) 2>&5
 
5743
-  ac_status=$?
 
5744
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5745
-  (exit $ac_status); }
 
5746
-if test -f lex.yy.c; then
 
5747
-  ac_cv_prog_lex_root=lex.yy
 
5748
-elif test -f lexyy.c; then
 
5749
-  ac_cv_prog_lex_root=lexyy
 
5750
-else
 
5751
-  { { echo "$as_me:$LINENO: error: cannot find output from $LEX; giving up" >&5
 
5752
-echo "$as_me: error: cannot find output from $LEX; giving up" >&2;}
 
5753
-   { (exit 1); exit 1; }; }
 
5754
-fi
 
5755
-fi
 
5756
-echo "$as_me:$LINENO: result: $ac_cv_prog_lex_root" >&5
 
5757
-echo "${ECHO_T}$ac_cv_prog_lex_root" >&6
 
5758
-rm -f conftest.l
 
5759
-LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root
 
5760
 
 
5761
-echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
 
5762
-echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6
 
5763
+{ echo "$as_me:$LINENO: checking whether yytext is a pointer" >&5
 
5764
+echo $ECHO_N "checking whether yytext is a pointer... $ECHO_C" >&6; }
 
5765
 if test "${ac_cv_prog_lex_yytext_pointer+set}" = set; then
 
5766
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5767
 else
 
5768
   # POSIX says lex can declare yytext either as a pointer or an array; the
 
5769
-# default is implementation-dependent. Figure out which it is, since
 
5770
+# default is implementation-dependent.  Figure out which it is, since
 
5771
 # not all implementations provide the %pointer and %array declarations.
 
5772
 ac_cv_prog_lex_yytext_pointer=no
 
5773
-echo 'extern char *yytext;' >>$LEX_OUTPUT_ROOT.c
 
5774
 ac_save_LIBS=$LIBS
 
5775
-LIBS="$LIBS $LEXLIB"
 
5776
+LIBS="$LEXLIB $ac_save_LIBS"
 
5777
 cat >conftest.$ac_ext <<_ACEOF
 
5778
+#define YYTEXT_POINTER 1
 
5779
 `cat $LEX_OUTPUT_ROOT.c`
 
5780
 _ACEOF
 
5781
 rm -f conftest.$ac_objext conftest$ac_exeext
 
5782
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
5783
-  (eval $ac_link) 2>conftest.er1
 
5784
+if { (ac_try="$ac_link"
 
5785
+case "(($ac_try" in
 
5786
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5787
+  *) ac_try_echo=$ac_try;;
 
5788
+esac
 
5789
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5790
+  (eval "$ac_link") 2>conftest.er1
 
5791
   ac_status=$?
 
5792
   grep -v '^ *+' conftest.er1 >conftest.err
 
5793
   rm -f conftest.er1
 
5794
   cat conftest.err >&5
 
5795
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5796
-  (exit $ac_status); } &&
 
5797
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5798
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5799
-  (eval $ac_try) 2>&5
 
5800
-  ac_status=$?
 
5801
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5802
-  (exit $ac_status); }; } &&
 
5803
-        { ac_try='test -s conftest$ac_exeext'
 
5804
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5805
-  (eval $ac_try) 2>&5
 
5806
-  ac_status=$?
 
5807
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5808
-  (exit $ac_status); }; }; then
 
5809
+  (exit $ac_status); } && {
 
5810
+        test -z "$ac_c_werror_flag" ||
 
5811
+        test ! -s conftest.err
 
5812
+       } && test -s conftest$ac_exeext &&
 
5813
+       $as_test_x conftest$ac_exeext; then
 
5814
   ac_cv_prog_lex_yytext_pointer=yes
 
5815
 else
 
5816
   echo "$as_me: failed program was:" >&5
 
5817
 sed 's/^/| /' conftest.$ac_ext >&5
 
5818
 
 
5819
+
 
5820
 fi
 
5821
-rm -f conftest.err conftest.$ac_objext \
 
5822
+
 
5823
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5824
       conftest$ac_exeext conftest.$ac_ext
 
5825
 LIBS=$ac_save_LIBS
 
5826
-rm -f "${LEX_OUTPUT_ROOT}.c"
 
5827
 
 
5828
 fi
 
5829
-echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
 
5830
-echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6
 
5831
+{ echo "$as_me:$LINENO: result: $ac_cv_prog_lex_yytext_pointer" >&5
 
5832
+echo "${ECHO_T}$ac_cv_prog_lex_yytext_pointer" >&6; }
 
5833
 if test $ac_cv_prog_lex_yytext_pointer = yes; then
 
5834
 
 
5835
 cat >>confdefs.h <<\_ACEOF
 
5836
@@ -4848,6 +5383,7 @@
 
5837
 _ACEOF
 
5838
 
 
5839
 fi
 
5840
+rm -f conftest.l $LEX_OUTPUT_ROOT.c
 
5841
 
 
5842
 fi
 
5843
 if test "$LEX" = :; then
 
5844
@@ -4857,8 +5393,8 @@
 
5845
 do
 
5846
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 
5847
 set dummy $ac_prog; ac_word=$2
 
5848
-echo "$as_me:$LINENO: checking for $ac_word" >&5
 
5849
-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 
5850
+{ echo "$as_me:$LINENO: checking for $ac_word" >&5
 
5851
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
 
5852
 if test "${ac_cv_prog_YACC+set}" = set; then
 
5853
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5854
 else
 
5855
@@ -4871,25 +5407,27 @@
 
5856
   IFS=$as_save_IFS
 
5857
   test -z "$as_dir" && as_dir=.
 
5858
   for ac_exec_ext in '' $ac_executable_extensions; do
 
5859
-  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
 
5860
+  if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
 
5861
     ac_cv_prog_YACC="$ac_prog"
 
5862
     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
 
5863
     break 2
 
5864
   fi
 
5865
 done
 
5866
 done
 
5867
+IFS=$as_save_IFS
 
5868
 
 
5869
 fi
 
5870
 fi
 
5871
 YACC=$ac_cv_prog_YACC
 
5872
 if test -n "$YACC"; then
 
5873
-  echo "$as_me:$LINENO: result: $YACC" >&5
 
5874
-echo "${ECHO_T}$YACC" >&6
 
5875
+  { echo "$as_me:$LINENO: result: $YACC" >&5
 
5876
+echo "${ECHO_T}$YACC" >&6; }
 
5877
 else
 
5878
-  echo "$as_me:$LINENO: result: no" >&5
 
5879
-echo "${ECHO_T}no" >&6
 
5880
+  { echo "$as_me:$LINENO: result: no" >&5
 
5881
+echo "${ECHO_T}no" >&6; }
 
5882
 fi
 
5883
 
 
5884
+
 
5885
   test -n "$YACC" && break
 
5886
 done
 
5887
 test -n "$YACC" || YACC="yacc"
 
5888
@@ -4897,8 +5435,8 @@
 
5889
 
 
5890
 ## Checks for libraries.
 
5891
 
 
5892
-echo "$as_me:$LINENO: checking for log in -lm" >&5
 
5893
-echo $ECHO_N "checking for log in -lm... $ECHO_C" >&6
 
5894
+{ echo "$as_me:$LINENO: checking for log in -lm" >&5
 
5895
+echo $ECHO_N "checking for log in -lm... $ECHO_C" >&6; }
 
5896
 if test "${ac_cv_lib_m_log+set}" = set; then
 
5897
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5898
 else
 
5899
@@ -4911,55 +5449,53 @@
 
5900
 cat >>conftest.$ac_ext <<_ACEOF
 
5901
 /* end confdefs.h.  */
 
5902
 
 
5903
-/* Override any gcc2 internal prototype to avoid an error.  */
 
5904
+/* Override any GCC internal prototype to avoid an error.
 
5905
+   Use char because int might match the return type of a GCC
 
5906
+   builtin and then its argument prototype would still apply.  */
 
5907
 #ifdef __cplusplus
 
5908
 extern "C"
 
5909
 #endif
 
5910
-/* We use char because int might match the return type of a gcc2
 
5911
-   builtin and then its argument prototype would still apply.  */
 
5912
 char log ();
 
5913
 int
 
5914
 main ()
 
5915
 {
 
5916
-log ();
 
5917
+return log ();
 
5918
   ;
 
5919
   return 0;
 
5920
 }
 
5921
 _ACEOF
 
5922
 rm -f conftest.$ac_objext conftest$ac_exeext
 
5923
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
5924
-  (eval $ac_link) 2>conftest.er1
 
5925
+if { (ac_try="$ac_link"
 
5926
+case "(($ac_try" in
 
5927
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
5928
+  *) ac_try_echo=$ac_try;;
 
5929
+esac
 
5930
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
5931
+  (eval "$ac_link") 2>conftest.er1
 
5932
   ac_status=$?
 
5933
   grep -v '^ *+' conftest.er1 >conftest.err
 
5934
   rm -f conftest.er1
 
5935
   cat conftest.err >&5
 
5936
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5937
-  (exit $ac_status); } &&
 
5938
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
5939
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5940
-  (eval $ac_try) 2>&5
 
5941
-  ac_status=$?
 
5942
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5943
-  (exit $ac_status); }; } &&
 
5944
-        { ac_try='test -s conftest$ac_exeext'
 
5945
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
5946
-  (eval $ac_try) 2>&5
 
5947
-  ac_status=$?
 
5948
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
5949
-  (exit $ac_status); }; }; then
 
5950
+  (exit $ac_status); } && {
 
5951
+        test -z "$ac_c_werror_flag" ||
 
5952
+        test ! -s conftest.err
 
5953
+       } && test -s conftest$ac_exeext &&
 
5954
+       $as_test_x conftest$ac_exeext; then
 
5955
   ac_cv_lib_m_log=yes
 
5956
 else
 
5957
   echo "$as_me: failed program was:" >&5
 
5958
 sed 's/^/| /' conftest.$ac_ext >&5
 
5959
 
 
5960
-ac_cv_lib_m_log=no
 
5961
+       ac_cv_lib_m_log=no
 
5962
 fi
 
5963
-rm -f conftest.err conftest.$ac_objext \
 
5964
+
 
5965
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
5966
       conftest$ac_exeext conftest.$ac_ext
 
5967
 LIBS=$ac_check_lib_save_LIBS
 
5968
 fi
 
5969
-echo "$as_me:$LINENO: result: $ac_cv_lib_m_log" >&5
 
5970
-echo "${ECHO_T}$ac_cv_lib_m_log" >&6
 
5971
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_m_log" >&5
 
5972
+echo "${ECHO_T}$ac_cv_lib_m_log" >&6; }
 
5973
 if test $ac_cv_lib_m_log = yes; then
 
5974
   cat >>confdefs.h <<_ACEOF
 
5975
 #define HAVE_LIBM 1
 
5976
@@ -4976,8 +5512,8 @@
 
5977
 INCLUDESINTER=""
 
5978
 
 
5979
 # Decide if mailinspect will be interactive
 
5980
-echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
 
5981
-echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6
 
5982
+{ echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
 
5983
+echo $ECHO_N "checking for initscr in -lncurses... $ECHO_C" >&6; }
 
5984
 if test "${ac_cv_lib_ncurses_initscr+set}" = set; then
 
5985
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
5986
 else
 
5987
@@ -4990,59 +5526,57 @@
 
5988
 cat >>conftest.$ac_ext <<_ACEOF
 
5989
 /* end confdefs.h.  */
 
5990
 
 
5991
-/* Override any gcc2 internal prototype to avoid an error.  */
 
5992
+/* Override any GCC internal prototype to avoid an error.
 
5993
+   Use char because int might match the return type of a GCC
 
5994
+   builtin and then its argument prototype would still apply.  */
 
5995
 #ifdef __cplusplus
 
5996
 extern "C"
 
5997
 #endif
 
5998
-/* We use char because int might match the return type of a gcc2
 
5999
-   builtin and then its argument prototype would still apply.  */
 
6000
 char initscr ();
 
6001
 int
 
6002
 main ()
 
6003
 {
 
6004
-initscr ();
 
6005
+return initscr ();
 
6006
   ;
 
6007
   return 0;
 
6008
 }
 
6009
 _ACEOF
 
6010
 rm -f conftest.$ac_objext conftest$ac_exeext
 
6011
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
6012
-  (eval $ac_link) 2>conftest.er1
 
6013
+if { (ac_try="$ac_link"
 
6014
+case "(($ac_try" in
 
6015
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6016
+  *) ac_try_echo=$ac_try;;
 
6017
+esac
 
6018
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6019
+  (eval "$ac_link") 2>conftest.er1
 
6020
   ac_status=$?
 
6021
   grep -v '^ *+' conftest.er1 >conftest.err
 
6022
   rm -f conftest.er1
 
6023
   cat conftest.err >&5
 
6024
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6025
-  (exit $ac_status); } &&
 
6026
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6027
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6028
-  (eval $ac_try) 2>&5
 
6029
-  ac_status=$?
 
6030
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6031
-  (exit $ac_status); }; } &&
 
6032
-        { ac_try='test -s conftest$ac_exeext'
 
6033
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6034
-  (eval $ac_try) 2>&5
 
6035
-  ac_status=$?
 
6036
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6037
-  (exit $ac_status); }; }; then
 
6038
+  (exit $ac_status); } && {
 
6039
+        test -z "$ac_c_werror_flag" ||
 
6040
+        test ! -s conftest.err
 
6041
+       } && test -s conftest$ac_exeext &&
 
6042
+       $as_test_x conftest$ac_exeext; then
 
6043
   ac_cv_lib_ncurses_initscr=yes
 
6044
 else
 
6045
   echo "$as_me: failed program was:" >&5
 
6046
 sed 's/^/| /' conftest.$ac_ext >&5
 
6047
 
 
6048
-ac_cv_lib_ncurses_initscr=no
 
6049
+       ac_cv_lib_ncurses_initscr=no
 
6050
 fi
 
6051
-rm -f conftest.err conftest.$ac_objext \
 
6052
+
 
6053
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6054
       conftest$ac_exeext conftest.$ac_ext
 
6055
 LIBS=$ac_check_lib_save_LIBS
 
6056
 fi
 
6057
-echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5
 
6058
-echo "${ECHO_T}$ac_cv_lib_ncurses_initscr" >&6
 
6059
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_initscr" >&5
 
6060
+echo "${ECHO_T}$ac_cv_lib_ncurses_initscr" >&6; }
 
6061
 if test $ac_cv_lib_ncurses_initscr = yes; then
 
6062
 
 
6063
-       echo "$as_me:$LINENO: checking for readline in -lreadline" >&5
 
6064
-echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6
 
6065
+       { echo "$as_me:$LINENO: checking for readline in -lreadline" >&5
 
6066
+echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6; }
 
6067
 if test "${ac_cv_lib_readline_readline+set}" = set; then
 
6068
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6069
 else
 
6070
@@ -5055,59 +5589,57 @@
 
6071
 cat >>conftest.$ac_ext <<_ACEOF
 
6072
 /* end confdefs.h.  */
 
6073
 
 
6074
-/* Override any gcc2 internal prototype to avoid an error.  */
 
6075
+/* Override any GCC internal prototype to avoid an error.
 
6076
+   Use char because int might match the return type of a GCC
 
6077
+   builtin and then its argument prototype would still apply.  */
 
6078
 #ifdef __cplusplus
 
6079
 extern "C"
 
6080
 #endif
 
6081
-/* We use char because int might match the return type of a gcc2
 
6082
-   builtin and then its argument prototype would still apply.  */
 
6083
 char readline ();
 
6084
 int
 
6085
 main ()
 
6086
 {
 
6087
-readline ();
 
6088
+return readline ();
 
6089
   ;
 
6090
   return 0;
 
6091
 }
 
6092
 _ACEOF
 
6093
 rm -f conftest.$ac_objext conftest$ac_exeext
 
6094
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
6095
-  (eval $ac_link) 2>conftest.er1
 
6096
+if { (ac_try="$ac_link"
 
6097
+case "(($ac_try" in
 
6098
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6099
+  *) ac_try_echo=$ac_try;;
 
6100
+esac
 
6101
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6102
+  (eval "$ac_link") 2>conftest.er1
 
6103
   ac_status=$?
 
6104
   grep -v '^ *+' conftest.er1 >conftest.err
 
6105
   rm -f conftest.er1
 
6106
   cat conftest.err >&5
 
6107
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6108
-  (exit $ac_status); } &&
 
6109
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6110
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6111
-  (eval $ac_try) 2>&5
 
6112
-  ac_status=$?
 
6113
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6114
-  (exit $ac_status); }; } &&
 
6115
-        { ac_try='test -s conftest$ac_exeext'
 
6116
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6117
-  (eval $ac_try) 2>&5
 
6118
-  ac_status=$?
 
6119
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6120
-  (exit $ac_status); }; }; then
 
6121
+  (exit $ac_status); } && {
 
6122
+        test -z "$ac_c_werror_flag" ||
 
6123
+        test ! -s conftest.err
 
6124
+       } && test -s conftest$ac_exeext &&
 
6125
+       $as_test_x conftest$ac_exeext; then
 
6126
   ac_cv_lib_readline_readline=yes
 
6127
 else
 
6128
   echo "$as_me: failed program was:" >&5
 
6129
 sed 's/^/| /' conftest.$ac_ext >&5
 
6130
 
 
6131
-ac_cv_lib_readline_readline=no
 
6132
+       ac_cv_lib_readline_readline=no
 
6133
 fi
 
6134
-rm -f conftest.err conftest.$ac_objext \
 
6135
+
 
6136
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6137
       conftest$ac_exeext conftest.$ac_ext
 
6138
 LIBS=$ac_check_lib_save_LIBS
 
6139
 fi
 
6140
-echo "$as_me:$LINENO: result: $ac_cv_lib_readline_readline" >&5
 
6141
-echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6
 
6142
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_readline_readline" >&5
 
6143
+echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6; }
 
6144
 if test $ac_cv_lib_readline_readline = yes; then
 
6145
 
 
6146
-               echo "$as_me:$LINENO: checking for SLsmg_init_smg in -lslang" >&5
 
6147
-echo $ECHO_N "checking for SLsmg_init_smg in -lslang... $ECHO_C" >&6
 
6148
+               { echo "$as_me:$LINENO: checking for SLsmg_init_smg in -lslang" >&5
 
6149
+echo $ECHO_N "checking for SLsmg_init_smg in -lslang... $ECHO_C" >&6; }
 
6150
 if test "${ac_cv_lib_slang_SLsmg_init_smg+set}" = set; then
 
6151
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6152
 else
 
6153
@@ -5120,55 +5652,53 @@
 
6154
 cat >>conftest.$ac_ext <<_ACEOF
 
6155
 /* end confdefs.h.  */
 
6156
 
 
6157
-/* Override any gcc2 internal prototype to avoid an error.  */
 
6158
+/* Override any GCC internal prototype to avoid an error.
 
6159
+   Use char because int might match the return type of a GCC
 
6160
+   builtin and then its argument prototype would still apply.  */
 
6161
 #ifdef __cplusplus
 
6162
 extern "C"
 
6163
 #endif
 
6164
-/* We use char because int might match the return type of a gcc2
 
6165
-   builtin and then its argument prototype would still apply.  */
 
6166
 char SLsmg_init_smg ();
 
6167
 int
 
6168
 main ()
 
6169
 {
 
6170
-SLsmg_init_smg ();
 
6171
+return SLsmg_init_smg ();
 
6172
   ;
 
6173
   return 0;
 
6174
 }
 
6175
 _ACEOF
 
6176
 rm -f conftest.$ac_objext conftest$ac_exeext
 
6177
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
6178
-  (eval $ac_link) 2>conftest.er1
 
6179
+if { (ac_try="$ac_link"
 
6180
+case "(($ac_try" in
 
6181
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6182
+  *) ac_try_echo=$ac_try;;
 
6183
+esac
 
6184
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6185
+  (eval "$ac_link") 2>conftest.er1
 
6186
   ac_status=$?
 
6187
   grep -v '^ *+' conftest.er1 >conftest.err
 
6188
   rm -f conftest.er1
 
6189
   cat conftest.err >&5
 
6190
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6191
-  (exit $ac_status); } &&
 
6192
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6193
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6194
-  (eval $ac_try) 2>&5
 
6195
-  ac_status=$?
 
6196
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6197
-  (exit $ac_status); }; } &&
 
6198
-        { ac_try='test -s conftest$ac_exeext'
 
6199
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6200
-  (eval $ac_try) 2>&5
 
6201
-  ac_status=$?
 
6202
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6203
-  (exit $ac_status); }; }; then
 
6204
+  (exit $ac_status); } && {
 
6205
+        test -z "$ac_c_werror_flag" ||
 
6206
+        test ! -s conftest.err
 
6207
+       } && test -s conftest$ac_exeext &&
 
6208
+       $as_test_x conftest$ac_exeext; then
 
6209
   ac_cv_lib_slang_SLsmg_init_smg=yes
 
6210
 else
 
6211
   echo "$as_me: failed program was:" >&5
 
6212
 sed 's/^/| /' conftest.$ac_ext >&5
 
6213
 
 
6214
-ac_cv_lib_slang_SLsmg_init_smg=no
 
6215
+       ac_cv_lib_slang_SLsmg_init_smg=no
 
6216
 fi
 
6217
-rm -f conftest.err conftest.$ac_objext \
 
6218
+
 
6219
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6220
       conftest$ac_exeext conftest.$ac_ext
 
6221
 LIBS=$ac_check_lib_save_LIBS
 
6222
 fi
 
6223
-echo "$as_me:$LINENO: result: $ac_cv_lib_slang_SLsmg_init_smg" >&5
 
6224
-echo "${ECHO_T}$ac_cv_lib_slang_SLsmg_init_smg" >&6
 
6225
+{ echo "$as_me:$LINENO: result: $ac_cv_lib_slang_SLsmg_init_smg" >&5
 
6226
+echo "${ECHO_T}$ac_cv_lib_slang_SLsmg_init_smg" >&6; }
 
6227
 if test $ac_cv_lib_slang_SLsmg_init_smg = yes; then
 
6228
 
 
6229
                        LDADDINTER="-lslang -lreadline -lncurses"
 
6230
@@ -5210,8 +5740,8 @@
 
6231
 
 
6232
 
 
6233
 ## Checks for header files.
 
6234
-echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
6235
-echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 
6236
+{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
 
6237
+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
 
6238
 if test "${ac_cv_header_stdc+set}" = set; then
 
6239
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6240
 else
 
6241
@@ -5235,34 +5765,31 @@
 
6242
 }
 
6243
 _ACEOF
 
6244
 rm -f conftest.$ac_objext
 
6245
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6246
-  (eval $ac_compile) 2>conftest.er1
 
6247
+if { (ac_try="$ac_compile"
 
6248
+case "(($ac_try" in
 
6249
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6250
+  *) ac_try_echo=$ac_try;;
 
6251
+esac
 
6252
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6253
+  (eval "$ac_compile") 2>conftest.er1
 
6254
   ac_status=$?
 
6255
   grep -v '^ *+' conftest.er1 >conftest.err
 
6256
   rm -f conftest.er1
 
6257
   cat conftest.err >&5
 
6258
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6259
-  (exit $ac_status); } &&
 
6260
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6261
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6262
-  (eval $ac_try) 2>&5
 
6263
-  ac_status=$?
 
6264
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6265
-  (exit $ac_status); }; } &&
 
6266
-        { ac_try='test -s conftest.$ac_objext'
 
6267
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6268
-  (eval $ac_try) 2>&5
 
6269
-  ac_status=$?
 
6270
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6271
-  (exit $ac_status); }; }; then
 
6272
+  (exit $ac_status); } && {
 
6273
+        test -z "$ac_c_werror_flag" ||
 
6274
+        test ! -s conftest.err
 
6275
+       } && test -s conftest.$ac_objext; then
 
6276
   ac_cv_header_stdc=yes
 
6277
 else
 
6278
   echo "$as_me: failed program was:" >&5
 
6279
 sed 's/^/| /' conftest.$ac_ext >&5
 
6280
 
 
6281
-ac_cv_header_stdc=no
 
6282
+       ac_cv_header_stdc=no
 
6283
 fi
 
6284
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
6285
+
 
6286
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
6287
 
 
6288
 if test $ac_cv_header_stdc = yes; then
 
6289
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
 
6290
@@ -5318,6 +5845,7 @@
 
6291
 cat >>conftest.$ac_ext <<_ACEOF
 
6292
 /* end confdefs.h.  */
 
6293
 #include <ctype.h>
 
6294
+#include <stdlib.h>
 
6295
 #if ((' ' & 0x0FF) == 0x020)
 
6296
 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
 
6297
 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
 
6298
@@ -5337,18 +5865,27 @@
 
6299
   for (i = 0; i < 256; i++)
 
6300
     if (XOR (islower (i), ISLOWER (i))
 
6301
        || toupper (i) != TOUPPER (i))
 
6302
-      exit(2);
 
6303
-  exit (0);
 
6304
+      return 2;
 
6305
+  return 0;
 
6306
 }
 
6307
 _ACEOF
 
6308
 rm -f conftest$ac_exeext
 
6309
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
6310
-  (eval $ac_link) 2>&5
 
6311
+if { (ac_try="$ac_link"
 
6312
+case "(($ac_try" in
 
6313
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6314
+  *) ac_try_echo=$ac_try;;
 
6315
+esac
 
6316
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6317
+  (eval "$ac_link") 2>&5
 
6318
   ac_status=$?
 
6319
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6320
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
6321
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6322
-  (eval $ac_try) 2>&5
 
6323
+  { (case "(($ac_try" in
 
6324
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6325
+  *) ac_try_echo=$ac_try;;
 
6326
+esac
 
6327
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6328
+  (eval "$ac_try") 2>&5
 
6329
   ac_status=$?
 
6330
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6331
   (exit $ac_status); }; }; then
 
6332
@@ -5361,12 +5898,14 @@
 
6333
 ( exit $ac_status )
 
6334
 ac_cv_header_stdc=no
 
6335
 fi
 
6336
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
6337
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
6338
 fi
 
6339
+
 
6340
+
 
6341
 fi
 
6342
 fi
 
6343
-echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
6344
-echo "${ECHO_T}$ac_cv_header_stdc" >&6
 
6345
+{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
 
6346
+echo "${ECHO_T}$ac_cv_header_stdc" >&6; }
 
6347
 if test $ac_cv_header_stdc = yes; then
 
6348
 
 
6349
 cat >>confdefs.h <<\_ACEOF
 
6350
@@ -5384,18 +5923,19 @@
 
6351
 for ac_header in features.h langinfo.h unistd.h sys/mman.h mman.h netinet/in.h
 
6352
 do
 
6353
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
6354
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6355
-  echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6356
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
6357
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6358
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6359
+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6360
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
6361
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6362
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6363
 fi
 
6364
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
6365
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
6366
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
6367
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
6368
+echo "${ECHO_T}$ac_res" >&6; }
 
6369
 else
 
6370
   # Is the header compilable?
 
6371
-echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6372
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
 
6373
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6374
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
 
6375
 cat >conftest.$ac_ext <<_ACEOF
 
6376
 /* confdefs.h.  */
 
6377
 _ACEOF
 
6378
@@ -5406,40 +5946,37 @@
 
6379
 #include <$ac_header>
 
6380
 _ACEOF
 
6381
 rm -f conftest.$ac_objext
 
6382
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6383
-  (eval $ac_compile) 2>conftest.er1
 
6384
+if { (ac_try="$ac_compile"
 
6385
+case "(($ac_try" in
 
6386
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6387
+  *) ac_try_echo=$ac_try;;
 
6388
+esac
 
6389
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6390
+  (eval "$ac_compile") 2>conftest.er1
 
6391
   ac_status=$?
 
6392
   grep -v '^ *+' conftest.er1 >conftest.err
 
6393
   rm -f conftest.er1
 
6394
   cat conftest.err >&5
 
6395
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6396
-  (exit $ac_status); } &&
 
6397
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6398
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6399
-  (eval $ac_try) 2>&5
 
6400
-  ac_status=$?
 
6401
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6402
-  (exit $ac_status); }; } &&
 
6403
-        { ac_try='test -s conftest.$ac_objext'
 
6404
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6405
-  (eval $ac_try) 2>&5
 
6406
-  ac_status=$?
 
6407
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6408
-  (exit $ac_status); }; }; then
 
6409
+  (exit $ac_status); } && {
 
6410
+        test -z "$ac_c_werror_flag" ||
 
6411
+        test ! -s conftest.err
 
6412
+       } && test -s conftest.$ac_objext; then
 
6413
   ac_header_compiler=yes
 
6414
 else
 
6415
   echo "$as_me: failed program was:" >&5
 
6416
 sed 's/^/| /' conftest.$ac_ext >&5
 
6417
 
 
6418
-ac_header_compiler=no
 
6419
+       ac_header_compiler=no
 
6420
 fi
 
6421
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
6422
-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
6423
-echo "${ECHO_T}$ac_header_compiler" >&6
 
6424
+
 
6425
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
6426
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
6427
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
6428
 
 
6429
 # Is the header present?
 
6430
-echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
6431
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
 
6432
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
6433
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
 
6434
 cat >conftest.$ac_ext <<_ACEOF
 
6435
 /* confdefs.h.  */
 
6436
 _ACEOF
 
6437
@@ -5448,24 +5985,22 @@
 
6438
 /* end confdefs.h.  */
 
6439
 #include <$ac_header>
 
6440
 _ACEOF
 
6441
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
6442
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
6443
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
6444
+case "(($ac_try" in
 
6445
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6446
+  *) ac_try_echo=$ac_try;;
 
6447
+esac
 
6448
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6449
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
6450
   ac_status=$?
 
6451
   grep -v '^ *+' conftest.er1 >conftest.err
 
6452
   rm -f conftest.er1
 
6453
   cat conftest.err >&5
 
6454
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6455
-  (exit $ac_status); } >/dev/null; then
 
6456
-  if test -s conftest.err; then
 
6457
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
6458
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
6459
-  else
 
6460
-    ac_cpp_err=
 
6461
-  fi
 
6462
-else
 
6463
-  ac_cpp_err=yes
 
6464
-fi
 
6465
-if test -z "$ac_cpp_err"; then
 
6466
+  (exit $ac_status); } >/dev/null && {
 
6467
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
6468
+        test ! -s conftest.err
 
6469
+       }; then
 
6470
   ac_header_preproc=yes
 
6471
 else
 
6472
   echo "$as_me: failed program was:" >&5
 
6473
@@ -5473,9 +6008,10 @@
 
6474
 
 
6475
   ac_header_preproc=no
 
6476
 fi
 
6477
+
 
6478
 rm -f conftest.err conftest.$ac_ext
 
6479
-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
6480
-echo "${ECHO_T}$ac_header_preproc" >&6
 
6481
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
6482
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
6483
 
 
6484
 # So?  What about this header?
 
6485
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
6486
@@ -5499,25 +6035,24 @@
 
6487
 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
6488
     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
6489
 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
6490
-    (
 
6491
-      cat <<\_ASBOX
 
6492
+    ( cat <<\_ASBOX
 
6493
 ## -------------------------------- ##
 
6494
 ## Report this to laird@lbreyer.com ##
 
6495
 ## -------------------------------- ##
 
6496
 _ASBOX
 
6497
-    ) |
 
6498
-      sed "s/^/$as_me: WARNING:     /" >&2
 
6499
+     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
6500
     ;;
 
6501
 esac
 
6502
-echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6503
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
6504
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6505
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6506
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
6507
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6508
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6509
 else
 
6510
   eval "$as_ac_Header=\$ac_header_preproc"
 
6511
 fi
 
6512
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
6513
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
6514
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
6515
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
6516
+echo "${ECHO_T}$ac_res" >&6; }
 
6517
 
 
6518
 fi
 
6519
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
6520
@@ -5534,18 +6069,19 @@
 
6521
 for ac_header in wchar.h wctype.h
 
6522
 do
 
6523
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
6524
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6525
-  echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6526
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
6527
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6528
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6529
+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6530
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
6531
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6532
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6533
 fi
 
6534
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
6535
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
6536
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
6537
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
6538
+echo "${ECHO_T}$ac_res" >&6; }
 
6539
 else
 
6540
   # Is the header compilable?
 
6541
-echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6542
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
 
6543
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6544
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
 
6545
 cat >conftest.$ac_ext <<_ACEOF
 
6546
 /* confdefs.h.  */
 
6547
 _ACEOF
 
6548
@@ -5556,40 +6092,37 @@
 
6549
 #include <$ac_header>
 
6550
 _ACEOF
 
6551
 rm -f conftest.$ac_objext
 
6552
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6553
-  (eval $ac_compile) 2>conftest.er1
 
6554
+if { (ac_try="$ac_compile"
 
6555
+case "(($ac_try" in
 
6556
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6557
+  *) ac_try_echo=$ac_try;;
 
6558
+esac
 
6559
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6560
+  (eval "$ac_compile") 2>conftest.er1
 
6561
   ac_status=$?
 
6562
   grep -v '^ *+' conftest.er1 >conftest.err
 
6563
   rm -f conftest.er1
 
6564
   cat conftest.err >&5
 
6565
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6566
-  (exit $ac_status); } &&
 
6567
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6568
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6569
-  (eval $ac_try) 2>&5
 
6570
-  ac_status=$?
 
6571
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6572
-  (exit $ac_status); }; } &&
 
6573
-        { ac_try='test -s conftest.$ac_objext'
 
6574
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6575
-  (eval $ac_try) 2>&5
 
6576
-  ac_status=$?
 
6577
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6578
-  (exit $ac_status); }; }; then
 
6579
+  (exit $ac_status); } && {
 
6580
+        test -z "$ac_c_werror_flag" ||
 
6581
+        test ! -s conftest.err
 
6582
+       } && test -s conftest.$ac_objext; then
 
6583
   ac_header_compiler=yes
 
6584
 else
 
6585
   echo "$as_me: failed program was:" >&5
 
6586
 sed 's/^/| /' conftest.$ac_ext >&5
 
6587
 
 
6588
-ac_header_compiler=no
 
6589
+       ac_header_compiler=no
 
6590
 fi
 
6591
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
6592
-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
6593
-echo "${ECHO_T}$ac_header_compiler" >&6
 
6594
+
 
6595
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
6596
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
6597
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
6598
 
 
6599
 # Is the header present?
 
6600
-echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
6601
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
 
6602
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
6603
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
 
6604
 cat >conftest.$ac_ext <<_ACEOF
 
6605
 /* confdefs.h.  */
 
6606
 _ACEOF
 
6607
@@ -5598,24 +6131,22 @@
 
6608
 /* end confdefs.h.  */
 
6609
 #include <$ac_header>
 
6610
 _ACEOF
 
6611
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
6612
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
6613
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
6614
+case "(($ac_try" in
 
6615
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6616
+  *) ac_try_echo=$ac_try;;
 
6617
+esac
 
6618
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6619
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
6620
   ac_status=$?
 
6621
   grep -v '^ *+' conftest.er1 >conftest.err
 
6622
   rm -f conftest.er1
 
6623
   cat conftest.err >&5
 
6624
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6625
-  (exit $ac_status); } >/dev/null; then
 
6626
-  if test -s conftest.err; then
 
6627
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
6628
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
6629
-  else
 
6630
-    ac_cpp_err=
 
6631
-  fi
 
6632
-else
 
6633
-  ac_cpp_err=yes
 
6634
-fi
 
6635
-if test -z "$ac_cpp_err"; then
 
6636
+  (exit $ac_status); } >/dev/null && {
 
6637
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
6638
+        test ! -s conftest.err
 
6639
+       }; then
 
6640
   ac_header_preproc=yes
 
6641
 else
 
6642
   echo "$as_me: failed program was:" >&5
 
6643
@@ -5623,9 +6154,10 @@
 
6644
 
 
6645
   ac_header_preproc=no
 
6646
 fi
 
6647
+
 
6648
 rm -f conftest.err conftest.$ac_ext
 
6649
-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
6650
-echo "${ECHO_T}$ac_header_preproc" >&6
 
6651
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
6652
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
6653
 
 
6654
 # So?  What about this header?
 
6655
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
6656
@@ -5649,25 +6181,24 @@
 
6657
 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
6658
     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
6659
 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
6660
-    (
 
6661
-      cat <<\_ASBOX
 
6662
+    ( cat <<\_ASBOX
 
6663
 ## -------------------------------- ##
 
6664
 ## Report this to laird@lbreyer.com ##
 
6665
 ## -------------------------------- ##
 
6666
 _ASBOX
 
6667
-    ) |
 
6668
-      sed "s/^/$as_me: WARNING:     /" >&2
 
6669
+     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
6670
     ;;
 
6671
 esac
 
6672
-echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6673
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
6674
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6675
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6676
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
6677
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6678
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6679
 else
 
6680
   eval "$as_ac_Header=\$ac_header_preproc"
 
6681
 fi
 
6682
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
6683
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
6684
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
6685
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
6686
+echo "${ECHO_T}$ac_res" >&6; }
 
6687
 
 
6688
 fi
 
6689
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
6690
@@ -5686,8 +6217,8 @@
 
6691
 
 
6692
 
 
6693
 ## Checks for typedefs, structures, and compiler characteristics.
 
6694
-echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
 
6695
-echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
 
6696
+{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
 
6697
+echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; }
 
6698
 if test "${ac_cv_c_const+set}" = set; then
 
6699
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6700
 else
 
6701
@@ -5705,10 +6236,10 @@
 
6702
 #ifndef __cplusplus
 
6703
   /* Ultrix mips cc rejects this.  */
 
6704
   typedef int charset[2];
 
6705
-  const charset x;
 
6706
+  const charset cs;
 
6707
   /* SunOS 4.1.1 cc rejects this.  */
 
6708
-  char const *const *ccp;
 
6709
-  char **p;
 
6710
+  char const *const *pcpcc;
 
6711
+  char **ppc;
 
6712
   /* NEC SVR4.0.2 mips cc rejects this.  */
 
6713
   struct point {int x, y;};
 
6714
   static struct point const zero = {0,0};
 
6715
@@ -5717,16 +6248,17 @@
 
6716
      an arm of an if-expression whose if-part is not a constant
 
6717
      expression */
 
6718
   const char *g = "string";
 
6719
-  ccp = &g + (g ? g-g : 0);
 
6720
+  pcpcc = &g + (g ? g-g : 0);
 
6721
   /* HPUX 7.0 cc rejects these. */
 
6722
-  ++ccp;
 
6723
-  p = (char**) ccp;
 
6724
-  ccp = (char const *const *) p;
 
6725
+  ++pcpcc;
 
6726
+  ppc = (char**) pcpcc;
 
6727
+  pcpcc = (char const *const *) ppc;
 
6728
   { /* SCO 3.2v4 cc rejects this.  */
 
6729
     char *t;
 
6730
     char const *s = 0 ? (char *) 0 : (char const *) 0;
 
6731
 
 
6732
     *t++ = 0;
 
6733
+    if (s) return 0;
 
6734
   }
 
6735
   { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */
 
6736
     int x[] = {25, 17};
 
6737
@@ -5745,7 +6277,9 @@
 
6738
   }
 
6739
   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
 
6740
     const int foo = 10;
 
6741
+    if (!foo) return 0;
 
6742
   }
 
6743
+  return !cs[0] && !zero.x;
 
6744
 #endif
 
6745
 
 
6746
   ;
 
6747
@@ -5753,37 +6287,34 @@
 
6748
 }
 
6749
 _ACEOF
 
6750
 rm -f conftest.$ac_objext
 
6751
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6752
-  (eval $ac_compile) 2>conftest.er1
 
6753
+if { (ac_try="$ac_compile"
 
6754
+case "(($ac_try" in
 
6755
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6756
+  *) ac_try_echo=$ac_try;;
 
6757
+esac
 
6758
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6759
+  (eval "$ac_compile") 2>conftest.er1
 
6760
   ac_status=$?
 
6761
   grep -v '^ *+' conftest.er1 >conftest.err
 
6762
   rm -f conftest.er1
 
6763
   cat conftest.err >&5
 
6764
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6765
-  (exit $ac_status); } &&
 
6766
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6767
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6768
-  (eval $ac_try) 2>&5
 
6769
-  ac_status=$?
 
6770
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6771
-  (exit $ac_status); }; } &&
 
6772
-        { ac_try='test -s conftest.$ac_objext'
 
6773
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6774
-  (eval $ac_try) 2>&5
 
6775
-  ac_status=$?
 
6776
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6777
-  (exit $ac_status); }; }; then
 
6778
+  (exit $ac_status); } && {
 
6779
+        test -z "$ac_c_werror_flag" ||
 
6780
+        test ! -s conftest.err
 
6781
+       } && test -s conftest.$ac_objext; then
 
6782
   ac_cv_c_const=yes
 
6783
 else
 
6784
   echo "$as_me: failed program was:" >&5
 
6785
 sed 's/^/| /' conftest.$ac_ext >&5
 
6786
 
 
6787
-ac_cv_c_const=no
 
6788
+       ac_cv_c_const=no
 
6789
 fi
 
6790
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
6791
+
 
6792
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
6793
 fi
 
6794
-echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
 
6795
-echo "${ECHO_T}$ac_cv_c_const" >&6
 
6796
+{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5
 
6797
+echo "${ECHO_T}$ac_cv_c_const" >&6; }
 
6798
 if test $ac_cv_c_const = no; then
 
6799
 
 
6800
 cat >>confdefs.h <<\_ACEOF
 
6801
@@ -5792,8 +6323,8 @@
 
6802
 
 
6803
 fi
 
6804
 
 
6805
-echo "$as_me:$LINENO: checking for size_t" >&5
 
6806
-echo $ECHO_N "checking for size_t... $ECHO_C" >&6
 
6807
+{ echo "$as_me:$LINENO: checking for size_t" >&5
 
6808
+echo $ECHO_N "checking for size_t... $ECHO_C" >&6; }
 
6809
 if test "${ac_cv_type_size_t+set}" = set; then
 
6810
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6811
 else
 
6812
@@ -5804,55 +6335,53 @@
 
6813
 cat >>conftest.$ac_ext <<_ACEOF
 
6814
 /* end confdefs.h.  */
 
6815
 $ac_includes_default
 
6816
+typedef size_t ac__type_new_;
 
6817
 int
 
6818
 main ()
 
6819
 {
 
6820
-if ((size_t *) 0)
 
6821
+if ((ac__type_new_ *) 0)
 
6822
   return 0;
 
6823
-if (sizeof (size_t))
 
6824
+if (sizeof (ac__type_new_))
 
6825
   return 0;
 
6826
   ;
 
6827
   return 0;
 
6828
 }
 
6829
 _ACEOF
 
6830
 rm -f conftest.$ac_objext
 
6831
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6832
-  (eval $ac_compile) 2>conftest.er1
 
6833
+if { (ac_try="$ac_compile"
 
6834
+case "(($ac_try" in
 
6835
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6836
+  *) ac_try_echo=$ac_try;;
 
6837
+esac
 
6838
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6839
+  (eval "$ac_compile") 2>conftest.er1
 
6840
   ac_status=$?
 
6841
   grep -v '^ *+' conftest.er1 >conftest.err
 
6842
   rm -f conftest.er1
 
6843
   cat conftest.err >&5
 
6844
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6845
-  (exit $ac_status); } &&
 
6846
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6847
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6848
-  (eval $ac_try) 2>&5
 
6849
-  ac_status=$?
 
6850
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6851
-  (exit $ac_status); }; } &&
 
6852
-        { ac_try='test -s conftest.$ac_objext'
 
6853
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6854
-  (eval $ac_try) 2>&5
 
6855
-  ac_status=$?
 
6856
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6857
-  (exit $ac_status); }; }; then
 
6858
+  (exit $ac_status); } && {
 
6859
+        test -z "$ac_c_werror_flag" ||
 
6860
+        test ! -s conftest.err
 
6861
+       } && test -s conftest.$ac_objext; then
 
6862
   ac_cv_type_size_t=yes
 
6863
 else
 
6864
   echo "$as_me: failed program was:" >&5
 
6865
 sed 's/^/| /' conftest.$ac_ext >&5
 
6866
 
 
6867
-ac_cv_type_size_t=no
 
6868
+       ac_cv_type_size_t=no
 
6869
 fi
 
6870
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
6871
+
 
6872
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
6873
 fi
 
6874
-echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
 
6875
-echo "${ECHO_T}$ac_cv_type_size_t" >&6
 
6876
+{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5
 
6877
+echo "${ECHO_T}$ac_cv_type_size_t" >&6; }
 
6878
 if test $ac_cv_type_size_t = yes; then
 
6879
   :
 
6880
 else
 
6881
 
 
6882
 cat >>confdefs.h <<_ACEOF
 
6883
-#define size_t unsigned
 
6884
+#define size_t unsigned int
 
6885
 _ACEOF
 
6886
 
 
6887
 fi
 
6888
@@ -5860,8 +6389,8 @@
 
6889
 
 
6890
 ## Checks for library functions.
 
6891
 
 
6892
-  echo "$as_me:$LINENO: checking whether mbrtowc and mbstate_t are properly declared" >&5
 
6893
-echo $ECHO_N "checking whether mbrtowc and mbstate_t are properly declared... $ECHO_C" >&6
 
6894
+  { echo "$as_me:$LINENO: checking whether mbrtowc and mbstate_t are properly declared" >&5
 
6895
+echo $ECHO_N "checking whether mbrtowc and mbstate_t are properly declared... $ECHO_C" >&6; }
 
6896
 if test "${ac_cv_func_mbrtowc+set}" = set; then
 
6897
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6898
 else
 
6899
@@ -5875,44 +6404,46 @@
 
6900
 int
 
6901
 main ()
 
6902
 {
 
6903
-mbstate_t state; return ! (sizeof state && mbrtowc);
 
6904
+wchar_t wc;
 
6905
+             char const s[] = "";
 
6906
+             size_t n = 1;
 
6907
+             mbstate_t state;
 
6908
+             return ! (sizeof state && (mbrtowc) (&wc, s, n, &state));
 
6909
   ;
 
6910
   return 0;
 
6911
 }
 
6912
 _ACEOF
 
6913
 rm -f conftest.$ac_objext conftest$ac_exeext
 
6914
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
6915
-  (eval $ac_link) 2>conftest.er1
 
6916
+if { (ac_try="$ac_link"
 
6917
+case "(($ac_try" in
 
6918
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
6919
+  *) ac_try_echo=$ac_try;;
 
6920
+esac
 
6921
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
6922
+  (eval "$ac_link") 2>conftest.er1
 
6923
   ac_status=$?
 
6924
   grep -v '^ *+' conftest.er1 >conftest.err
 
6925
   rm -f conftest.er1
 
6926
   cat conftest.err >&5
 
6927
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6928
-  (exit $ac_status); } &&
 
6929
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
6930
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6931
-  (eval $ac_try) 2>&5
 
6932
-  ac_status=$?
 
6933
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6934
-  (exit $ac_status); }; } &&
 
6935
-        { ac_try='test -s conftest$ac_exeext'
 
6936
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
6937
-  (eval $ac_try) 2>&5
 
6938
-  ac_status=$?
 
6939
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
6940
-  (exit $ac_status); }; }; then
 
6941
+  (exit $ac_status); } && {
 
6942
+        test -z "$ac_c_werror_flag" ||
 
6943
+        test ! -s conftest.err
 
6944
+       } && test -s conftest$ac_exeext &&
 
6945
+       $as_test_x conftest$ac_exeext; then
 
6946
   ac_cv_func_mbrtowc=yes
 
6947
 else
 
6948
   echo "$as_me: failed program was:" >&5
 
6949
 sed 's/^/| /' conftest.$ac_ext >&5
 
6950
 
 
6951
-ac_cv_func_mbrtowc=no
 
6952
+       ac_cv_func_mbrtowc=no
 
6953
 fi
 
6954
-rm -f conftest.err conftest.$ac_objext \
 
6955
+
 
6956
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
6957
       conftest$ac_exeext conftest.$ac_ext
 
6958
 fi
 
6959
-echo "$as_me:$LINENO: result: $ac_cv_func_mbrtowc" >&5
 
6960
-echo "${ECHO_T}$ac_cv_func_mbrtowc" >&6
 
6961
+{ echo "$as_me:$LINENO: result: $ac_cv_func_mbrtowc" >&5
 
6962
+echo "${ECHO_T}$ac_cv_func_mbrtowc" >&6; }
 
6963
   if test $ac_cv_func_mbrtowc = yes; then
 
6964
 
 
6965
 cat >>confdefs.h <<\_ACEOF
 
6966
@@ -5926,18 +6457,19 @@
 
6967
 for ac_header in stdlib.h unistd.h
 
6968
 do
 
6969
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 
6970
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6971
-  echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6972
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
6973
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
6974
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6975
+  { echo "$as_me:$LINENO: checking for $ac_header" >&5
 
6976
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
6977
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
6978
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
6979
 fi
 
6980
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
6981
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
6982
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
6983
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
6984
+echo "${ECHO_T}$ac_res" >&6; }
 
6985
 else
 
6986
   # Is the header compilable?
 
6987
-echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6988
-echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
 
6989
+{ echo "$as_me:$LINENO: checking $ac_header usability" >&5
 
6990
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }
 
6991
 cat >conftest.$ac_ext <<_ACEOF
 
6992
 /* confdefs.h.  */
 
6993
 _ACEOF
 
6994
@@ -5948,40 +6480,37 @@
 
6995
 #include <$ac_header>
 
6996
 _ACEOF
 
6997
 rm -f conftest.$ac_objext
 
6998
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
 
6999
-  (eval $ac_compile) 2>conftest.er1
 
7000
+if { (ac_try="$ac_compile"
 
7001
+case "(($ac_try" in
 
7002
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7003
+  *) ac_try_echo=$ac_try;;
 
7004
+esac
 
7005
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7006
+  (eval "$ac_compile") 2>conftest.er1
 
7007
   ac_status=$?
 
7008
   grep -v '^ *+' conftest.er1 >conftest.err
 
7009
   rm -f conftest.er1
 
7010
   cat conftest.err >&5
 
7011
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7012
-  (exit $ac_status); } &&
 
7013
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7014
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7015
-  (eval $ac_try) 2>&5
 
7016
-  ac_status=$?
 
7017
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7018
-  (exit $ac_status); }; } &&
 
7019
-        { ac_try='test -s conftest.$ac_objext'
 
7020
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7021
-  (eval $ac_try) 2>&5
 
7022
-  ac_status=$?
 
7023
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7024
-  (exit $ac_status); }; }; then
 
7025
+  (exit $ac_status); } && {
 
7026
+        test -z "$ac_c_werror_flag" ||
 
7027
+        test ! -s conftest.err
 
7028
+       } && test -s conftest.$ac_objext; then
 
7029
   ac_header_compiler=yes
 
7030
 else
 
7031
   echo "$as_me: failed program was:" >&5
 
7032
 sed 's/^/| /' conftest.$ac_ext >&5
 
7033
 
 
7034
-ac_header_compiler=no
 
7035
+       ac_header_compiler=no
 
7036
 fi
 
7037
-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
 
7038
-echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
7039
-echo "${ECHO_T}$ac_header_compiler" >&6
 
7040
+
 
7041
+rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
7042
+{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
 
7043
+echo "${ECHO_T}$ac_header_compiler" >&6; }
 
7044
 
 
7045
 # Is the header present?
 
7046
-echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
7047
-echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
 
7048
+{ echo "$as_me:$LINENO: checking $ac_header presence" >&5
 
7049
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }
 
7050
 cat >conftest.$ac_ext <<_ACEOF
 
7051
 /* confdefs.h.  */
 
7052
 _ACEOF
 
7053
@@ -5990,24 +6519,22 @@
 
7054
 /* end confdefs.h.  */
 
7055
 #include <$ac_header>
 
7056
 _ACEOF
 
7057
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
 
7058
-  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
 
7059
+if { (ac_try="$ac_cpp conftest.$ac_ext"
 
7060
+case "(($ac_try" in
 
7061
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7062
+  *) ac_try_echo=$ac_try;;
 
7063
+esac
 
7064
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7065
+  (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1
 
7066
   ac_status=$?
 
7067
   grep -v '^ *+' conftest.er1 >conftest.err
 
7068
   rm -f conftest.er1
 
7069
   cat conftest.err >&5
 
7070
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7071
-  (exit $ac_status); } >/dev/null; then
 
7072
-  if test -s conftest.err; then
 
7073
-    ac_cpp_err=$ac_c_preproc_warn_flag
 
7074
-    ac_cpp_err=$ac_cpp_err$ac_c_werror_flag
 
7075
-  else
 
7076
-    ac_cpp_err=
 
7077
-  fi
 
7078
-else
 
7079
-  ac_cpp_err=yes
 
7080
-fi
 
7081
-if test -z "$ac_cpp_err"; then
 
7082
+  (exit $ac_status); } >/dev/null && {
 
7083
+        test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
 
7084
+        test ! -s conftest.err
 
7085
+       }; then
 
7086
   ac_header_preproc=yes
 
7087
 else
 
7088
   echo "$as_me: failed program was:" >&5
 
7089
@@ -6015,9 +6542,10 @@
 
7090
 
 
7091
   ac_header_preproc=no
 
7092
 fi
 
7093
+
 
7094
 rm -f conftest.err conftest.$ac_ext
 
7095
-echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
7096
-echo "${ECHO_T}$ac_header_preproc" >&6
 
7097
+{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
 
7098
+echo "${ECHO_T}$ac_header_preproc" >&6; }
 
7099
 
 
7100
 # So?  What about this header?
 
7101
 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in
 
7102
@@ -6041,25 +6569,24 @@
 
7103
 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
 
7104
     { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5
 
7105
 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}
 
7106
-    (
 
7107
-      cat <<\_ASBOX
 
7108
+    ( cat <<\_ASBOX
 
7109
 ## -------------------------------- ##
 
7110
 ## Report this to laird@lbreyer.com ##
 
7111
 ## -------------------------------- ##
 
7112
 _ASBOX
 
7113
-    ) |
 
7114
-      sed "s/^/$as_me: WARNING:     /" >&2
 
7115
+     ) | sed "s/^/$as_me: WARNING:     /" >&2
 
7116
     ;;
 
7117
 esac
 
7118
-echo "$as_me:$LINENO: checking for $ac_header" >&5
 
7119
-echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 
7120
-if eval "test \"\${$as_ac_Header+set}\" = set"; then
 
7121
+{ echo "$as_me:$LINENO: checking for $ac_header" >&5
 
7122
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }
 
7123
+if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then
 
7124
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7125
 else
 
7126
   eval "$as_ac_Header=\$ac_header_preproc"
 
7127
 fi
 
7128
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
 
7129
-echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
 
7130
+ac_res=`eval echo '${'$as_ac_Header'}'`
 
7131
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
7132
+echo "${ECHO_T}$ac_res" >&6; }
 
7133
 
 
7134
 fi
 
7135
 if test `eval echo '${'$as_ac_Header'}'` = yes; then
 
7136
@@ -6075,9 +6602,9 @@
 
7137
 for ac_func in getpagesize
 
7138
 do
 
7139
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
7140
-echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7141
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 
7142
-if eval "test \"\${$as_ac_var+set}\" = set"; then
 
7143
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7144
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
7145
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
7146
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7147
 else
 
7148
   cat >conftest.$ac_ext <<_ACEOF
 
7149
@@ -6103,67 +6630,60 @@
 
7150
 
 
7151
 #undef $ac_func
 
7152
 
 
7153
-/* Override any gcc2 internal prototype to avoid an error.  */
 
7154
+/* Override any GCC internal prototype to avoid an error.
 
7155
+   Use char because int might match the return type of a GCC
 
7156
+   builtin and then its argument prototype would still apply.  */
 
7157
 #ifdef __cplusplus
 
7158
 extern "C"
 
7159
-{
 
7160
 #endif
 
7161
-/* We use char because int might match the return type of a gcc2
 
7162
-   builtin and then its argument prototype would still apply.  */
 
7163
 char $ac_func ();
 
7164
 /* The GNU C library defines this for functions which it implements
 
7165
     to always fail with ENOSYS.  Some functions are actually named
 
7166
     something starting with __ and the normal name is an alias.  */
 
7167
-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 
7168
+#if defined __stub_$ac_func || defined __stub___$ac_func
 
7169
 choke me
 
7170
-#else
 
7171
-char (*f) () = $ac_func;
 
7172
-#endif
 
7173
-#ifdef __cplusplus
 
7174
-}
 
7175
 #endif
 
7176
 
 
7177
 int
 
7178
 main ()
 
7179
 {
 
7180
-return f != $ac_func;
 
7181
+return $ac_func ();
 
7182
   ;
 
7183
   return 0;
 
7184
 }
 
7185
 _ACEOF
 
7186
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7187
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7188
-  (eval $ac_link) 2>conftest.er1
 
7189
+if { (ac_try="$ac_link"
 
7190
+case "(($ac_try" in
 
7191
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7192
+  *) ac_try_echo=$ac_try;;
 
7193
+esac
 
7194
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7195
+  (eval "$ac_link") 2>conftest.er1
 
7196
   ac_status=$?
 
7197
   grep -v '^ *+' conftest.er1 >conftest.err
 
7198
   rm -f conftest.er1
 
7199
   cat conftest.err >&5
 
7200
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7201
-  (exit $ac_status); } &&
 
7202
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7203
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7204
-  (eval $ac_try) 2>&5
 
7205
-  ac_status=$?
 
7206
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7207
-  (exit $ac_status); }; } &&
 
7208
-        { ac_try='test -s conftest$ac_exeext'
 
7209
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7210
-  (eval $ac_try) 2>&5
 
7211
-  ac_status=$?
 
7212
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7213
-  (exit $ac_status); }; }; then
 
7214
+  (exit $ac_status); } && {
 
7215
+        test -z "$ac_c_werror_flag" ||
 
7216
+        test ! -s conftest.err
 
7217
+       } && test -s conftest$ac_exeext &&
 
7218
+       $as_test_x conftest$ac_exeext; then
 
7219
   eval "$as_ac_var=yes"
 
7220
 else
 
7221
   echo "$as_me: failed program was:" >&5
 
7222
 sed 's/^/| /' conftest.$ac_ext >&5
 
7223
 
 
7224
-eval "$as_ac_var=no"
 
7225
+       eval "$as_ac_var=no"
 
7226
 fi
 
7227
-rm -f conftest.err conftest.$ac_objext \
 
7228
+
 
7229
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7230
       conftest$ac_exeext conftest.$ac_ext
 
7231
 fi
 
7232
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
 
7233
-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 
7234
+ac_res=`eval echo '${'$as_ac_var'}'`
 
7235
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
7236
+echo "${ECHO_T}$ac_res" >&6; }
 
7237
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
7238
   cat >>confdefs.h <<_ACEOF
 
7239
 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
7240
@@ -6172,8 +6692,8 @@
 
7241
 fi
 
7242
 done
 
7243
 
 
7244
-echo "$as_me:$LINENO: checking for working mmap" >&5
 
7245
-echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
 
7246
+{ echo "$as_me:$LINENO: checking for working mmap" >&5
 
7247
+echo $ECHO_N "checking for working mmap... $ECHO_C" >&6; }
 
7248
 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
 
7249
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7250
 else
 
7251
@@ -6215,21 +6735,21 @@
 
7252
 #include <fcntl.h>
 
7253
 #include <sys/mman.h>
 
7254
 
 
7255
-#if !STDC_HEADERS && !HAVE_STDLIB_H
 
7256
+#if !defined STDC_HEADERS && !defined HAVE_STDLIB_H
 
7257
 char *malloc ();
 
7258
 #endif
 
7259
 
 
7260
 /* This mess was copied from the GNU getpagesize.h.  */
 
7261
-#if !HAVE_GETPAGESIZE
 
7262
+#ifndef HAVE_GETPAGESIZE
 
7263
 /* Assume that all systems that can run configure have sys/param.h.  */
 
7264
-# if !HAVE_SYS_PARAM_H
 
7265
+# ifndef HAVE_SYS_PARAM_H
 
7266
 #  define HAVE_SYS_PARAM_H 1
 
7267
 # endif
 
7268
 
 
7269
 # ifdef _SC_PAGESIZE
 
7270
 #  define getpagesize() sysconf(_SC_PAGESIZE)
 
7271
 # else /* no _SC_PAGESIZE */
 
7272
-#  if HAVE_SYS_PARAM_H
 
7273
+#  ifdef HAVE_SYS_PARAM_H
 
7274
 #   include <sys/param.h>
 
7275
 #   ifdef EXEC_PAGESIZE
 
7276
 #    define getpagesize() EXEC_PAGESIZE
 
7277
@@ -6268,15 +6788,15 @@
 
7278
   /* First, make a file with some known garbage in it. */
 
7279
   data = (char *) malloc (pagesize);
 
7280
   if (!data)
 
7281
-    exit (1);
 
7282
+    return 1;
 
7283
   for (i = 0; i < pagesize; ++i)
 
7284
     *(data + i) = rand ();
 
7285
   umask (0);
 
7286
   fd = creat ("conftest.mmap", 0600);
 
7287
   if (fd < 0)
 
7288
-    exit (1);
 
7289
+    return 1;
 
7290
   if (write (fd, data, pagesize) != pagesize)
 
7291
-    exit (1);
 
7292
+    return 1;
 
7293
   close (fd);
 
7294
 
 
7295
   /* Next, try to mmap the file at a fixed address which already has
 
7296
@@ -6284,17 +6804,17 @@
 
7297
      we see the same garbage.  */
 
7298
   fd = open ("conftest.mmap", O_RDWR);
 
7299
   if (fd < 0)
 
7300
-    exit (1);
 
7301
+    return 1;
 
7302
   data2 = (char *) malloc (2 * pagesize);
 
7303
   if (!data2)
 
7304
-    exit (1);
 
7305
-  data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1);
 
7306
+    return 1;
 
7307
+  data2 += (pagesize - ((long int) data2 & (pagesize - 1))) & (pagesize - 1);
 
7308
   if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
 
7309
                     MAP_PRIVATE | MAP_FIXED, fd, 0L))
 
7310
-    exit (1);
 
7311
+    return 1;
 
7312
   for (i = 0; i < pagesize; ++i)
 
7313
     if (*(data + i) != *(data2 + i))
 
7314
-      exit (1);
 
7315
+      return 1;
 
7316
 
 
7317
   /* Finally, make sure that changes to the mapped area do not
 
7318
      percolate back to the file as seen by read().  (This is a bug on
 
7319
@@ -6303,24 +6823,33 @@
 
7320
     *(data2 + i) = *(data2 + i) + 1;
 
7321
   data3 = (char *) malloc (pagesize);
 
7322
   if (!data3)
 
7323
-    exit (1);
 
7324
+    return 1;
 
7325
   if (read (fd, data3, pagesize) != pagesize)
 
7326
-    exit (1);
 
7327
+    return 1;
 
7328
   for (i = 0; i < pagesize; ++i)
 
7329
     if (*(data + i) != *(data3 + i))
 
7330
-      exit (1);
 
7331
+      return 1;
 
7332
   close (fd);
 
7333
-  exit (0);
 
7334
+  return 0;
 
7335
 }
 
7336
 _ACEOF
 
7337
 rm -f conftest$ac_exeext
 
7338
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7339
-  (eval $ac_link) 2>&5
 
7340
+if { (ac_try="$ac_link"
 
7341
+case "(($ac_try" in
 
7342
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7343
+  *) ac_try_echo=$ac_try;;
 
7344
+esac
 
7345
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7346
+  (eval "$ac_link") 2>&5
 
7347
   ac_status=$?
 
7348
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7349
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
7350
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7351
-  (eval $ac_try) 2>&5
 
7352
+  { (case "(($ac_try" in
 
7353
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7354
+  *) ac_try_echo=$ac_try;;
 
7355
+esac
 
7356
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7357
+  (eval "$ac_try") 2>&5
 
7358
   ac_status=$?
 
7359
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7360
   (exit $ac_status); }; }; then
 
7361
@@ -6333,11 +6862,13 @@
 
7362
 ( exit $ac_status )
 
7363
 ac_cv_func_mmap_fixed_mapped=no
 
7364
 fi
 
7365
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7366
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7367
 fi
 
7368
+
 
7369
+
 
7370
 fi
 
7371
-echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5
 
7372
-echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
 
7373
+{ echo "$as_me:$LINENO: result: $ac_cv_func_mmap_fixed_mapped" >&5
 
7374
+echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6; }
 
7375
 if test $ac_cv_func_mmap_fixed_mapped = yes; then
 
7376
 
 
7377
 cat >>confdefs.h <<\_ACEOF
 
7378
@@ -6351,9 +6882,9 @@
 
7379
 for ac_func in vprintf
 
7380
 do
 
7381
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
7382
-echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7383
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 
7384
-if eval "test \"\${$as_ac_var+set}\" = set"; then
 
7385
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7386
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
7387
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
7388
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7389
 else
 
7390
   cat >conftest.$ac_ext <<_ACEOF
 
7391
@@ -6379,74 +6910,67 @@
 
7392
 
 
7393
 #undef $ac_func
 
7394
 
 
7395
-/* Override any gcc2 internal prototype to avoid an error.  */
 
7396
+/* Override any GCC internal prototype to avoid an error.
 
7397
+   Use char because int might match the return type of a GCC
 
7398
+   builtin and then its argument prototype would still apply.  */
 
7399
 #ifdef __cplusplus
 
7400
 extern "C"
 
7401
-{
 
7402
 #endif
 
7403
-/* We use char because int might match the return type of a gcc2
 
7404
-   builtin and then its argument prototype would still apply.  */
 
7405
 char $ac_func ();
 
7406
 /* The GNU C library defines this for functions which it implements
 
7407
     to always fail with ENOSYS.  Some functions are actually named
 
7408
     something starting with __ and the normal name is an alias.  */
 
7409
-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 
7410
+#if defined __stub_$ac_func || defined __stub___$ac_func
 
7411
 choke me
 
7412
-#else
 
7413
-char (*f) () = $ac_func;
 
7414
-#endif
 
7415
-#ifdef __cplusplus
 
7416
-}
 
7417
 #endif
 
7418
 
 
7419
 int
 
7420
 main ()
 
7421
 {
 
7422
-return f != $ac_func;
 
7423
+return $ac_func ();
 
7424
   ;
 
7425
   return 0;
 
7426
 }
 
7427
 _ACEOF
 
7428
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7429
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7430
-  (eval $ac_link) 2>conftest.er1
 
7431
+if { (ac_try="$ac_link"
 
7432
+case "(($ac_try" in
 
7433
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7434
+  *) ac_try_echo=$ac_try;;
 
7435
+esac
 
7436
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7437
+  (eval "$ac_link") 2>conftest.er1
 
7438
   ac_status=$?
 
7439
   grep -v '^ *+' conftest.er1 >conftest.err
 
7440
   rm -f conftest.er1
 
7441
   cat conftest.err >&5
 
7442
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7443
-  (exit $ac_status); } &&
 
7444
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7445
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7446
-  (eval $ac_try) 2>&5
 
7447
-  ac_status=$?
 
7448
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7449
-  (exit $ac_status); }; } &&
 
7450
-        { ac_try='test -s conftest$ac_exeext'
 
7451
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7452
-  (eval $ac_try) 2>&5
 
7453
-  ac_status=$?
 
7454
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7455
-  (exit $ac_status); }; }; then
 
7456
+  (exit $ac_status); } && {
 
7457
+        test -z "$ac_c_werror_flag" ||
 
7458
+        test ! -s conftest.err
 
7459
+       } && test -s conftest$ac_exeext &&
 
7460
+       $as_test_x conftest$ac_exeext; then
 
7461
   eval "$as_ac_var=yes"
 
7462
 else
 
7463
   echo "$as_me: failed program was:" >&5
 
7464
 sed 's/^/| /' conftest.$ac_ext >&5
 
7465
 
 
7466
-eval "$as_ac_var=no"
 
7467
+       eval "$as_ac_var=no"
 
7468
 fi
 
7469
-rm -f conftest.err conftest.$ac_objext \
 
7470
+
 
7471
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7472
       conftest$ac_exeext conftest.$ac_ext
 
7473
 fi
 
7474
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
 
7475
-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 
7476
+ac_res=`eval echo '${'$as_ac_var'}'`
 
7477
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
7478
+echo "${ECHO_T}$ac_res" >&6; }
 
7479
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
7480
   cat >>confdefs.h <<_ACEOF
 
7481
 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
7482
 _ACEOF
 
7483
 
 
7484
-echo "$as_me:$LINENO: checking for _doprnt" >&5
 
7485
-echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6
 
7486
+{ echo "$as_me:$LINENO: checking for _doprnt" >&5
 
7487
+echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6; }
 
7488
 if test "${ac_cv_func__doprnt+set}" = set; then
 
7489
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7490
 else
 
7491
@@ -6473,67 +6997,59 @@
 
7492
 
 
7493
 #undef _doprnt
 
7494
 
 
7495
-/* Override any gcc2 internal prototype to avoid an error.  */
 
7496
+/* Override any GCC internal prototype to avoid an error.
 
7497
+   Use char because int might match the return type of a GCC
 
7498
+   builtin and then its argument prototype would still apply.  */
 
7499
 #ifdef __cplusplus
 
7500
 extern "C"
 
7501
-{
 
7502
 #endif
 
7503
-/* We use char because int might match the return type of a gcc2
 
7504
-   builtin and then its argument prototype would still apply.  */
 
7505
 char _doprnt ();
 
7506
 /* The GNU C library defines this for functions which it implements
 
7507
     to always fail with ENOSYS.  Some functions are actually named
 
7508
     something starting with __ and the normal name is an alias.  */
 
7509
-#if defined (__stub__doprnt) || defined (__stub____doprnt)
 
7510
+#if defined __stub__doprnt || defined __stub____doprnt
 
7511
 choke me
 
7512
-#else
 
7513
-char (*f) () = _doprnt;
 
7514
-#endif
 
7515
-#ifdef __cplusplus
 
7516
-}
 
7517
 #endif
 
7518
 
 
7519
 int
 
7520
 main ()
 
7521
 {
 
7522
-return f != _doprnt;
 
7523
+return _doprnt ();
 
7524
   ;
 
7525
   return 0;
 
7526
 }
 
7527
 _ACEOF
 
7528
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7529
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7530
-  (eval $ac_link) 2>conftest.er1
 
7531
+if { (ac_try="$ac_link"
 
7532
+case "(($ac_try" in
 
7533
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7534
+  *) ac_try_echo=$ac_try;;
 
7535
+esac
 
7536
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7537
+  (eval "$ac_link") 2>conftest.er1
 
7538
   ac_status=$?
 
7539
   grep -v '^ *+' conftest.er1 >conftest.err
 
7540
   rm -f conftest.er1
 
7541
   cat conftest.err >&5
 
7542
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7543
-  (exit $ac_status); } &&
 
7544
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7545
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7546
-  (eval $ac_try) 2>&5
 
7547
-  ac_status=$?
 
7548
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7549
-  (exit $ac_status); }; } &&
 
7550
-        { ac_try='test -s conftest$ac_exeext'
 
7551
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7552
-  (eval $ac_try) 2>&5
 
7553
-  ac_status=$?
 
7554
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7555
-  (exit $ac_status); }; }; then
 
7556
+  (exit $ac_status); } && {
 
7557
+        test -z "$ac_c_werror_flag" ||
 
7558
+        test ! -s conftest.err
 
7559
+       } && test -s conftest$ac_exeext &&
 
7560
+       $as_test_x conftest$ac_exeext; then
 
7561
   ac_cv_func__doprnt=yes
 
7562
 else
 
7563
   echo "$as_me: failed program was:" >&5
 
7564
 sed 's/^/| /' conftest.$ac_ext >&5
 
7565
 
 
7566
-ac_cv_func__doprnt=no
 
7567
+       ac_cv_func__doprnt=no
 
7568
 fi
 
7569
-rm -f conftest.err conftest.$ac_objext \
 
7570
+
 
7571
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7572
       conftest$ac_exeext conftest.$ac_ext
 
7573
 fi
 
7574
-echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5
 
7575
-echo "${ECHO_T}$ac_cv_func__doprnt" >&6
 
7576
+{ echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5
 
7577
+echo "${ECHO_T}$ac_cv_func__doprnt" >&6; }
 
7578
 if test $ac_cv_func__doprnt = yes; then
 
7579
 
 
7580
 cat >>confdefs.h <<\_ACEOF
 
7581
@@ -6546,11 +7062,11 @@
 
7582
 done
 
7583
 
 
7584
 
 
7585
-echo "$as_me:$LINENO: checking for function prototypes" >&5
 
7586
-echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
 
7587
-if test "$ac_cv_prog_cc_stdc" != no; then
 
7588
-  echo "$as_me:$LINENO: result: yes" >&5
 
7589
-echo "${ECHO_T}yes" >&6
 
7590
+{ echo "$as_me:$LINENO: checking for function prototypes" >&5
 
7591
+echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6; }
 
7592
+if test "$ac_cv_prog_cc_c89" != no; then
 
7593
+  { echo "$as_me:$LINENO: result: yes" >&5
 
7594
+echo "${ECHO_T}yes" >&6; }
 
7595
 
 
7596
 cat >>confdefs.h <<\_ACEOF
 
7597
 #define PROTOTYPES 1
 
7598
@@ -6562,12 +7078,12 @@
 
7599
 _ACEOF
 
7600
 
 
7601
 else
 
7602
-  echo "$as_me:$LINENO: result: no" >&5
 
7603
-echo "${ECHO_T}no" >&6
 
7604
+  { echo "$as_me:$LINENO: result: no" >&5
 
7605
+echo "${ECHO_T}no" >&6; }
 
7606
 fi
 
7607
 
 
7608
-echo "$as_me:$LINENO: checking whether setvbuf arguments are reversed" >&5
 
7609
-echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6
 
7610
+{ echo "$as_me:$LINENO: checking whether setvbuf arguments are reversed" >&5
 
7611
+echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6; }
 
7612
 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then
 
7613
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7614
 else
 
7615
@@ -6579,7 +7095,7 @@
 
7616
 cat >>conftest.$ac_ext <<_ACEOF
 
7617
 /* end confdefs.h.  */
 
7618
 #include <stdio.h>
 
7619
-#        if PROTOTYPES
 
7620
+#        ifdef PROTOTYPES
 
7621
           int (setvbuf) (FILE *, int, char *, size_t);
 
7622
 #        endif
 
7623
 int
 
7624
@@ -6591,26 +7107,23 @@
 
7625
 }
 
7626
 _ACEOF
 
7627
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7628
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7629
-  (eval $ac_link) 2>conftest.er1
 
7630
+if { (ac_try="$ac_link"
 
7631
+case "(($ac_try" in
 
7632
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7633
+  *) ac_try_echo=$ac_try;;
 
7634
+esac
 
7635
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7636
+  (eval "$ac_link") 2>conftest.er1
 
7637
   ac_status=$?
 
7638
   grep -v '^ *+' conftest.er1 >conftest.err
 
7639
   rm -f conftest.er1
 
7640
   cat conftest.err >&5
 
7641
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7642
-  (exit $ac_status); } &&
 
7643
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7644
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7645
-  (eval $ac_try) 2>&5
 
7646
-  ac_status=$?
 
7647
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7648
-  (exit $ac_status); }; } &&
 
7649
-        { ac_try='test -s conftest$ac_exeext'
 
7650
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7651
-  (eval $ac_try) 2>&5
 
7652
-  ac_status=$?
 
7653
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7654
-  (exit $ac_status); }; }; then
 
7655
+  (exit $ac_status); } && {
 
7656
+        test -z "$ac_c_werror_flag" ||
 
7657
+        test ! -s conftest.err
 
7658
+       } && test -s conftest$ac_exeext &&
 
7659
+       $as_test_x conftest$ac_exeext; then
 
7660
   cat >conftest.$ac_ext <<_ACEOF
 
7661
 /* confdefs.h.  */
 
7662
 _ACEOF
 
7663
@@ -6618,7 +7131,7 @@
 
7664
 cat >>conftest.$ac_ext <<_ACEOF
 
7665
 /* end confdefs.h.  */
 
7666
 #include <stdio.h>
 
7667
-#           if PROTOTYPES
 
7668
+#           ifdef PROTOTYPES
 
7669
              int (setvbuf) (FILE *, int, char *, size_t);
 
7670
 #           endif
 
7671
 int
 
7672
@@ -6630,26 +7143,23 @@
 
7673
 }
 
7674
 _ACEOF
 
7675
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7676
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7677
-  (eval $ac_link) 2>conftest.er1
 
7678
+if { (ac_try="$ac_link"
 
7679
+case "(($ac_try" in
 
7680
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7681
+  *) ac_try_echo=$ac_try;;
 
7682
+esac
 
7683
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7684
+  (eval "$ac_link") 2>conftest.er1
 
7685
   ac_status=$?
 
7686
   grep -v '^ *+' conftest.er1 >conftest.err
 
7687
   rm -f conftest.er1
 
7688
   cat conftest.err >&5
 
7689
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7690
-  (exit $ac_status); } &&
 
7691
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7692
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7693
-  (eval $ac_try) 2>&5
 
7694
-  ac_status=$?
 
7695
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7696
-  (exit $ac_status); }; } &&
 
7697
-        { ac_try='test -s conftest$ac_exeext'
 
7698
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7699
-  (eval $ac_try) 2>&5
 
7700
-  ac_status=$?
 
7701
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7702
-  (exit $ac_status); }; }; then
 
7703
+  (exit $ac_status); } && {
 
7704
+        test -z "$ac_c_werror_flag" ||
 
7705
+        test ! -s conftest.err
 
7706
+       } && test -s conftest$ac_exeext &&
 
7707
+       $as_test_x conftest$ac_exeext; then
 
7708
   # It compiles and links either way, so it must not be declared
 
7709
         # with a prototype and most likely this is a K&R C compiler.
 
7710
         # Try running it.
 
7711
@@ -6662,7 +7172,7 @@
 
7712
 cat confdefs.h >>conftest.$ac_ext
 
7713
 cat >>conftest.$ac_ext <<_ACEOF
 
7714
 /* end confdefs.h.  */
 
7715
-#include <stdio.h>
 
7716
+$ac_includes_default
 
7717
 int
 
7718
 main ()
 
7719
 {
 
7720
@@ -6671,21 +7181,30 @@
 
7721
                   is not _IOLBF, _IONBF, or _IOFBF, and return nonzero.  */
 
7722
                char buf;
 
7723
                if (setvbuf (stdout, _IOLBF, &buf, 1) != 0)
 
7724
-                 exit (1);
 
7725
+                 return 1;
 
7726
                putchar ('\r');
 
7727
-               exit (0); /* Non-reversed systems SEGV here.  */
 
7728
+               return 0; /* Non-reversed systems SEGV here.  */
 
7729
   ;
 
7730
   return 0;
 
7731
 }
 
7732
 _ACEOF
 
7733
 rm -f conftest$ac_exeext
 
7734
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7735
-  (eval $ac_link) 2>&5
 
7736
+if { (ac_try="$ac_link"
 
7737
+case "(($ac_try" in
 
7738
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7739
+  *) ac_try_echo=$ac_try;;
 
7740
+esac
 
7741
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7742
+  (eval "$ac_link") 2>&5
 
7743
   ac_status=$?
 
7744
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7745
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
7746
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7747
-  (eval $ac_try) 2>&5
 
7748
+  { (case "(($ac_try" in
 
7749
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7750
+  *) ac_try_echo=$ac_try;;
 
7751
+esac
 
7752
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7753
+  (eval "$ac_try") 2>&5
 
7754
   ac_status=$?
 
7755
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7756
   (exit $ac_status); }; }; then
 
7757
@@ -6695,29 +7214,33 @@
 
7758
 echo "$as_me: failed program was:" >&5
 
7759
 sed 's/^/| /' conftest.$ac_ext >&5
 
7760
 
 
7761
-( exit $ac_status )
 
7762
-rm -f core *.core
 
7763
 fi
 
7764
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7765
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7766
 fi
 
7767
+
 
7768
+
 
7769
        ac_cv_func_setvbuf_reversed=yes
 
7770
 else
 
7771
   echo "$as_me: failed program was:" >&5
 
7772
 sed 's/^/| /' conftest.$ac_ext >&5
 
7773
 
 
7774
+
 
7775
 fi
 
7776
-rm -f conftest.err conftest.$ac_objext \
 
7777
+
 
7778
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7779
       conftest$ac_exeext conftest.$ac_ext
 
7780
 else
 
7781
   echo "$as_me: failed program was:" >&5
 
7782
 sed 's/^/| /' conftest.$ac_ext >&5
 
7783
 
 
7784
+
 
7785
 fi
 
7786
-rm -f conftest.err conftest.$ac_objext \
 
7787
+
 
7788
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7789
       conftest$ac_exeext conftest.$ac_ext
 
7790
 fi
 
7791
-echo "$as_me:$LINENO: result: $ac_cv_func_setvbuf_reversed" >&5
 
7792
-echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6
 
7793
+{ echo "$as_me:$LINENO: result: $ac_cv_func_setvbuf_reversed" >&5
 
7794
+echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6; }
 
7795
 if test $ac_cv_func_setvbuf_reversed = yes; then
 
7796
 
 
7797
 cat >>confdefs.h <<\_ACEOF
 
7798
@@ -6732,9 +7255,9 @@
 
7799
 for ac_func in getpagesize madvise sigaction
 
7800
 do
 
7801
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
7802
-echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7803
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 
7804
-if eval "test \"\${$as_ac_var+set}\" = set"; then
 
7805
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7806
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
7807
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
7808
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7809
 else
 
7810
   cat >conftest.$ac_ext <<_ACEOF
 
7811
@@ -6760,67 +7283,60 @@
 
7812
 
 
7813
 #undef $ac_func
 
7814
 
 
7815
-/* Override any gcc2 internal prototype to avoid an error.  */
 
7816
+/* Override any GCC internal prototype to avoid an error.
 
7817
+   Use char because int might match the return type of a GCC
 
7818
+   builtin and then its argument prototype would still apply.  */
 
7819
 #ifdef __cplusplus
 
7820
 extern "C"
 
7821
-{
 
7822
 #endif
 
7823
-/* We use char because int might match the return type of a gcc2
 
7824
-   builtin and then its argument prototype would still apply.  */
 
7825
 char $ac_func ();
 
7826
 /* The GNU C library defines this for functions which it implements
 
7827
     to always fail with ENOSYS.  Some functions are actually named
 
7828
     something starting with __ and the normal name is an alias.  */
 
7829
-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 
7830
+#if defined __stub_$ac_func || defined __stub___$ac_func
 
7831
 choke me
 
7832
-#else
 
7833
-char (*f) () = $ac_func;
 
7834
-#endif
 
7835
-#ifdef __cplusplus
 
7836
-}
 
7837
 #endif
 
7838
 
 
7839
 int
 
7840
 main ()
 
7841
 {
 
7842
-return f != $ac_func;
 
7843
+return $ac_func ();
 
7844
   ;
 
7845
   return 0;
 
7846
 }
 
7847
 _ACEOF
 
7848
 rm -f conftest.$ac_objext conftest$ac_exeext
 
7849
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7850
-  (eval $ac_link) 2>conftest.er1
 
7851
+if { (ac_try="$ac_link"
 
7852
+case "(($ac_try" in
 
7853
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7854
+  *) ac_try_echo=$ac_try;;
 
7855
+esac
 
7856
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7857
+  (eval "$ac_link") 2>conftest.er1
 
7858
   ac_status=$?
 
7859
   grep -v '^ *+' conftest.er1 >conftest.err
 
7860
   rm -f conftest.er1
 
7861
   cat conftest.err >&5
 
7862
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7863
-  (exit $ac_status); } &&
 
7864
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
7865
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7866
-  (eval $ac_try) 2>&5
 
7867
-  ac_status=$?
 
7868
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7869
-  (exit $ac_status); }; } &&
 
7870
-        { ac_try='test -s conftest$ac_exeext'
 
7871
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7872
-  (eval $ac_try) 2>&5
 
7873
-  ac_status=$?
 
7874
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7875
-  (exit $ac_status); }; }; then
 
7876
+  (exit $ac_status); } && {
 
7877
+        test -z "$ac_c_werror_flag" ||
 
7878
+        test ! -s conftest.err
 
7879
+       } && test -s conftest$ac_exeext &&
 
7880
+       $as_test_x conftest$ac_exeext; then
 
7881
   eval "$as_ac_var=yes"
 
7882
 else
 
7883
   echo "$as_me: failed program was:" >&5
 
7884
 sed 's/^/| /' conftest.$ac_ext >&5
 
7885
 
 
7886
-eval "$as_ac_var=no"
 
7887
+       eval "$as_ac_var=no"
 
7888
 fi
 
7889
-rm -f conftest.err conftest.$ac_objext \
 
7890
+
 
7891
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
7892
       conftest$ac_exeext conftest.$ac_ext
 
7893
 fi
 
7894
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
 
7895
-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 
7896
+ac_res=`eval echo '${'$as_ac_var'}'`
 
7897
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
7898
+echo "${ECHO_T}$ac_res" >&6; }
 
7899
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
7900
   cat >>confdefs.h <<_ACEOF
 
7901
 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
7902
@@ -6832,8 +7348,8 @@
 
7903
 ## the AX_FUNC_POSIX_MEMALIGN was downloaded from the AC archive,
 
7904
 ## http://ac-archive.sourceforge.net/doc/acinclude.html and added
 
7905
 ## to the acinclude.m4 file. After aclocal was run, it got put into aclocal.m4
 
7906
-echo "$as_me:$LINENO: checking for working posix_memalign" >&5
 
7907
-echo $ECHO_N "checking for working posix_memalign... $ECHO_C" >&6
 
7908
+{ echo "$as_me:$LINENO: checking for working posix_memalign" >&5
 
7909
+echo $ECHO_N "checking for working posix_memalign... $ECHO_C" >&6; }
 
7910
 if test "${ax_cv_func_posix_memalign_works+set}" = set; then
 
7911
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7912
 else
 
7913
@@ -6861,13 +7377,22 @@
 
7914
 
 
7915
 _ACEOF
 
7916
 rm -f conftest$ac_exeext
 
7917
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
7918
-  (eval $ac_link) 2>&5
 
7919
+if { (ac_try="$ac_link"
 
7920
+case "(($ac_try" in
 
7921
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7922
+  *) ac_try_echo=$ac_try;;
 
7923
+esac
 
7924
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7925
+  (eval "$ac_link") 2>&5
 
7926
   ac_status=$?
 
7927
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7928
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
 
7929
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
7930
-  (eval $ac_try) 2>&5
 
7931
+  { (case "(($ac_try" in
 
7932
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
7933
+  *) ac_try_echo=$ac_try;;
 
7934
+esac
 
7935
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
7936
+  (eval "$ac_try") 2>&5
 
7937
   ac_status=$?
 
7938
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
7939
   (exit $ac_status); }; }; then
 
7940
@@ -6880,11 +7405,13 @@
 
7941
 ( exit $ac_status )
 
7942
 ax_cv_func_posix_memalign_works=no
 
7943
 fi
 
7944
-rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7945
+rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 
7946
 fi
 
7947
+
 
7948
+
 
7949
 fi
 
7950
-echo "$as_me:$LINENO: result: $ax_cv_func_posix_memalign_works" >&5
 
7951
-echo "${ECHO_T}$ax_cv_func_posix_memalign_works" >&6
 
7952
+{ echo "$as_me:$LINENO: result: $ax_cv_func_posix_memalign_works" >&5
 
7953
+echo "${ECHO_T}$ax_cv_func_posix_memalign_works" >&6; }
 
7954
 if test "$ax_cv_func_posix_memalign_works" = "yes" ; then
 
7955
 
 
7956
 cat >>confdefs.h <<\_ACEOF
 
7957
@@ -6899,9 +7426,9 @@
 
7958
 for ac_func in memalign valloc
 
7959
 do
 
7960
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
7961
-echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7962
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 
7963
-if eval "test \"\${$as_ac_var+set}\" = set"; then
 
7964
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
7965
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
7966
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
7967
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
7968
 else
 
7969
   cat >conftest.$ac_ext <<_ACEOF
 
7970
@@ -6927,67 +7454,60 @@
 
7971
 
 
7972
 #undef $ac_func
 
7973
 
 
7974
-/* Override any gcc2 internal prototype to avoid an error.  */
 
7975
+/* Override any GCC internal prototype to avoid an error.
 
7976
+   Use char because int might match the return type of a GCC
 
7977
+   builtin and then its argument prototype would still apply.  */
 
7978
 #ifdef __cplusplus
 
7979
 extern "C"
 
7980
-{
 
7981
 #endif
 
7982
-/* We use char because int might match the return type of a gcc2
 
7983
-   builtin and then its argument prototype would still apply.  */
 
7984
 char $ac_func ();
 
7985
 /* The GNU C library defines this for functions which it implements
 
7986
     to always fail with ENOSYS.  Some functions are actually named
 
7987
     something starting with __ and the normal name is an alias.  */
 
7988
-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 
7989
+#if defined __stub_$ac_func || defined __stub___$ac_func
 
7990
 choke me
 
7991
-#else
 
7992
-char (*f) () = $ac_func;
 
7993
-#endif
 
7994
-#ifdef __cplusplus
 
7995
-}
 
7996
 #endif
 
7997
 
 
7998
 int
 
7999
 main ()
 
8000
 {
 
8001
-return f != $ac_func;
 
8002
+return $ac_func ();
 
8003
   ;
 
8004
   return 0;
 
8005
 }
 
8006
 _ACEOF
 
8007
 rm -f conftest.$ac_objext conftest$ac_exeext
 
8008
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
8009
-  (eval $ac_link) 2>conftest.er1
 
8010
+if { (ac_try="$ac_link"
 
8011
+case "(($ac_try" in
 
8012
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8013
+  *) ac_try_echo=$ac_try;;
 
8014
+esac
 
8015
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
8016
+  (eval "$ac_link") 2>conftest.er1
 
8017
   ac_status=$?
 
8018
   grep -v '^ *+' conftest.er1 >conftest.err
 
8019
   rm -f conftest.er1
 
8020
   cat conftest.err >&5
 
8021
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8022
-  (exit $ac_status); } &&
 
8023
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
8024
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
8025
-  (eval $ac_try) 2>&5
 
8026
-  ac_status=$?
 
8027
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8028
-  (exit $ac_status); }; } &&
 
8029
-        { ac_try='test -s conftest$ac_exeext'
 
8030
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
8031
-  (eval $ac_try) 2>&5
 
8032
-  ac_status=$?
 
8033
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8034
-  (exit $ac_status); }; }; then
 
8035
+  (exit $ac_status); } && {
 
8036
+        test -z "$ac_c_werror_flag" ||
 
8037
+        test ! -s conftest.err
 
8038
+       } && test -s conftest$ac_exeext &&
 
8039
+       $as_test_x conftest$ac_exeext; then
 
8040
   eval "$as_ac_var=yes"
 
8041
 else
 
8042
   echo "$as_me: failed program was:" >&5
 
8043
 sed 's/^/| /' conftest.$ac_ext >&5
 
8044
 
 
8045
-eval "$as_ac_var=no"
 
8046
+       eval "$as_ac_var=no"
 
8047
 fi
 
8048
-rm -f conftest.err conftest.$ac_objext \
 
8049
+
 
8050
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
8051
       conftest$ac_exeext conftest.$ac_ext
 
8052
 fi
 
8053
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
 
8054
-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 
8055
+ac_res=`eval echo '${'$as_ac_var'}'`
 
8056
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
8057
+echo "${ECHO_T}$ac_res" >&6; }
 
8058
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
8059
   cat >>confdefs.h <<_ACEOF
 
8060
 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
8061
@@ -7001,9 +7521,9 @@
 
8062
 for ac_func in wcstol
 
8063
 do
 
8064
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 
8065
-echo "$as_me:$LINENO: checking for $ac_func" >&5
 
8066
-echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 
8067
-if eval "test \"\${$as_ac_var+set}\" = set"; then
 
8068
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
 
8069
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
 
8070
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
 
8071
   echo $ECHO_N "(cached) $ECHO_C" >&6
 
8072
 else
 
8073
   cat >conftest.$ac_ext <<_ACEOF
 
8074
@@ -7029,67 +7549,60 @@
 
8075
 
 
8076
 #undef $ac_func
 
8077
 
 
8078
-/* Override any gcc2 internal prototype to avoid an error.  */
 
8079
+/* Override any GCC internal prototype to avoid an error.
 
8080
+   Use char because int might match the return type of a GCC
 
8081
+   builtin and then its argument prototype would still apply.  */
 
8082
 #ifdef __cplusplus
 
8083
 extern "C"
 
8084
-{
 
8085
 #endif
 
8086
-/* We use char because int might match the return type of a gcc2
 
8087
-   builtin and then its argument prototype would still apply.  */
 
8088
 char $ac_func ();
 
8089
 /* The GNU C library defines this for functions which it implements
 
8090
     to always fail with ENOSYS.  Some functions are actually named
 
8091
     something starting with __ and the normal name is an alias.  */
 
8092
-#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 
8093
+#if defined __stub_$ac_func || defined __stub___$ac_func
 
8094
 choke me
 
8095
-#else
 
8096
-char (*f) () = $ac_func;
 
8097
-#endif
 
8098
-#ifdef __cplusplus
 
8099
-}
 
8100
 #endif
 
8101
 
 
8102
 int
 
8103
 main ()
 
8104
 {
 
8105
-return f != $ac_func;
 
8106
+return $ac_func ();
 
8107
   ;
 
8108
   return 0;
 
8109
 }
 
8110
 _ACEOF
 
8111
 rm -f conftest.$ac_objext conftest$ac_exeext
 
8112
-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
 
8113
-  (eval $ac_link) 2>conftest.er1
 
8114
+if { (ac_try="$ac_link"
 
8115
+case "(($ac_try" in
 
8116
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
 
8117
+  *) ac_try_echo=$ac_try;;
 
8118
+esac
 
8119
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
 
8120
+  (eval "$ac_link") 2>conftest.er1
 
8121
   ac_status=$?
 
8122
   grep -v '^ *+' conftest.er1 >conftest.err
 
8123
   rm -f conftest.er1
 
8124
   cat conftest.err >&5
 
8125
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8126
-  (exit $ac_status); } &&
 
8127
-        { ac_try='test -z "$ac_c_werror_flag"                   || test ! -s conftest.err'
 
8128
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
8129
-  (eval $ac_try) 2>&5
 
8130
-  ac_status=$?
 
8131
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8132
-  (exit $ac_status); }; } &&
 
8133
-        { ac_try='test -s conftest$ac_exeext'
 
8134
-  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
 
8135
-  (eval $ac_try) 2>&5
 
8136
-  ac_status=$?
 
8137
-  echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
8138
-  (exit $ac_status); }; }; then
 
8139
+  (exit $ac_status); } && {
 
8140
+        test -z "$ac_c_werror_flag" ||
 
8141
+        test ! -s conftest.err
 
8142
+       } && test -s conftest$ac_exeext &&
 
8143
+       $as_test_x conftest$ac_exeext; then
 
8144
   eval "$as_ac_var=yes"
 
8145
 else
 
8146
   echo "$as_me: failed program was:" >&5
 
8147
 sed 's/^/| /' conftest.$ac_ext >&5
 
8148
 
 
8149
-eval "$as_ac_var=no"
 
8150
+       eval "$as_ac_var=no"
 
8151
 fi
 
8152
-rm -f conftest.err conftest.$ac_objext \
 
8153
+
 
8154
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
 
8155
       conftest$ac_exeext conftest.$ac_ext
 
8156
 fi
 
8157
-echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
 
8158
-echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
 
8159
+ac_res=`eval echo '${'$as_ac_var'}'`
 
8160
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
 
8161
+echo "${ECHO_T}$ac_res" >&6; }
 
8162
 if test `eval echo '${'$as_ac_var'}'` = yes; then
 
8163
   cat >>confdefs.h <<_ACEOF
 
8164
 #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
 
8165
@@ -7105,7 +7618,7 @@
 
8166
 
 
8167
 
 
8168
 
 
8169
-                                                                                          ac_config_files="$ac_config_files Makefile doc/Makefile src/Makefile src/tests/Makefile man/Makefile ts/Makefile TREC/Makefile contrib/Makefile doc/chess/Makefile"
 
8170
+ac_config_files="$ac_config_files Makefile doc/Makefile src/Makefile src/tests/Makefile man/Makefile ts/Makefile TREC/Makefile contrib/Makefile doc/chess/Makefile"
 
8171
 
 
8172
 cat >confcache <<\_ACEOF
 
8173
 # This file is a shell script that caches the results of configure
 
8174
@@ -7125,39 +7638,58 @@
 
8175
 
 
8176
 # The following way of writing the cache mishandles newlines in values,
 
8177
 # but we know of no workaround that is simple, portable, and efficient.
 
8178
-# So, don't put newlines in cache variables' values.
 
8179
+# So, we kill variables containing newlines.
 
8180
 # Ultrix sh set writes to stderr and can't be redirected directly,
 
8181
 # and sets the high bit in the cache file unless we assign to the vars.
 
8182
-{
 
8183
+(
 
8184
+  for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
 
8185
+    eval ac_val=\$$ac_var
 
8186
+    case $ac_val in #(
 
8187
+    *${as_nl}*)
 
8188
+      case $ac_var in #(
 
8189
+      *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5
 
8190
+echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
 
8191
+      esac
 
8192
+      case $ac_var in #(
 
8193
+      _ | IFS | as_nl) ;; #(
 
8194
+      *) $as_unset $ac_var ;;
 
8195
+      esac ;;
 
8196
+    esac
 
8197
+  done
 
8198
+
 
8199
   (set) 2>&1 |
 
8200
-    case `(ac_space=' '; set | grep ac_space) 2>&1` in
 
8201
-    *ac_space=\ *)
 
8202
+    case $as_nl`(ac_space=' '; set) 2>&1` in #(
 
8203
+    *${as_nl}ac_space=\ *)
 
8204
       # `set' does not quote correctly, so add quotes (double-quote
 
8205
       # substitution turns \\\\ into \\, and sed turns \\ into \).
 
8206
       sed -n \
 
8207
        "s/'/'\\\\''/g;
 
8208
          s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
 
8209
-      ;;
 
8210
+      ;; #(
 
8211
     *)
 
8212
       # `set' quotes correctly as required by POSIX, so do not add quotes.
 
8213
-      sed -n \
 
8214
-       "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
 
8215
+      sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
 
8216
       ;;
 
8217
-    esac;
 
8218
-} |
 
8219
+    esac |
 
8220
+    sort
 
8221
+) |
 
8222
   sed '
 
8223
+     /^ac_cv_env_/b end
 
8224
      t clear
 
8225
-     : clear
 
8226
+     :clear
 
8227
      s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
 
8228
      t end
 
8229
-     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
8230
-     : end' >>confcache
 
8231
-if diff $cache_file confcache >/dev/null 2>&1; then :; else
 
8232
-  if test -w $cache_file; then
 
8233
-    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
 
8234
+     s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
 
8235
+     :end' >>confcache
 
8236
+if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
 
8237
+  if test -w "$cache_file"; then
 
8238
+    test "x$cache_file" != "x/dev/null" &&
 
8239
+      { echo "$as_me:$LINENO: updating cache $cache_file" >&5
 
8240
+echo "$as_me: updating cache $cache_file" >&6;}
 
8241
     cat confcache >$cache_file
 
8242
   else
 
8243
-    echo "not updating unwritable cache $cache_file"
 
8244
+    { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
 
8245
+echo "$as_me: not updating unwritable cache $cache_file" >&6;}
 
8246
   fi
 
8247
 fi
 
8248
 rm -f confcache
 
8249
@@ -7166,32 +7698,18 @@
 
8250
 # Let make expand exec_prefix.
 
8251
 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
 
8252
 
 
8253
-# VPATH may cause trouble with some makes, so we remove $(srcdir),
 
8254
-# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 
8255
-# trailing colons and then remove the whole line if VPATH becomes empty
 
8256
-# (actually we leave an empty line to preserve line numbers).
 
8257
-if test "x$srcdir" = x.; then
 
8258
-  ac_vpsub='/^[         ]*VPATH[        ]*=/{
 
8259
-s/:*\$(srcdir):*/:/;
 
8260
-s/:*\${srcdir}:*/:/;
 
8261
-s/:*@srcdir@:*/:/;
 
8262
-s/^\([^=]*=[    ]*\):*/\1/;
 
8263
-s/:*$//;
 
8264
-s/^[^=]*=[      ]*$//;
 
8265
-}'
 
8266
-fi
 
8267
-
 
8268
 DEFS=-DHAVE_CONFIG_H
 
8269
 
 
8270
 ac_libobjs=
 
8271
 ac_ltlibobjs=
 
8272
 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
 
8273
   # 1. Remove the extension, and $U if already installed.
 
8274
-  ac_i=`echo "$ac_i" |
 
8275
-        sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
 
8276
-  # 2. Add them.
 
8277
-  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
 
8278
-  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
 
8279
+  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
 
8280
+  ac_i=`echo "$ac_i" | sed "$ac_script"`
 
8281
+  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
 
8282
+  #    will be set to the directory where LIBOBJS objects are built.
 
8283
+  ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
 
8284
+  ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo'
 
8285
 done
 
8286
 LIBOBJS=$ac_libobjs
 
8287
 
 
8288
@@ -7243,17 +7761,45 @@
 
8289
 ## M4sh Initialization.  ##
 
8290
 ## --------------------- ##
 
8291
 
 
8292
-# Be Bourne compatible
 
8293
+# Be more Bourne compatible
 
8294
+DUALCASE=1; export DUALCASE # for MKS sh
 
8295
 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
 
8296
   emulate sh
 
8297
   NULLCMD=:
 
8298
   # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
 
8299
   # is contrary to our usage.  Disable this feature.
 
8300
   alias -g '${1+"$@"}'='"$@"'
 
8301
-elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
 
8302
-  set -o posix
 
8303
+  setopt NO_GLOB_SUBST
 
8304
+else
 
8305
+  case `(set -o) 2>/dev/null` in
 
8306
+  *posix*) set -o posix ;;
 
8307
+esac
 
8308
+
 
8309
+fi
 
8310
+
 
8311
+
 
8312
+
 
8313
+
 
8314
+# PATH needs CR
 
8315
+# Avoid depending upon Character Ranges.
 
8316
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
8317
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
8318
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
8319
+as_cr_digits='0123456789'
 
8320
+as_cr_alnum=$as_cr_Letters$as_cr_digits
 
8321
+
 
8322
+# The user is always right.
 
8323
+if test "${PATH_SEPARATOR+set}" != set; then
 
8324
+  echo "#! /bin/sh" >conf$$.sh
 
8325
+  echo  "exit 0"   >>conf$$.sh
 
8326
+  chmod +x conf$$.sh
 
8327
+  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
8328
+    PATH_SEPARATOR=';'
 
8329
+  else
 
8330
+    PATH_SEPARATOR=:
 
8331
+  fi
 
8332
+  rm -f conf$$.sh
 
8333
 fi
 
8334
-DUALCASE=1; export DUALCASE # for MKS sh
 
8335
 
 
8336
 # Support unset when possible.
 
8337
 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
 
8338
@@ -7263,8 +7809,43 @@
 
8339
 fi
 
8340
 
 
8341
 
 
8342
+# IFS
 
8343
+# We need space, tab and new line, in precisely that order.  Quoting is
 
8344
+# there to prevent editors from complaining about space-tab.
 
8345
+# (If _AS_PATH_WALK were called with IFS unset, it would disable word
 
8346
+# splitting by setting IFS to empty value.)
 
8347
+as_nl='
 
8348
+'
 
8349
+IFS=" ""       $as_nl"
 
8350
+
 
8351
+# Find who we are.  Look in the path if we contain no directory separator.
 
8352
+case $0 in
 
8353
+  *[\\/]* ) as_myself=$0 ;;
 
8354
+  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
8355
+for as_dir in $PATH
 
8356
+do
 
8357
+  IFS=$as_save_IFS
 
8358
+  test -z "$as_dir" && as_dir=.
 
8359
+  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
8360
+done
 
8361
+IFS=$as_save_IFS
 
8362
+
 
8363
+     ;;
 
8364
+esac
 
8365
+# We did not find ourselves, most probably we were run as `sh COMMAND'
 
8366
+# in which case we are not to be found in the path.
 
8367
+if test "x$as_myself" = x; then
 
8368
+  as_myself=$0
 
8369
+fi
 
8370
+if test ! -f "$as_myself"; then
 
8371
+  echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
 
8372
+  { (exit 1); exit 1; }
 
8373
+fi
 
8374
+
 
8375
 # Work around bugs in pre-3.0 UWIN ksh.
 
8376
-$as_unset ENV MAIL MAILPATH
 
8377
+for as_var in ENV MAIL MAILPATH
 
8378
+do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
8379
+done
 
8380
 PS1='$ '
 
8381
 PS2='> '
 
8382
 PS4='+ '
 
8383
@@ -7278,18 +7859,19 @@
 
8384
   if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
 
8385
     eval $as_var=C; export $as_var
 
8386
   else
 
8387
-    $as_unset $as_var
 
8388
+    ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
 
8389
   fi
 
8390
 done
 
8391
 
 
8392
 # Required to use basename.
 
8393
-if expr a : '\(a\)' >/dev/null 2>&1; then
 
8394
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
8395
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
8396
   as_expr=expr
 
8397
 else
 
8398
   as_expr=false
 
8399
 fi
 
8400
 
 
8401
-if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
 
8402
+if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
 
8403
   as_basename=basename
 
8404
 else
 
8405
   as_basename=false
 
8406
@@ -7297,159 +7879,120 @@
 
8407
 
 
8408
 
 
8409
 # Name of the executable.
 
8410
-as_me=`$as_basename "$0" ||
 
8411
+as_me=`$as_basename -- "$0" ||
 
8412
 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
 
8413
         X"$0" : 'X\(//\)$' \| \
 
8414
-        X"$0" : 'X\(/\)$' \| \
 
8415
-        .     : '\(.\)' 2>/dev/null ||
 
8416
+        X"$0" : 'X\(/\)' \| . 2>/dev/null ||
 
8417
 echo X/"$0" |
 
8418
-    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
 
8419
-         /^X\/\(\/\/\)$/{ s//\1/; q; }
 
8420
-         /^X\/\(\/\).*/{ s//\1/; q; }
 
8421
-         s/.*/./; q'`
 
8422
-
 
8423
+    sed '/^.*\/\([^/][^/]*\)\/*$/{
 
8424
+           s//\1/
 
8425
+           q
 
8426
+         }
 
8427
+         /^X\/\(\/\/\)$/{
 
8428
+           s//\1/
 
8429
+           q
 
8430
+         }
 
8431
+         /^X\/\(\/\).*/{
 
8432
+           s//\1/
 
8433
+           q
 
8434
+         }
 
8435
+         s/.*/./; q'`
 
8436
 
 
8437
-# PATH needs CR, and LINENO needs CR and PATH.
 
8438
-# Avoid depending upon Character Ranges.
 
8439
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
 
8440
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
 
8441
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
 
8442
-as_cr_digits='0123456789'
 
8443
-as_cr_alnum=$as_cr_Letters$as_cr_digits
 
8444
+# CDPATH.
 
8445
+$as_unset CDPATH
 
8446
 
 
8447
-# The user is always right.
 
8448
-if test "${PATH_SEPARATOR+set}" != set; then
 
8449
-  echo "#! /bin/sh" >conf$$.sh
 
8450
-  echo  "exit 0"   >>conf$$.sh
 
8451
-  chmod +x conf$$.sh
 
8452
-  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
 
8453
-    PATH_SEPARATOR=';'
 
8454
-  else
 
8455
-    PATH_SEPARATOR=:
 
8456
-  fi
 
8457
-  rm -f conf$$.sh
 
8458
-fi
 
8459
 
 
8460
 
 
8461
   as_lineno_1=$LINENO
 
8462
   as_lineno_2=$LINENO
 
8463
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
8464
   test "x$as_lineno_1" != "x$as_lineno_2" &&
 
8465
-  test "x$as_lineno_3"  = "x$as_lineno_2"  || {
 
8466
-  # Find who we are.  Look in the path if we contain no path at all
 
8467
-  # relative or not.
 
8468
-  case $0 in
 
8469
-    *[\\/]* ) as_myself=$0 ;;
 
8470
-    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
8471
-for as_dir in $PATH
 
8472
-do
 
8473
-  IFS=$as_save_IFS
 
8474
-  test -z "$as_dir" && as_dir=.
 
8475
-  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
 
8476
-done
 
8477
-
 
8478
-       ;;
 
8479
-  esac
 
8480
-  # We did not find ourselves, most probably we were run as `sh COMMAND'
 
8481
-  # in which case we are not to be found in the path.
 
8482
-  if test "x$as_myself" = x; then
 
8483
-    as_myself=$0
 
8484
-  fi
 
8485
-  if test ! -f "$as_myself"; then
 
8486
-    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
 
8487
-echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
 
8488
-   { (exit 1); exit 1; }; }
 
8489
-  fi
 
8490
-  case $CONFIG_SHELL in
 
8491
-  '')
 
8492
-    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
 
8493
-for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
 
8494
-do
 
8495
-  IFS=$as_save_IFS
 
8496
-  test -z "$as_dir" && as_dir=.
 
8497
-  for as_base in sh bash ksh sh5; do
 
8498
-        case $as_dir in
 
8499
-        /*)
 
8500
-          if ("$as_dir/$as_base" -c '
 
8501
-  as_lineno_1=$LINENO
 
8502
-  as_lineno_2=$LINENO
 
8503
-  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
 
8504
-  test "x$as_lineno_1" != "x$as_lineno_2" &&
 
8505
-  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then
 
8506
-            $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
 
8507
-            $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
 
8508
-            CONFIG_SHELL=$as_dir/$as_base
 
8509
-            export CONFIG_SHELL
 
8510
-            exec "$CONFIG_SHELL" "$0" ${1+"$@"}
 
8511
-          fi;;
 
8512
-        esac
 
8513
-       done
 
8514
-done
 
8515
-;;
 
8516
-  esac
 
8517
+  test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || {
 
8518
 
 
8519
   # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
 
8520
   # uniformly replaced by the line number.  The first 'sed' inserts a
 
8521
-  # line-number line before each line; the second 'sed' does the real
 
8522
-  # work.  The second script uses 'N' to pair each line-number line
 
8523
-  # with the numbered line, and appends trailing '-' during
 
8524
-  # substitution so that $LINENO is not a special case at line end.
 
8525
+  # line-number line after each line using $LINENO; the second 'sed'
 
8526
+  # does the real work.  The second script uses 'N' to pair each
 
8527
+  # line-number line with the line containing $LINENO, and appends
 
8528
+  # trailing '-' during substitution so that $LINENO is not a special
 
8529
+  # case at line end.
 
8530
   # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
 
8531
-  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-)
 
8532
-  sed '=' <$as_myself |
 
8533
+  # scripts with optimization help from Paolo Bonzini.  Blame Lee
 
8534
+  # E. McMahon (1931-1989) for sed's syntax.  :-)
 
8535
+  sed -n '
 
8536
+    p
 
8537
+    /[$]LINENO/=
 
8538
+  ' <$as_myself |
 
8539
     sed '
 
8540
+      s/[$]LINENO.*/&-/
 
8541
+      t lineno
 
8542
+      b
 
8543
+      :lineno
 
8544
       N
 
8545
-      s,$,-,
 
8546
-      : loop
 
8547
-      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
 
8548
+      :loop
 
8549
+      s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
 
8550
       t loop
 
8551
-      s,-$,,
 
8552
-      s,^['$as_cr_digits']*\n,,
 
8553
+      s/-\n.*//
 
8554
     ' >$as_me.lineno &&
 
8555
-  chmod +x $as_me.lineno ||
 
8556
-    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
 
8557
-echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
 
8558
+  chmod +x "$as_me.lineno" ||
 
8559
+    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
 
8560
    { (exit 1); exit 1; }; }
 
8561
 
 
8562
   # Don't try to exec as it changes $[0], causing all sort of problems
 
8563
   # (the dirname of $[0] is not the place where we might find the
 
8564
-  # original and so on.  Autoconf is especially sensible to this).
 
8565
-  . ./$as_me.lineno
 
8566
+  # original and so on.  Autoconf is especially sensitive to this).
 
8567
+  . "./$as_me.lineno"
 
8568
   # Exit status is that of the last command.
 
8569
   exit
 
8570
 }
 
8571
 
 
8572
 
 
8573
-case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
 
8574
-  *c*,-n*) ECHO_N= ECHO_C='
 
8575
-' ECHO_T='     ' ;;
 
8576
-  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;;
 
8577
-  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;;
 
8578
+if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
 
8579
+  as_dirname=dirname
 
8580
+else
 
8581
+  as_dirname=false
 
8582
+fi
 
8583
+
 
8584
+ECHO_C= ECHO_N= ECHO_T=
 
8585
+case `echo -n x` in
 
8586
+-n*)
 
8587
+  case `echo 'x\c'` in
 
8588
+  *c*) ECHO_T='        ';;     # ECHO_T is single tab character.
 
8589
+  *)   ECHO_C='\c';;
 
8590
+  esac;;
 
8591
+*)
 
8592
+  ECHO_N='-n';;
 
8593
 esac
 
8594
 
 
8595
-if expr a : '\(a\)' >/dev/null 2>&1; then
 
8596
+if expr a : '\(a\)' >/dev/null 2>&1 &&
 
8597
+   test "X`expr 00001 : '.*\(...\)'`" = X001; then
 
8598
   as_expr=expr
 
8599
 else
 
8600
   as_expr=false
 
8601
 fi
 
8602
 
 
8603
 rm -f conf$$ conf$$.exe conf$$.file
 
8604
+if test -d conf$$.dir; then
 
8605
+  rm -f conf$$.dir/conf$$.file
 
8606
+else
 
8607
+  rm -f conf$$.dir
 
8608
+  mkdir conf$$.dir
 
8609
+fi
 
8610
 echo >conf$$.file
 
8611
 if ln -s conf$$.file conf$$ 2>/dev/null; then
 
8612
-  # We could just check for DJGPP; but this test a) works b) is more generic
 
8613
-  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
 
8614
-  if test -f conf$$.exe; then
 
8615
-    # Don't use ln at all; we don't have any links
 
8616
+  as_ln_s='ln -s'
 
8617
+  # ... but there are two gotchas:
 
8618
+  # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
 
8619
+  # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
 
8620
+  # In both cases, we have to default to `cp -p'.
 
8621
+  ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
 
8622
     as_ln_s='cp -p'
 
8623
-  else
 
8624
-    as_ln_s='ln -s'
 
8625
-  fi
 
8626
 elif ln conf$$.file conf$$ 2>/dev/null; then
 
8627
   as_ln_s=ln
 
8628
 else
 
8629
   as_ln_s='cp -p'
 
8630
 fi
 
8631
-rm -f conf$$ conf$$.exe conf$$.file
 
8632
+rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
 
8633
+rmdir conf$$.dir 2>/dev/null
 
8634
 
 
8635
 if mkdir -p . 2>/dev/null; then
 
8636
   as_mkdir_p=:
 
8637
@@ -7458,7 +8001,28 @@
 
8638
   as_mkdir_p=false
 
8639
 fi
 
8640
 
 
8641
-as_executable_p="test -f"
 
8642
+if test -x / >/dev/null 2>&1; then
 
8643
+  as_test_x='test -x'
 
8644
+else
 
8645
+  if ls -dL / >/dev/null 2>&1; then
 
8646
+    as_ls_L_option=L
 
8647
+  else
 
8648
+    as_ls_L_option=
 
8649
+  fi
 
8650
+  as_test_x='
 
8651
+    eval sh -c '\''
 
8652
+      if test -d "$1"; then
 
8653
+        test -d "$1/.";
 
8654
+      else
 
8655
+       case $1 in
 
8656
+        -*)set "./$1";;
 
8657
+       esac;
 
8658
+       case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
 
8659
+       ???[sx]*):;;*)false;;esac;fi
 
8660
+    '\'' sh
 
8661
+  '
 
8662
+fi
 
8663
+as_executable_p=$as_test_x
 
8664
 
 
8665
 # Sed expression to map a string onto a valid CPP name.
 
8666
 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
 
8667
@@ -7467,31 +8031,14 @@
 
8668
 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
 
8669
 
 
8670
 
 
8671
-# IFS
 
8672
-# We need space, tab and new line, in precisely that order.
 
8673
-as_nl='
 
8674
-'
 
8675
-IFS="  $as_nl"
 
8676
-
 
8677
-# CDPATH.
 
8678
-$as_unset CDPATH
 
8679
-
 
8680
 exec 6>&1
 
8681
 
 
8682
-# Open the log real soon, to keep \$[0] and so on meaningful, and to
 
8683
+# Save the log message, to keep $[0] and so on meaningful, and to
 
8684
 # report actual input values of CONFIG_FILES etc. instead of their
 
8685
-# values after options handling.  Logging --version etc. is OK.
 
8686
-exec 5>>config.log
 
8687
-{
 
8688
-  echo
 
8689
-  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
8690
-## Running $as_me. ##
 
8691
-_ASBOX
 
8692
-} >&5
 
8693
-cat >&5 <<_CSEOF
 
8694
-
 
8695
+# values after options handling.
 
8696
+ac_log="
 
8697
 This file was extended by dbacl $as_me 1.12, which was
 
8698
-generated by GNU Autoconf 2.59.  Invocation command line was
 
8699
+generated by GNU Autoconf 2.61.  Invocation command line was
 
8700
 
 
8701
   CONFIG_FILES    = $CONFIG_FILES
 
8702
   CONFIG_HEADERS  = $CONFIG_HEADERS
 
8703
@@ -7499,30 +8046,20 @@
 
8704
   CONFIG_COMMANDS = $CONFIG_COMMANDS
 
8705
   $ $0 $@
 
8706
 
 
8707
-_CSEOF
 
8708
-echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
 
8709
-echo >&5
 
8710
+on `(hostname || uname -n) 2>/dev/null | sed 1q`
 
8711
+"
 
8712
+
 
8713
 _ACEOF
 
8714
 
 
8715
+cat >>$CONFIG_STATUS <<_ACEOF
 
8716
 # Files that config.status was made for.
 
8717
-if test -n "$ac_config_files"; then
 
8718
-  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
 
8719
-fi
 
8720
-
 
8721
-if test -n "$ac_config_headers"; then
 
8722
-  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
 
8723
-fi
 
8724
-
 
8725
-if test -n "$ac_config_links"; then
 
8726
-  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
 
8727
-fi
 
8728
+config_files="$ac_config_files"
 
8729
+config_headers="$ac_config_headers"
 
8730
+config_commands="$ac_config_commands"
 
8731
 
 
8732
-if test -n "$ac_config_commands"; then
 
8733
-  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
 
8734
-fi
 
8735
+_ACEOF
 
8736
 
 
8737
 cat >>$CONFIG_STATUS <<\_ACEOF
 
8738
-
 
8739
 ac_cs_usage="\
 
8740
 \`$as_me' instantiates files from templates according to the
 
8741
 current configuration.
 
8742
@@ -7530,7 +8067,7 @@
 
8743
 Usage: $0 [OPTIONS] [FILE]...
 
8744
 
 
8745
   -h, --help       print this help, then exit
 
8746
-  -V, --version    print version number, then exit
 
8747
+  -V, --version    print version number and configuration settings, then exit
 
8748
   -q, --quiet      do not print progress messages
 
8749
   -d, --debug      don't remove temporary files
 
8750
       --recheck    update $as_me by reconfiguring in the same conditions
 
8751
@@ -7549,19 +8086,21 @@
 
8752
 $config_commands
 
8753
 
 
8754
 Report bugs to <bug-autoconf@gnu.org>."
 
8755
-_ACEOF
 
8756
 
 
8757
+_ACEOF
 
8758
 cat >>$CONFIG_STATUS <<_ACEOF
 
8759
 ac_cs_version="\\
 
8760
 dbacl config.status 1.12
 
8761
-configured by $0, generated by GNU Autoconf 2.59,
 
8762
-  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
8763
+configured by $0, generated by GNU Autoconf 2.61,
 
8764
+  with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
 
8765
 
 
8766
-Copyright (C) 2003 Free Software Foundation, Inc.
 
8767
+Copyright (C) 2006 Free Software Foundation, Inc.
 
8768
 This config.status script is free software; the Free Software Foundation
 
8769
 gives unlimited permission to copy, distribute and modify it."
 
8770
-srcdir=$srcdir
 
8771
-INSTALL="$INSTALL"
 
8772
+
 
8773
+ac_pwd='$ac_pwd'
 
8774
+srcdir='$srcdir'
 
8775
+INSTALL='$INSTALL'
 
8776
 _ACEOF
 
8777
 
 
8778
 cat >>$CONFIG_STATUS <<\_ACEOF
 
8779
@@ -7572,39 +8111,24 @@
 
8780
 do
 
8781
   case $1 in
 
8782
   --*=*)
 
8783
-    ac_option=`expr "x$1" : 'x\([^=]*\)='`
 
8784
-    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
 
8785
+    ac_option=`expr "X$1" : 'X\([^=]*\)='`
 
8786
+    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
 
8787
     ac_shift=:
 
8788
     ;;
 
8789
-  -*)
 
8790
+  *)
 
8791
     ac_option=$1
 
8792
     ac_optarg=$2
 
8793
     ac_shift=shift
 
8794
     ;;
 
8795
-  *) # This is not an option, so the user has probably given explicit
 
8796
-     # arguments.
 
8797
-     ac_option=$1
 
8798
-     ac_need_defaults=false;;
 
8799
   esac
 
8800
 
 
8801
   case $ac_option in
 
8802
   # Handling of the options.
 
8803
-_ACEOF
 
8804
-cat >>$CONFIG_STATUS <<\_ACEOF
 
8805
   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
 
8806
     ac_cs_recheck=: ;;
 
8807
-  --version | --vers* | -V )
 
8808
-    echo "$ac_cs_version"; exit 0 ;;
 
8809
-  --he | --h)
 
8810
-    # Conflict between --help and --header
 
8811
-    { { echo "$as_me:$LINENO: error: ambiguous option: $1
 
8812
-Try \`$0 --help' for more information." >&5
 
8813
-echo "$as_me: error: ambiguous option: $1
 
8814
-Try \`$0 --help' for more information." >&2;}
 
8815
-   { (exit 1); exit 1; }; };;
 
8816
-  --help | --hel | -h )
 
8817
-    echo "$ac_cs_usage"; exit 0 ;;
 
8818
-  --debug | --d* | -d )
 
8819
+  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
 
8820
+    echo "$ac_cs_version"; exit ;;
 
8821
+  --debug | --debu | --deb | --de | --d | -d )
 
8822
     debug=: ;;
 
8823
   --file | --fil | --fi | --f )
 
8824
     $ac_shift
 
8825
@@ -7614,18 +8138,24 @@
 
8826
     $ac_shift
 
8827
     CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
 
8828
     ac_need_defaults=false;;
 
8829
+  --he | --h)
 
8830
+    # Conflict between --help and --header
 
8831
+    { echo "$as_me: error: ambiguous option: $1
 
8832
+Try \`$0 --help' for more information." >&2
 
8833
+   { (exit 1); exit 1; }; };;
 
8834
+  --help | --hel | -h )
 
8835
+    echo "$ac_cs_usage"; exit ;;
 
8836
   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
 
8837
   | -silent | --silent | --silen | --sile | --sil | --si | --s)
 
8838
     ac_cs_silent=: ;;
 
8839
 
 
8840
   # This is an error.
 
8841
-  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
 
8842
-Try \`$0 --help' for more information." >&5
 
8843
-echo "$as_me: error: unrecognized option: $1
 
8844
-Try \`$0 --help' for more information." >&2;}
 
8845
+  -*) { echo "$as_me: error: unrecognized option: $1
 
8846
+Try \`$0 --help' for more information." >&2
 
8847
    { (exit 1); exit 1; }; } ;;
 
8848
 
 
8849
-  *) ac_config_targets="$ac_config_targets $1" ;;
 
8850
+  *) ac_config_targets="$ac_config_targets $1"
 
8851
+     ac_need_defaults=false ;;
 
8852
 
 
8853
   esac
 
8854
   shift
 
8855
@@ -7641,45 +8171,57 @@
 
8856
 _ACEOF
 
8857
 cat >>$CONFIG_STATUS <<_ACEOF
 
8858
 if \$ac_cs_recheck; then
 
8859
-  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
 
8860
-  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
8861
+  echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
 
8862
+  CONFIG_SHELL=$SHELL
 
8863
+  export CONFIG_SHELL
 
8864
+  exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
 
8865
 fi
 
8866
 
 
8867
 _ACEOF
 
8868
+cat >>$CONFIG_STATUS <<\_ACEOF
 
8869
+exec 5>>config.log
 
8870
+{
 
8871
+  echo
 
8872
+  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
 
8873
+## Running $as_me. ##
 
8874
+_ASBOX
 
8875
+  echo "$ac_log"
 
8876
+} >&5
 
8877
 
 
8878
+_ACEOF
 
8879
 cat >>$CONFIG_STATUS <<_ACEOF
 
8880
 #
 
8881
-# INIT-COMMANDS section.
 
8882
+# INIT-COMMANDS
 
8883
 #
 
8884
-
 
8885
 AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
 
8886
 
 
8887
 _ACEOF
 
8888
 
 
8889
-
 
8890
-
 
8891
 cat >>$CONFIG_STATUS <<\_ACEOF
 
8892
+
 
8893
+# Handling of arguments.
 
8894
 for ac_config_target in $ac_config_targets
 
8895
 do
 
8896
-  case "$ac_config_target" in
 
8897
-  # Handling of arguments.
 
8898
-  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
8899
-  "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
 
8900
-  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
 
8901
-  "src/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;;
 
8902
-  "man/Makefile" ) CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
 
8903
-  "ts/Makefile" ) CONFIG_FILES="$CONFIG_FILES ts/Makefile" ;;
 
8904
-  "TREC/Makefile" ) CONFIG_FILES="$CONFIG_FILES TREC/Makefile" ;;
 
8905
-  "contrib/Makefile" ) CONFIG_FILES="$CONFIG_FILES contrib/Makefile" ;;
 
8906
-  "doc/chess/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/chess/Makefile" ;;
 
8907
-  "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
8908
-  "src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;;
 
8909
+  case $ac_config_target in
 
8910
+    "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;;
 
8911
+    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
 
8912
+    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
 
8913
+    "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
 
8914
+    "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
 
8915
+    "src/tests/Makefile") CONFIG_FILES="$CONFIG_FILES src/tests/Makefile" ;;
 
8916
+    "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
 
8917
+    "ts/Makefile") CONFIG_FILES="$CONFIG_FILES ts/Makefile" ;;
 
8918
+    "TREC/Makefile") CONFIG_FILES="$CONFIG_FILES TREC/Makefile" ;;
 
8919
+    "contrib/Makefile") CONFIG_FILES="$CONFIG_FILES contrib/Makefile" ;;
 
8920
+    "doc/chess/Makefile") CONFIG_FILES="$CONFIG_FILES doc/chess/Makefile" ;;
 
8921
+
 
8922
   *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
 
8923
 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
 
8924
    { (exit 1); exit 1; }; };;
 
8925
   esac
 
8926
 done
 
8927
 
 
8928
+
 
8929
 # If the user did not use the arguments to specify the items to instantiate,
 
8930
 # then the envvar interface is used.  Set only those that are not.
 
8931
 # We use the long form for the default assignment because of an extremely
 
8932
@@ -7691,595 +8233,585 @@
 
8933
 fi
 
8934
 
 
8935
 # Have a temporary directory for convenience.  Make it in the build tree
 
8936
-# simply because there is no reason to put it here, and in addition,
 
8937
+# simply because there is no reason against having it here, and in addition,
 
8938
 # creating and moving files from /tmp can sometimes cause problems.
 
8939
-# Create a temporary directory, and hook for its removal unless debugging.
 
8940
+# Hook for its removal unless debugging.
 
8941
+# Note that there is a small window in which the directory will not be cleaned:
 
8942
+# after its creation but before its name has been assigned to `$tmp'.
 
8943
 $debug ||
 
8944
 {
 
8945
-  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
 
8946
+  tmp=
 
8947
+  trap 'exit_status=$?
 
8948
+  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
 
8949
+' 0
 
8950
   trap '{ (exit 1); exit 1; }' 1 2 13 15
 
8951
 }
 
8952
-
 
8953
 # Create a (secure) tmp directory for tmp files.
 
8954
 
 
8955
 {
 
8956
-  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
 
8957
+  tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
 
8958
   test -n "$tmp" && test -d "$tmp"
 
8959
 }  ||
 
8960
 {
 
8961
-  tmp=./confstat$$-$RANDOM
 
8962
-  (umask 077 && mkdir $tmp)
 
8963
+  tmp=./conf$$-$RANDOM
 
8964
+  (umask 077 && mkdir "$tmp")
 
8965
 } ||
 
8966
 {
 
8967
    echo "$me: cannot create a temporary directory in ." >&2
 
8968
    { (exit 1); exit 1; }
 
8969
 }
 
8970
 
 
8971
-_ACEOF
 
8972
-
 
8973
-cat >>$CONFIG_STATUS <<_ACEOF
 
8974
-
 
8975
 #
 
8976
-# CONFIG_FILES section.
 
8977
+# Set up the sed scripts for CONFIG_FILES section.
 
8978
 #
 
8979
 
 
8980
 # No need to generate the scripts if there are no CONFIG_FILES.
 
8981
 # This happens for instance when ./config.status config.h
 
8982
-if test -n "\$CONFIG_FILES"; then
 
8983
-  # Protect against being on the right side of a sed subst in config.status.
 
8984
-  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
 
8985
-   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
 
8986
-s,@SHELL@,$SHELL,;t t
 
8987
-s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
 
8988
-s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
 
8989
-s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
 
8990
-s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
 
8991
-s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
 
8992
-s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
 
8993
-s,@exec_prefix@,$exec_prefix,;t t
 
8994
-s,@prefix@,$prefix,;t t
 
8995
-s,@program_transform_name@,$program_transform_name,;t t
 
8996
-s,@bindir@,$bindir,;t t
 
8997
-s,@sbindir@,$sbindir,;t t
 
8998
-s,@libexecdir@,$libexecdir,;t t
 
8999
-s,@datadir@,$datadir,;t t
 
9000
-s,@sysconfdir@,$sysconfdir,;t t
 
9001
-s,@sharedstatedir@,$sharedstatedir,;t t
 
9002
-s,@localstatedir@,$localstatedir,;t t
 
9003
-s,@libdir@,$libdir,;t t
 
9004
-s,@includedir@,$includedir,;t t
 
9005
-s,@oldincludedir@,$oldincludedir,;t t
 
9006
-s,@infodir@,$infodir,;t t
 
9007
-s,@mandir@,$mandir,;t t
 
9008
-s,@build_alias@,$build_alias,;t t
 
9009
-s,@host_alias@,$host_alias,;t t
 
9010
-s,@target_alias@,$target_alias,;t t
 
9011
-s,@DEFS@,$DEFS,;t t
 
9012
-s,@ECHO_C@,$ECHO_C,;t t
 
9013
-s,@ECHO_N@,$ECHO_N,;t t
 
9014
-s,@ECHO_T@,$ECHO_T,;t t
 
9015
-s,@LIBS@,$LIBS,;t t
 
9016
-s,@build@,$build,;t t
 
9017
-s,@build_cpu@,$build_cpu,;t t
 
9018
-s,@build_vendor@,$build_vendor,;t t
 
9019
-s,@build_os@,$build_os,;t t
 
9020
-s,@host@,$host,;t t
 
9021
-s,@host_cpu@,$host_cpu,;t t
 
9022
-s,@host_vendor@,$host_vendor,;t t
 
9023
-s,@host_os@,$host_os,;t t
 
9024
-s,@target@,$target,;t t
 
9025
-s,@target_cpu@,$target_cpu,;t t
 
9026
-s,@target_vendor@,$target_vendor,;t t
 
9027
-s,@target_os@,$target_os,;t t
 
9028
-s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
 
9029
-s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
 
9030
-s,@INSTALL_DATA@,$INSTALL_DATA,;t t
 
9031
-s,@CYGPATH_W@,$CYGPATH_W,;t t
 
9032
-s,@PACKAGE@,$PACKAGE,;t t
 
9033
-s,@VERSION@,$VERSION,;t t
 
9034
-s,@ACLOCAL@,$ACLOCAL,;t t
 
9035
-s,@AUTOCONF@,$AUTOCONF,;t t
 
9036
-s,@AUTOMAKE@,$AUTOMAKE,;t t
 
9037
-s,@AUTOHEADER@,$AUTOHEADER,;t t
 
9038
-s,@MAKEINFO@,$MAKEINFO,;t t
 
9039
-s,@install_sh@,$install_sh,;t t
 
9040
-s,@STRIP@,$STRIP,;t t
 
9041
-s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
 
9042
-s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t
 
9043
-s,@mkdir_p@,$mkdir_p,;t t
 
9044
-s,@AWK@,$AWK,;t t
 
9045
-s,@SET_MAKE@,$SET_MAKE,;t t
 
9046
-s,@am__leading_dot@,$am__leading_dot,;t t
 
9047
-s,@AMTAR@,$AMTAR,;t t
 
9048
-s,@am__tar@,$am__tar,;t t
 
9049
-s,@am__untar@,$am__untar,;t t
 
9050
-s,@CC@,$CC,;t t
 
9051
-s,@CFLAGS@,$CFLAGS,;t t
 
9052
-s,@LDFLAGS@,$LDFLAGS,;t t
 
9053
-s,@CPPFLAGS@,$CPPFLAGS,;t t
 
9054
-s,@ac_ct_CC@,$ac_ct_CC,;t t
 
9055
-s,@EXEEXT@,$EXEEXT,;t t
 
9056
-s,@OBJEXT@,$OBJEXT,;t t
 
9057
-s,@DEPDIR@,$DEPDIR,;t t
 
9058
-s,@am__include@,$am__include,;t t
 
9059
-s,@am__quote@,$am__quote,;t t
 
9060
-s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t
 
9061
-s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t
 
9062
-s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t
 
9063
-s,@CCDEPMODE@,$CCDEPMODE,;t t
 
9064
-s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t
 
9065
-s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t
 
9066
-s,@CPP@,$CPP,;t t
 
9067
-s,@EGREP@,$EGREP,;t t
 
9068
-s,@CFLAGSIEEE@,$CFLAGSIEEE,;t t
 
9069
-s,@LEX@,$LEX,;t t
 
9070
-s,@LEXLIB@,$LEXLIB,;t t
 
9071
-s,@LEX_OUTPUT_ROOT@,$LEX_OUTPUT_ROOT,;t t
 
9072
-s,@YACC@,$YACC,;t t
 
9073
-s,@LDADDINTER@,$LDADDINTER,;t t
 
9074
-s,@INCLUDESINTER@,$INCLUDESINTER,;t t
 
9075
-s,@LIBOBJS@,$LIBOBJS,;t t
 
9076
-s,@LTLIBOBJS@,$LTLIBOBJS,;t t
 
9077
-CEOF
 
9078
-
 
9079
-_ACEOF
 
9080
-
 
9081
-  cat >>$CONFIG_STATUS <<\_ACEOF
 
9082
-  # Split the substitutions into bite-sized pieces for seds with
 
9083
-  # small command number limits, like on Digital OSF/1 and HP-UX.
 
9084
-  ac_max_sed_lines=48
 
9085
-  ac_sed_frag=1 # Number of current file.
 
9086
-  ac_beg=1 # First line for current file.
 
9087
-  ac_end=$ac_max_sed_lines # Line after last line for current file.
 
9088
-  ac_more_lines=:
 
9089
-  ac_sed_cmds=
 
9090
-  while $ac_more_lines; do
 
9091
-    if test $ac_beg -gt 1; then
 
9092
-      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
 
9093
-    else
 
9094
-      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
 
9095
-    fi
 
9096
-    if test ! -s $tmp/subs.frag; then
 
9097
-      ac_more_lines=false
 
9098
-    else
 
9099
-      # The purpose of the label and of the branching condition is to
 
9100
-      # speed up the sed processing (if there are no `@' at all, there
 
9101
-      # is no need to browse any of the substitutions).
 
9102
-      # These are the two extra sed commands mentioned above.
 
9103
-      (echo ':t
 
9104
-  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
 
9105
-      if test -z "$ac_sed_cmds"; then
 
9106
-       ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
 
9107
-      else
 
9108
-       ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
 
9109
-      fi
 
9110
-      ac_sed_frag=`expr $ac_sed_frag + 1`
 
9111
-      ac_beg=$ac_end
 
9112
-      ac_end=`expr $ac_end + $ac_max_sed_lines`
 
9113
-    fi
 
9114
-  done
 
9115
-  if test -z "$ac_sed_cmds"; then
 
9116
-    ac_sed_cmds=cat
 
9117
+if test -n "$CONFIG_FILES"; then
 
9118
+
 
9119
+_ACEOF
 
9120
+
 
9121
+
 
9122
+
 
9123
+ac_delim='%!_!# '
 
9124
+for ac_last_try in false false false false false :; do
 
9125
+  cat >conf$$subs.sed <<_ACEOF
 
9126
+SHELL!$SHELL$ac_delim
 
9127
+PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim
 
9128
+PACKAGE_NAME!$PACKAGE_NAME$ac_delim
 
9129
+PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
 
9130
+PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
 
9131
+PACKAGE_STRING!$PACKAGE_STRING$ac_delim
 
9132
+PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
 
9133
+exec_prefix!$exec_prefix$ac_delim
 
9134
+prefix!$prefix$ac_delim
 
9135
+program_transform_name!$program_transform_name$ac_delim
 
9136
+bindir!$bindir$ac_delim
 
9137
+sbindir!$sbindir$ac_delim
 
9138
+libexecdir!$libexecdir$ac_delim
 
9139
+datarootdir!$datarootdir$ac_delim
 
9140
+datadir!$datadir$ac_delim
 
9141
+sysconfdir!$sysconfdir$ac_delim
 
9142
+sharedstatedir!$sharedstatedir$ac_delim
 
9143
+localstatedir!$localstatedir$ac_delim
 
9144
+includedir!$includedir$ac_delim
 
9145
+oldincludedir!$oldincludedir$ac_delim
 
9146
+docdir!$docdir$ac_delim
 
9147
+infodir!$infodir$ac_delim
 
9148
+htmldir!$htmldir$ac_delim
 
9149
+dvidir!$dvidir$ac_delim
 
9150
+pdfdir!$pdfdir$ac_delim
 
9151
+psdir!$psdir$ac_delim
 
9152
+libdir!$libdir$ac_delim
 
9153
+localedir!$localedir$ac_delim
 
9154
+mandir!$mandir$ac_delim
 
9155
+DEFS!$DEFS$ac_delim
 
9156
+ECHO_C!$ECHO_C$ac_delim
 
9157
+ECHO_N!$ECHO_N$ac_delim
 
9158
+ECHO_T!$ECHO_T$ac_delim
 
9159
+LIBS!$LIBS$ac_delim
 
9160
+build_alias!$build_alias$ac_delim
 
9161
+host_alias!$host_alias$ac_delim
 
9162
+target_alias!$target_alias$ac_delim
 
9163
+build!$build$ac_delim
 
9164
+build_cpu!$build_cpu$ac_delim
 
9165
+build_vendor!$build_vendor$ac_delim
 
9166
+build_os!$build_os$ac_delim
 
9167
+host!$host$ac_delim
 
9168
+host_cpu!$host_cpu$ac_delim
 
9169
+host_vendor!$host_vendor$ac_delim
 
9170
+host_os!$host_os$ac_delim
 
9171
+target!$target$ac_delim
 
9172
+target_cpu!$target_cpu$ac_delim
 
9173
+target_vendor!$target_vendor$ac_delim
 
9174
+target_os!$target_os$ac_delim
 
9175
+INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
 
9176
+INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
 
9177
+INSTALL_DATA!$INSTALL_DATA$ac_delim
 
9178
+CYGPATH_W!$CYGPATH_W$ac_delim
 
9179
+PACKAGE!$PACKAGE$ac_delim
 
9180
+VERSION!$VERSION$ac_delim
 
9181
+ACLOCAL!$ACLOCAL$ac_delim
 
9182
+AUTOCONF!$AUTOCONF$ac_delim
 
9183
+AUTOMAKE!$AUTOMAKE$ac_delim
 
9184
+AUTOHEADER!$AUTOHEADER$ac_delim
 
9185
+MAKEINFO!$MAKEINFO$ac_delim
 
9186
+install_sh!$install_sh$ac_delim
 
9187
+STRIP!$STRIP$ac_delim
 
9188
+INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
 
9189
+mkdir_p!$mkdir_p$ac_delim
 
9190
+AWK!$AWK$ac_delim
 
9191
+SET_MAKE!$SET_MAKE$ac_delim
 
9192
+am__leading_dot!$am__leading_dot$ac_delim
 
9193
+AMTAR!$AMTAR$ac_delim
 
9194
+am__tar!$am__tar$ac_delim
 
9195
+am__untar!$am__untar$ac_delim
 
9196
+CC!$CC$ac_delim
 
9197
+CFLAGS!$CFLAGS$ac_delim
 
9198
+LDFLAGS!$LDFLAGS$ac_delim
 
9199
+CPPFLAGS!$CPPFLAGS$ac_delim
 
9200
+ac_ct_CC!$ac_ct_CC$ac_delim
 
9201
+EXEEXT!$EXEEXT$ac_delim
 
9202
+OBJEXT!$OBJEXT$ac_delim
 
9203
+DEPDIR!$DEPDIR$ac_delim
 
9204
+am__include!$am__include$ac_delim
 
9205
+am__quote!$am__quote$ac_delim
 
9206
+AMDEP_TRUE!$AMDEP_TRUE$ac_delim
 
9207
+AMDEP_FALSE!$AMDEP_FALSE$ac_delim
 
9208
+AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
 
9209
+CCDEPMODE!$CCDEPMODE$ac_delim
 
9210
+am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
 
9211
+am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
 
9212
+CPP!$CPP$ac_delim
 
9213
+GREP!$GREP$ac_delim
 
9214
+EGREP!$EGREP$ac_delim
 
9215
+CFLAGSIEEE!$CFLAGSIEEE$ac_delim
 
9216
+LEX!$LEX$ac_delim
 
9217
+LEX_OUTPUT_ROOT!$LEX_OUTPUT_ROOT$ac_delim
 
9218
+LEXLIB!$LEXLIB$ac_delim
 
9219
+YACC!$YACC$ac_delim
 
9220
+YFLAGS!$YFLAGS$ac_delim
 
9221
+LDADDINTER!$LDADDINTER$ac_delim
 
9222
+INCLUDESINTER!$INCLUDESINTER$ac_delim
 
9223
+_ACEOF
 
9224
+
 
9225
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
 
9226
+    break
 
9227
+  elif $ac_last_try; then
 
9228
+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
9229
+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
9230
+   { (exit 1); exit 1; }; }
 
9231
+  else
 
9232
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
9233
   fi
 
9234
-fi # test -n "$CONFIG_FILES"
 
9235
+done
 
9236
+
 
9237
+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 
9238
+if test -n "$ac_eof"; then
 
9239
+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 
9240
+  ac_eof=`expr $ac_eof + 1`
 
9241
+fi
 
9242
+
 
9243
+cat >>$CONFIG_STATUS <<_ACEOF
 
9244
+cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
 
9245
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
9246
+_ACEOF
 
9247
+sed '
 
9248
+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 
9249
+s/^/s,@/; s/!/@,|#_!!_#|/
 
9250
+:n
 
9251
+t n
 
9252
+s/'"$ac_delim"'$/,g/; t
 
9253
+s/$/\\/; p
 
9254
+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
 
9255
+' >>$CONFIG_STATUS <conf$$subs.sed
 
9256
+rm -f conf$$subs.sed
 
9257
+cat >>$CONFIG_STATUS <<_ACEOF
 
9258
+CEOF$ac_eof
 
9259
+_ACEOF
 
9260
+
 
9261
+
 
9262
+ac_delim='%!_!# '
 
9263
+for ac_last_try in false false false false false :; do
 
9264
+  cat >conf$$subs.sed <<_ACEOF
 
9265
+LIBOBJS!$LIBOBJS$ac_delim
 
9266
+LTLIBOBJS!$LTLIBOBJS$ac_delim
 
9267
+_ACEOF
 
9268
+
 
9269
+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 2; then
 
9270
+    break
 
9271
+  elif $ac_last_try; then
 
9272
+    { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
 
9273
+echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
 
9274
+   { (exit 1); exit 1; }; }
 
9275
+  else
 
9276
+    ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
 
9277
+  fi
 
9278
+done
 
9279
+
 
9280
+ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
 
9281
+if test -n "$ac_eof"; then
 
9282
+  ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
 
9283
+  ac_eof=`expr $ac_eof + 1`
 
9284
+fi
 
9285
 
 
9286
+cat >>$CONFIG_STATUS <<_ACEOF
 
9287
+cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof
 
9288
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end
 
9289
+_ACEOF
 
9290
+sed '
 
9291
+s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
 
9292
+s/^/s,@/; s/!/@,|#_!!_#|/
 
9293
+:n
 
9294
+t n
 
9295
+s/'"$ac_delim"'$/,g/; t
 
9296
+s/$/\\/; p
 
9297
+N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
 
9298
+' >>$CONFIG_STATUS <conf$$subs.sed
 
9299
+rm -f conf$$subs.sed
 
9300
+cat >>$CONFIG_STATUS <<_ACEOF
 
9301
+:end
 
9302
+s/|#_!!_#|//g
 
9303
+CEOF$ac_eof
 
9304
 _ACEOF
 
9305
+
 
9306
+
 
9307
+# VPATH may cause trouble with some makes, so we remove $(srcdir),
 
9308
+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
 
9309
+# trailing colons and then remove the whole line if VPATH becomes empty
 
9310
+# (actually we leave an empty line to preserve line numbers).
 
9311
+if test "x$srcdir" = x.; then
 
9312
+  ac_vpsub='/^[         ]*VPATH[        ]*=/{
 
9313
+s/:*\$(srcdir):*/:/
 
9314
+s/:*\${srcdir}:*/:/
 
9315
+s/:*@srcdir@:*/:/
 
9316
+s/^\([^=]*=[    ]*\):*/\1/
 
9317
+s/:*$//
 
9318
+s/^[^=]*=[      ]*$//
 
9319
+}'
 
9320
+fi
 
9321
+
 
9322
 cat >>$CONFIG_STATUS <<\_ACEOF
 
9323
-for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
 
9324
-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 
9325
-  case $ac_file in
 
9326
-  - | *:- | *:-:* ) # input from stdin
 
9327
-       cat >$tmp/stdin
 
9328
-       ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
9329
-       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
9330
-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
9331
-       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
9332
-  * )   ac_file_in=$ac_file.in ;;
 
9333
+fi # test -n "$CONFIG_FILES"
 
9334
+
 
9335
+
 
9336
+for ac_tag in  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS
 
9337
+do
 
9338
+  case $ac_tag in
 
9339
+  :[FHLC]) ac_mode=$ac_tag; continue;;
 
9340
+  esac
 
9341
+  case $ac_mode$ac_tag in
 
9342
+  :[FHL]*:*);;
 
9343
+  :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5
 
9344
+echo "$as_me: error: Invalid tag $ac_tag." >&2;}
 
9345
+   { (exit 1); exit 1; }; };;
 
9346
+  :[FH]-) ac_tag=-:-;;
 
9347
+  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
 
9348
+  esac
 
9349
+  ac_save_IFS=$IFS
 
9350
+  IFS=:
 
9351
+  set x $ac_tag
 
9352
+  IFS=$ac_save_IFS
 
9353
+  shift
 
9354
+  ac_file=$1
 
9355
+  shift
 
9356
+
 
9357
+  case $ac_mode in
 
9358
+  :L) ac_source=$1;;
 
9359
+  :[FH])
 
9360
+    ac_file_inputs=
 
9361
+    for ac_f
 
9362
+    do
 
9363
+      case $ac_f in
 
9364
+      -) ac_f="$tmp/stdin";;
 
9365
+      *) # Look for the file first in the build tree, then in the source tree
 
9366
+        # (if the path is not absolute).  The absolute path cannot be DOS-style,
 
9367
+        # because $ac_f cannot contain `:'.
 
9368
+        test -f "$ac_f" ||
 
9369
+          case $ac_f in
 
9370
+          [\\/$]*) false;;
 
9371
+          *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
 
9372
+          esac ||
 
9373
+          { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
 
9374
+echo "$as_me: error: cannot find input file: $ac_f" >&2;}
 
9375
+   { (exit 1); exit 1; }; };;
 
9376
+      esac
 
9377
+      ac_file_inputs="$ac_file_inputs $ac_f"
 
9378
+    done
 
9379
+
 
9380
+    # Let's still pretend it is `configure' which instantiates (i.e., don't
 
9381
+    # use $as_me), people would be surprised to read:
 
9382
+    #    /* config.h.  Generated by config.status.  */
 
9383
+    configure_input="Generated from "`IFS=:
 
9384
+         echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure."
 
9385
+    if test x"$ac_file" != x-; then
 
9386
+      configure_input="$ac_file.  $configure_input"
 
9387
+      { echo "$as_me:$LINENO: creating $ac_file" >&5
 
9388
+echo "$as_me: creating $ac_file" >&6;}
 
9389
+    fi
 
9390
+
 
9391
+    case $ac_tag in
 
9392
+    *:-:* | *:-) cat >"$tmp/stdin";;
 
9393
+    esac
 
9394
+    ;;
 
9395
   esac
 
9396
 
 
9397
-  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
 
9398
-  ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 
9399
+  ac_dir=`$as_dirname -- "$ac_file" ||
 
9400
 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9401
         X"$ac_file" : 'X\(//\)[^/]' \| \
 
9402
         X"$ac_file" : 'X\(//\)$' \| \
 
9403
-        X"$ac_file" : 'X\(/\)' \| \
 
9404
-        .     : '\(.\)' 2>/dev/null ||
 
9405
+        X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
 
9406
 echo X"$ac_file" |
 
9407
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
9408
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
9409
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
9410
-         /^X\(\/\).*/{ s//\1/; q; }
 
9411
-         s/.*/./; q'`
 
9412
-  { if $as_mkdir_p; then
 
9413
-    mkdir -p "$ac_dir"
 
9414
-  else
 
9415
-    as_dir="$ac_dir"
 
9416
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
9417
+           s//\1/
 
9418
+           q
 
9419
+         }
 
9420
+         /^X\(\/\/\)[^/].*/{
 
9421
+           s//\1/
 
9422
+           q
 
9423
+         }
 
9424
+         /^X\(\/\/\)$/{
 
9425
+           s//\1/
 
9426
+           q
 
9427
+         }
 
9428
+         /^X\(\/\).*/{
 
9429
+           s//\1/
 
9430
+           q
 
9431
+         }
 
9432
+         s/.*/./; q'`
 
9433
+  { as_dir="$ac_dir"
 
9434
+  case $as_dir in #(
 
9435
+  -*) as_dir=./$as_dir;;
 
9436
+  esac
 
9437
+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
 
9438
     as_dirs=
 
9439
-    while test ! -d "$as_dir"; do
 
9440
-      as_dirs="$as_dir $as_dirs"
 
9441
-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
9442
+    while :; do
 
9443
+      case $as_dir in #(
 
9444
+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
 
9445
+      *) as_qdir=$as_dir;;
 
9446
+      esac
 
9447
+      as_dirs="'$as_qdir' $as_dirs"
 
9448
+      as_dir=`$as_dirname -- "$as_dir" ||
 
9449
 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9450
         X"$as_dir" : 'X\(//\)[^/]' \| \
 
9451
         X"$as_dir" : 'X\(//\)$' \| \
 
9452
-        X"$as_dir" : 'X\(/\)' \| \
 
9453
-        .     : '\(.\)' 2>/dev/null ||
 
9454
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
9455
 echo X"$as_dir" |
 
9456
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
9457
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
9458
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
9459
-         /^X\(\/\).*/{ s//\1/; q; }
 
9460
-         s/.*/./; q'`
 
9461
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
9462
+           s//\1/
 
9463
+           q
 
9464
+         }
 
9465
+         /^X\(\/\/\)[^/].*/{
 
9466
+           s//\1/
 
9467
+           q
 
9468
+         }
 
9469
+         /^X\(\/\/\)$/{
 
9470
+           s//\1/
 
9471
+           q
 
9472
+         }
 
9473
+         /^X\(\/\).*/{
 
9474
+           s//\1/
 
9475
+           q
 
9476
+         }
 
9477
+         s/.*/./; q'`
 
9478
+      test -d "$as_dir" && break
 
9479
     done
 
9480
-    test ! -n "$as_dirs" || mkdir $as_dirs
 
9481
-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
9482
-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
9483
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
9484
+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
 
9485
+echo "$as_me: error: cannot create directory $as_dir" >&2;}
 
9486
    { (exit 1); exit 1; }; }; }
 
9487
-
 
9488
   ac_builddir=.
 
9489
 
 
9490
-if test "$ac_dir" != .; then
 
9491
+case "$ac_dir" in
 
9492
+.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
9493
+*)
 
9494
   ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
9495
-  # A "../" for each directory in $ac_dir_suffix.
 
9496
-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 
9497
-else
 
9498
-  ac_dir_suffix= ac_top_builddir=
 
9499
-fi
 
9500
+  # A ".." for each directory in $ac_dir_suffix.
 
9501
+  ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`
 
9502
+  case $ac_top_builddir_sub in
 
9503
+  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
 
9504
+  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
 
9505
+  esac ;;
 
9506
+esac
 
9507
+ac_abs_top_builddir=$ac_pwd
 
9508
+ac_abs_builddir=$ac_pwd$ac_dir_suffix
 
9509
+# for backward compatibility:
 
9510
+ac_top_builddir=$ac_top_build_prefix
 
9511
 
 
9512
 case $srcdir in
 
9513
-  .)  # No --srcdir option.  We are building in place.
 
9514
+  .)  # We are building in place.
 
9515
     ac_srcdir=.
 
9516
-    if test -z "$ac_top_builddir"; then
 
9517
-       ac_top_srcdir=.
 
9518
-    else
 
9519
-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 
9520
-    fi ;;
 
9521
-  [\\/]* | ?:[\\/]* )  # Absolute path.
 
9522
+    ac_top_srcdir=$ac_top_builddir_sub
 
9523
+    ac_abs_top_srcdir=$ac_pwd ;;
 
9524
+  [\\/]* | ?:[\\/]* )  # Absolute name.
 
9525
     ac_srcdir=$srcdir$ac_dir_suffix;
 
9526
-    ac_top_srcdir=$srcdir ;;
 
9527
-  *) # Relative path.
 
9528
-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 
9529
-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 
9530
+    ac_top_srcdir=$srcdir
 
9531
+    ac_abs_top_srcdir=$srcdir ;;
 
9532
+  *) # Relative name.
 
9533
+    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
 
9534
+    ac_top_srcdir=$ac_top_build_prefix$srcdir
 
9535
+    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
 
9536
 esac
 
9537
+ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
 
9538
 
 
9539
-# Do not use `cd foo && pwd` to compute absolute paths, because
 
9540
-# the directories may not exist.
 
9541
-case `pwd` in
 
9542
-.) ac_abs_builddir="$ac_dir";;
 
9543
-*)
 
9544
-  case "$ac_dir" in
 
9545
-  .) ac_abs_builddir=`pwd`;;
 
9546
-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 
9547
-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 
9548
-  esac;;
 
9549
-esac
 
9550
-case $ac_abs_builddir in
 
9551
-.) ac_abs_top_builddir=${ac_top_builddir}.;;
 
9552
-*)
 
9553
-  case ${ac_top_builddir}. in
 
9554
-  .) ac_abs_top_builddir=$ac_abs_builddir;;
 
9555
-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 
9556
-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 
9557
-  esac;;
 
9558
-esac
 
9559
-case $ac_abs_builddir in
 
9560
-.) ac_abs_srcdir=$ac_srcdir;;
 
9561
-*)
 
9562
-  case $ac_srcdir in
 
9563
-  .) ac_abs_srcdir=$ac_abs_builddir;;
 
9564
-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 
9565
-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 
9566
-  esac;;
 
9567
-esac
 
9568
-case $ac_abs_builddir in
 
9569
-.) ac_abs_top_srcdir=$ac_top_srcdir;;
 
9570
-*)
 
9571
-  case $ac_top_srcdir in
 
9572
-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 
9573
-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 
9574
-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 
9575
-  esac;;
 
9576
-esac
 
9577
 
 
9578
+  case $ac_mode in
 
9579
+  :F)
 
9580
+  #
 
9581
+  # CONFIG_FILE
 
9582
+  #
 
9583
 
 
9584
   case $INSTALL in
 
9585
   [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
 
9586
-  *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
 
9587
+  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
 
9588
   esac
 
9589
+_ACEOF
 
9590
 
 
9591
-  # Let's still pretend it is `configure' which instantiates (i.e., don't
 
9592
-  # use $as_me), people would be surprised to read:
 
9593
-  #    /* config.h.  Generated by config.status.  */
 
9594
-  if test x"$ac_file" = x-; then
 
9595
-    configure_input=
 
9596
-  else
 
9597
-    configure_input="$ac_file.  "
 
9598
-  fi
 
9599
-  configure_input=$configure_input"Generated from `echo $ac_file_in |
 
9600
-                                    sed 's,.*/,,'` by configure."
 
9601
-
 
9602
-  # First look for the input files in the build tree, otherwise in the
 
9603
-  # src tree.
 
9604
-  ac_file_inputs=`IFS=:
 
9605
-    for f in $ac_file_in; do
 
9606
-      case $f in
 
9607
-      -) echo $tmp/stdin ;;
 
9608
-      [\\/$]*)
 
9609
-        # Absolute (can't be DOS-style, as IFS=:)
 
9610
-        test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
9611
-echo "$as_me: error: cannot find input file: $f" >&2;}
 
9612
-   { (exit 1); exit 1; }; }
 
9613
-        echo "$f";;
 
9614
-      *) # Relative
 
9615
-        if test -f "$f"; then
 
9616
-          # Build tree
 
9617
-          echo "$f"
 
9618
-        elif test -f "$srcdir/$f"; then
 
9619
-          # Source tree
 
9620
-          echo "$srcdir/$f"
 
9621
-        else
 
9622
-          # /dev/null tree
 
9623
-          { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
9624
-echo "$as_me: error: cannot find input file: $f" >&2;}
 
9625
-   { (exit 1); exit 1; }; }
 
9626
-        fi;;
 
9627
-      esac
 
9628
-    done` || { (exit 1); exit 1; }
 
9629
-
 
9630
-  if test x"$ac_file" != x-; then
 
9631
-    { echo "$as_me:$LINENO: creating $ac_file" >&5
 
9632
-echo "$as_me: creating $ac_file" >&6;}
 
9633
-    rm -f "$ac_file"
 
9634
-  fi
 
9635
+cat >>$CONFIG_STATUS <<\_ACEOF
 
9636
+# If the template does not know about datarootdir, expand it.
 
9637
+# FIXME: This hack should be removed a few years after 2.60.
 
9638
+ac_datarootdir_hack=; ac_datarootdir_seen=
 
9639
+
 
9640
+case `sed -n '/datarootdir/ {
 
9641
+  p
 
9642
+  q
 
9643
+}
 
9644
+/@datadir@/p
 
9645
+/@docdir@/p
 
9646
+/@infodir@/p
 
9647
+/@localedir@/p
 
9648
+/@mandir@/p
 
9649
+' $ac_file_inputs` in
 
9650
+*datarootdir*) ac_datarootdir_seen=yes;;
 
9651
+*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
 
9652
+  { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
 
9653
+echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
 
9654
 _ACEOF
 
9655
 cat >>$CONFIG_STATUS <<_ACEOF
 
9656
+  ac_datarootdir_hack='
 
9657
+  s&@datadir@&$datadir&g
 
9658
+  s&@docdir@&$docdir&g
 
9659
+  s&@infodir@&$infodir&g
 
9660
+  s&@localedir@&$localedir&g
 
9661
+  s&@mandir@&$mandir&g
 
9662
+    s&\\\${datarootdir}&$datarootdir&g' ;;
 
9663
+esac
 
9664
+_ACEOF
 
9665
+
 
9666
+# Neutralize VPATH when `$srcdir' = `.'.
 
9667
+# Shell code in configure.ac might set extrasub.
 
9668
+# FIXME: do we really want to maintain this feature?
 
9669
+cat >>$CONFIG_STATUS <<_ACEOF
 
9670
   sed "$ac_vpsub
 
9671
 $extrasub
 
9672
 _ACEOF
 
9673
 cat >>$CONFIG_STATUS <<\_ACEOF
 
9674
 :t
 
9675
 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
 
9676
-s,@configure_input@,$configure_input,;t t
 
9677
-s,@srcdir@,$ac_srcdir,;t t
 
9678
-s,@abs_srcdir@,$ac_abs_srcdir,;t t
 
9679
-s,@top_srcdir@,$ac_top_srcdir,;t t
 
9680
-s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
 
9681
-s,@builddir@,$ac_builddir,;t t
 
9682
-s,@abs_builddir@,$ac_abs_builddir,;t t
 
9683
-s,@top_builddir@,$ac_top_builddir,;t t
 
9684
-s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
 
9685
-s,@INSTALL@,$ac_INSTALL,;t t
 
9686
-" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
 
9687
-  rm -f $tmp/stdin
 
9688
-  if test x"$ac_file" != x-; then
 
9689
-    mv $tmp/out $ac_file
 
9690
-  else
 
9691
-    cat $tmp/out
 
9692
-    rm -f $tmp/out
 
9693
-  fi
 
9694
-
 
9695
-done
 
9696
-_ACEOF
 
9697
-cat >>$CONFIG_STATUS <<\_ACEOF
 
9698
-
 
9699
-#
 
9700
-# CONFIG_HEADER section.
 
9701
-#
 
9702
-
 
9703
-# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
 
9704
-# NAME is the cpp macro being defined and VALUE is the value it is being given.
 
9705
-#
 
9706
-# ac_d sets the value in "#define NAME VALUE" lines.
 
9707
-ac_dA='s,^\([   ]*\)#\([        ]*define[       ][      ]*\)'
 
9708
-ac_dB='[        ].*$,\1#\2'
 
9709
-ac_dC=' '
 
9710
-ac_dD=',;t'
 
9711
-# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
 
9712
-ac_uA='s,^\([   ]*\)#\([        ]*\)undef\([    ][      ]*\)'
 
9713
-ac_uB='$,\1#\2define\3'
 
9714
-ac_uC=' '
 
9715
-ac_uD=',;t'
 
9716
+s&@configure_input@&$configure_input&;t t
 
9717
+s&@top_builddir@&$ac_top_builddir_sub&;t t
 
9718
+s&@srcdir@&$ac_srcdir&;t t
 
9719
+s&@abs_srcdir@&$ac_abs_srcdir&;t t
 
9720
+s&@top_srcdir@&$ac_top_srcdir&;t t
 
9721
+s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
 
9722
+s&@builddir@&$ac_builddir&;t t
 
9723
+s&@abs_builddir@&$ac_abs_builddir&;t t
 
9724
+s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
 
9725
+s&@INSTALL@&$ac_INSTALL&;t t
 
9726
+$ac_datarootdir_hack
 
9727
+" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out
 
9728
+
 
9729
+test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
 
9730
+  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
 
9731
+  { ac_out=`sed -n '/^[         ]*datarootdir[  ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
 
9732
+  { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
9733
+which seems to be undefined.  Please make sure it is defined." >&5
 
9734
+echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
 
9735
+which seems to be undefined.  Please make sure it is defined." >&2;}
 
9736
 
 
9737
-for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
 
9738
-  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
 
9739
+  rm -f "$tmp/stdin"
 
9740
   case $ac_file in
 
9741
-  - | *:- | *:-:* ) # input from stdin
 
9742
-       cat >$tmp/stdin
 
9743
-       ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
9744
-       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
9745
-  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
9746
-       ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
 
9747
-  * )   ac_file_in=$ac_file.in ;;
 
9748
+  -) cat "$tmp/out"; rm -f "$tmp/out";;
 
9749
+  *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;;
 
9750
   esac
 
9751
+ ;;
 
9752
+  :H)
 
9753
+  #
 
9754
+  # CONFIG_HEADER
 
9755
+  #
 
9756
+_ACEOF
 
9757
+
 
9758
+# Transform confdefs.h into a sed script `conftest.defines', that
 
9759
+# substitutes the proper values into config.h.in to produce config.h.
 
9760
+rm -f conftest.defines conftest.tail
 
9761
+# First, append a space to every undef/define line, to ease matching.
 
9762
+echo 's/$/ /' >conftest.defines
 
9763
+# Then, protect against being on the right side of a sed subst, or in
 
9764
+# an unquoted here document, in config.status.  If some macros were
 
9765
+# called several times there might be several #defines for the same
 
9766
+# symbol, which is useless.  But do not sort them, since the last
 
9767
+# AC_DEFINE must be honored.
 
9768
+ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*
 
9769
+# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where
 
9770
+# NAME is the cpp macro being defined, VALUE is the value it is being given.
 
9771
+# PARAMS is the parameter list in the macro definition--in most cases, it's
 
9772
+# just an empty string.
 
9773
+ac_dA='s,^\\([  #]*\\)[^        ]*\\([  ]*'
 
9774
+ac_dB='\\)[     (].*,\\1define\\2'
 
9775
+ac_dC=' '
 
9776
+ac_dD=' ,'
 
9777
 
 
9778
-  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
 
9779
-echo "$as_me: creating $ac_file" >&6;}
 
9780
-
 
9781
-  # First look for the input files in the build tree, otherwise in the
 
9782
-  # src tree.
 
9783
-  ac_file_inputs=`IFS=:
 
9784
-    for f in $ac_file_in; do
 
9785
-      case $f in
 
9786
-      -) echo $tmp/stdin ;;
 
9787
-      [\\/$]*)
 
9788
-        # Absolute (can't be DOS-style, as IFS=:)
 
9789
-        test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
9790
-echo "$as_me: error: cannot find input file: $f" >&2;}
 
9791
-   { (exit 1); exit 1; }; }
 
9792
-        # Do quote $f, to prevent DOS paths from being IFS'd.
 
9793
-        echo "$f";;
 
9794
-      *) # Relative
 
9795
-        if test -f "$f"; then
 
9796
-          # Build tree
 
9797
-          echo "$f"
 
9798
-        elif test -f "$srcdir/$f"; then
 
9799
-          # Source tree
 
9800
-          echo "$srcdir/$f"
 
9801
-        else
 
9802
-          # /dev/null tree
 
9803
-          { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
 
9804
-echo "$as_me: error: cannot find input file: $f" >&2;}
 
9805
-   { (exit 1); exit 1; }; }
 
9806
-        fi;;
 
9807
-      esac
 
9808
-    done` || { (exit 1); exit 1; }
 
9809
-  # Remove the trailing spaces.
 
9810
-  sed 's/[      ]*$//' $ac_file_inputs >$tmp/in
 
9811
-
 
9812
-_ACEOF
 
9813
-
 
9814
-# Transform confdefs.h into two sed scripts, `conftest.defines' and
 
9815
-# `conftest.undefs', that substitutes the proper values into
 
9816
-# config.h.in to produce config.h.  The first handles `#define'
 
9817
-# templates, and the second `#undef' templates.
 
9818
-# And first: Protect against being on the right side of a sed subst in
 
9819
-# config.status.  Protect against being in an unquoted here document
 
9820
-# in config.status.
 
9821
-rm -f conftest.defines conftest.undefs
 
9822
-# Using a here document instead of a string reduces the quoting nightmare.
 
9823
-# Putting comments in sed scripts is not portable.
 
9824
-#
 
9825
-# `end' is used to avoid that the second main sed command (meant for
 
9826
-# 0-ary CPP macros) applies to n-ary macro definitions.
 
9827
-# See the Autoconf documentation for `clear'.
 
9828
-cat >confdef2sed.sed <<\_ACEOF
 
9829
-s/[\\&,]/\\&/g
 
9830
-s,[\\$`],\\&,g
 
9831
-t clear
 
9832
-: clear
 
9833
-s,^[    ]*#[    ]*define[       ][      ]*\([^  (][^    (]*\)\(([^)]*)\)[       ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
 
9834
-t end
 
9835
-s,^[    ]*#[    ]*define[       ][      ]*\([^  ][^     ]*\)[   ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
 
9836
-: end
 
9837
-_ACEOF
 
9838
-# If some macros were called several times there might be several times
 
9839
-# the same #defines, which is useless.  Nevertheless, we may not want to
 
9840
-# sort them, since we want the *last* AC-DEFINE to be honored.
 
9841
-uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
 
9842
-sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
 
9843
-rm -f confdef2sed.sed
 
9844
+uniq confdefs.h |
 
9845
+  sed -n '
 
9846
+       t rset
 
9847
+       :rset
 
9848
+       s/^[     ]*#[    ]*define[       ][      ]*//
 
9849
+       t ok
 
9850
+       d
 
9851
+       :ok
 
9852
+       s/[\\&,]/\\&/g
 
9853
+       s/^\('"$ac_word_re"'\)\(([^()]*)\)[      ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p
 
9854
+       s/^\('"$ac_word_re"'\)[  ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p
 
9855
+  ' >>conftest.defines
 
9856
 
 
9857
-# This sed command replaces #undef with comments.  This is necessary, for
 
9858
+# Remove the space that was appended to ease matching.
 
9859
+# Then replace #undef with comments.  This is necessary, for
 
9860
 # example, in the case of _POSIX_SOURCE, which is predefined and required
 
9861
 # on some systems where configure will not decide to define it.
 
9862
-cat >>conftest.undefs <<\_ACEOF
 
9863
-s,^[    ]*#[    ]*undef[        ][      ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
 
9864
+# (The regexp can be short, since the line contains either #define or #undef.)
 
9865
+echo 's/ $//
 
9866
+s,^[    #]*u.*,/* & */,' >>conftest.defines
 
9867
+
 
9868
+# Break up conftest.defines:
 
9869
+ac_max_sed_lines=50
 
9870
+
 
9871
+# First sed command is:         sed -f defines.sed $ac_file_inputs >"$tmp/out1"
 
9872
+# Second one is:        sed -f defines.sed "$tmp/out1" >"$tmp/out2"
 
9873
+# Third one will be:    sed -f defines.sed "$tmp/out2" >"$tmp/out1"
 
9874
+# et cetera.
 
9875
+ac_in='$ac_file_inputs'
 
9876
+ac_out='"$tmp/out1"'
 
9877
+ac_nxt='"$tmp/out2"'
 
9878
+
 
9879
+while :
 
9880
+do
 
9881
+  # Write a here document:
 
9882
+    cat >>$CONFIG_STATUS <<_ACEOF
 
9883
+    # First, check the format of the line:
 
9884
+    cat >"\$tmp/defines.sed" <<\\CEOF
 
9885
+/^[     ]*#[    ]*undef[        ][      ]*$ac_word_re[  ]*\$/b def
 
9886
+/^[     ]*#[    ]*define[       ][      ]*$ac_word_re[(         ]/b def
 
9887
+b
 
9888
+:def
 
9889
 _ACEOF
 
9890
-
 
9891
-# Break up conftest.defines because some shells have a limit on the size
 
9892
-# of here documents, and old seds have small limits too (100 cmds).
 
9893
-echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
 
9894
-echo '  if grep "^[     ]*#[    ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
 
9895
-echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
 
9896
-echo '  :' >>$CONFIG_STATUS
 
9897
-rm -f conftest.tail
 
9898
-while grep . conftest.defines >/dev/null
 
9899
-do
 
9900
-  # Write a limited-size here document to $tmp/defines.sed.
 
9901
-  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
 
9902
-  # Speed up: don't consider the non `#define' lines.
 
9903
-  echo '/^[     ]*#[    ]*define/!b' >>$CONFIG_STATUS
 
9904
-  # Work around the forget-to-reset-the-flag bug.
 
9905
-  echo 't clr' >>$CONFIG_STATUS
 
9906
-  echo ': clr' >>$CONFIG_STATUS
 
9907
-  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
 
9908
+  sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS
 
9909
   echo 'CEOF
 
9910
-  sed -f $tmp/defines.sed $tmp/in >$tmp/out
 
9911
-  rm -f $tmp/in
 
9912
-  mv $tmp/out $tmp/in
 
9913
-' >>$CONFIG_STATUS
 
9914
-  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
 
9915
+    sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS
 
9916
+  ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in
 
9917
+  sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail
 
9918
+  grep . conftest.tail >/dev/null || break
 
9919
   rm -f conftest.defines
 
9920
   mv conftest.tail conftest.defines
 
9921
 done
 
9922
-rm -f conftest.defines
 
9923
-echo '  fi # grep' >>$CONFIG_STATUS
 
9924
-echo >>$CONFIG_STATUS
 
9925
-
 
9926
-# Break up conftest.undefs because some shells have a limit on the size
 
9927
-# of here documents, and old seds have small limits too (100 cmds).
 
9928
-echo '  # Handle all the #undef templates' >>$CONFIG_STATUS
 
9929
-rm -f conftest.tail
 
9930
-while grep . conftest.undefs >/dev/null
 
9931
-do
 
9932
-  # Write a limited-size here document to $tmp/undefs.sed.
 
9933
-  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
 
9934
-  # Speed up: don't consider the non `#undef'
 
9935
-  echo '/^[     ]*#[    ]*undef/!b' >>$CONFIG_STATUS
 
9936
-  # Work around the forget-to-reset-the-flag bug.
 
9937
-  echo 't clr' >>$CONFIG_STATUS
 
9938
-  echo ': clr' >>$CONFIG_STATUS
 
9939
-  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
 
9940
-  echo 'CEOF
 
9941
-  sed -f $tmp/undefs.sed $tmp/in >$tmp/out
 
9942
-  rm -f $tmp/in
 
9943
-  mv $tmp/out $tmp/in
 
9944
-' >>$CONFIG_STATUS
 
9945
-  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
 
9946
-  rm -f conftest.undefs
 
9947
-  mv conftest.tail conftest.undefs
 
9948
-done
 
9949
-rm -f conftest.undefs
 
9950
+rm -f conftest.defines conftest.tail
 
9951
 
 
9952
+echo "ac_result=$ac_in" >>$CONFIG_STATUS
 
9953
 cat >>$CONFIG_STATUS <<\_ACEOF
 
9954
-  # Let's still pretend it is `configure' which instantiates (i.e., don't
 
9955
-  # use $as_me), people would be surprised to read:
 
9956
-  #    /* config.h.  Generated by config.status.  */
 
9957
-  if test x"$ac_file" = x-; then
 
9958
-    echo "/* Generated by configure.  */" >$tmp/config.h
 
9959
-  else
 
9960
-    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h
 
9961
-  fi
 
9962
-  cat $tmp/in >>$tmp/config.h
 
9963
-  rm -f $tmp/in
 
9964
   if test x"$ac_file" != x-; then
 
9965
-    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
 
9966
+    echo "/* $configure_input  */" >"$tmp/config.h"
 
9967
+    cat "$ac_result" >>"$tmp/config.h"
 
9968
+    if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then
 
9969
       { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
 
9970
 echo "$as_me: $ac_file is unchanged" >&6;}
 
9971
     else
 
9972
-      ac_dir=`(dirname "$ac_file") 2>/dev/null ||
 
9973
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9974
-        X"$ac_file" : 'X\(//\)[^/]' \| \
 
9975
-        X"$ac_file" : 'X\(//\)$' \| \
 
9976
-        X"$ac_file" : 'X\(/\)' \| \
 
9977
-        .     : '\(.\)' 2>/dev/null ||
 
9978
-echo X"$ac_file" |
 
9979
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
9980
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
9981
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
9982
-         /^X\(\/\).*/{ s//\1/; q; }
 
9983
-         s/.*/./; q'`
 
9984
-      { if $as_mkdir_p; then
 
9985
-    mkdir -p "$ac_dir"
 
9986
-  else
 
9987
-    as_dir="$ac_dir"
 
9988
-    as_dirs=
 
9989
-    while test ! -d "$as_dir"; do
 
9990
-      as_dirs="$as_dir $as_dirs"
 
9991
-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
9992
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
9993
-        X"$as_dir" : 'X\(//\)[^/]' \| \
 
9994
-        X"$as_dir" : 'X\(//\)$' \| \
 
9995
-        X"$as_dir" : 'X\(/\)' \| \
 
9996
-        .     : '\(.\)' 2>/dev/null ||
 
9997
-echo X"$as_dir" |
 
9998
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
9999
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10000
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10001
-         /^X\(\/\).*/{ s//\1/; q; }
 
10002
-         s/.*/./; q'`
 
10003
-    done
 
10004
-    test ! -n "$as_dirs" || mkdir $as_dirs
 
10005
-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
10006
-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
10007
-   { (exit 1); exit 1; }; }; }
 
10008
-
 
10009
       rm -f $ac_file
 
10010
-      mv $tmp/config.h $ac_file
 
10011
+      mv "$tmp/config.h" $ac_file
 
10012
     fi
 
10013
   else
 
10014
-    cat $tmp/config.h
 
10015
-    rm -f $tmp/config.h
 
10016
+    echo "/* $configure_input  */"
 
10017
+    cat "$ac_result"
 
10018
   fi
 
10019
+  rm -f "$tmp/out12"
 
10020
 # Compute $ac_file's index in $config_headers.
 
10021
 _am_stamp_count=1
 
10022
 for _am_header in $config_headers :; do
 
10023
@@ -8290,135 +8822,39 @@
 
10024
       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
10025
   esac
 
10026
 done
 
10027
-echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null ||
 
10028
+echo "timestamp for $ac_file" >`$as_dirname -- $ac_file ||
 
10029
 $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10030
         X$ac_file : 'X\(//\)[^/]' \| \
 
10031
         X$ac_file : 'X\(//\)$' \| \
 
10032
-        X$ac_file : 'X\(/\)' \| \
 
10033
-        .     : '\(.\)' 2>/dev/null ||
 
10034
+        X$ac_file : 'X\(/\)' \| . 2>/dev/null ||
 
10035
 echo X$ac_file |
 
10036
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10037
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10038
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10039
-         /^X\(\/\).*/{ s//\1/; q; }
 
10040
-         s/.*/./; q'`/stamp-h$_am_stamp_count
 
10041
-done
 
10042
-_ACEOF
 
10043
-cat >>$CONFIG_STATUS <<\_ACEOF
 
10044
-
 
10045
-#
 
10046
-# CONFIG_COMMANDS section.
 
10047
-#
 
10048
-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
 
10049
-  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
 
10050
-  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
 
10051
-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
 
10052
-$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10053
-        X"$ac_dest" : 'X\(//\)[^/]' \| \
 
10054
-        X"$ac_dest" : 'X\(//\)$' \| \
 
10055
-        X"$ac_dest" : 'X\(/\)' \| \
 
10056
-        .     : '\(.\)' 2>/dev/null ||
 
10057
-echo X"$ac_dest" |
 
10058
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10059
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10060
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10061
-         /^X\(\/\).*/{ s//\1/; q; }
 
10062
-         s/.*/./; q'`
 
10063
-  { if $as_mkdir_p; then
 
10064
-    mkdir -p "$ac_dir"
 
10065
-  else
 
10066
-    as_dir="$ac_dir"
 
10067
-    as_dirs=
 
10068
-    while test ! -d "$as_dir"; do
 
10069
-      as_dirs="$as_dir $as_dirs"
 
10070
-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
10071
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10072
-        X"$as_dir" : 'X\(//\)[^/]' \| \
 
10073
-        X"$as_dir" : 'X\(//\)$' \| \
 
10074
-        X"$as_dir" : 'X\(/\)' \| \
 
10075
-        .     : '\(.\)' 2>/dev/null ||
 
10076
-echo X"$as_dir" |
 
10077
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10078
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10079
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10080
-         /^X\(\/\).*/{ s//\1/; q; }
 
10081
-         s/.*/./; q'`
 
10082
-    done
 
10083
-    test ! -n "$as_dirs" || mkdir $as_dirs
 
10084
-  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
 
10085
-echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
 
10086
-   { (exit 1); exit 1; }; }; }
 
10087
-
 
10088
-  ac_builddir=.
 
10089
-
 
10090
-if test "$ac_dir" != .; then
 
10091
-  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
 
10092
-  # A "../" for each directory in $ac_dir_suffix.
 
10093
-  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
 
10094
-else
 
10095
-  ac_dir_suffix= ac_top_builddir=
 
10096
-fi
 
10097
-
 
10098
-case $srcdir in
 
10099
-  .)  # No --srcdir option.  We are building in place.
 
10100
-    ac_srcdir=.
 
10101
-    if test -z "$ac_top_builddir"; then
 
10102
-       ac_top_srcdir=.
 
10103
-    else
 
10104
-       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
 
10105
-    fi ;;
 
10106
-  [\\/]* | ?:[\\/]* )  # Absolute path.
 
10107
-    ac_srcdir=$srcdir$ac_dir_suffix;
 
10108
-    ac_top_srcdir=$srcdir ;;
 
10109
-  *) # Relative path.
 
10110
-    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
 
10111
-    ac_top_srcdir=$ac_top_builddir$srcdir ;;
 
10112
-esac
 
10113
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10114
+           s//\1/
 
10115
+           q
 
10116
+         }
 
10117
+         /^X\(\/\/\)[^/].*/{
 
10118
+           s//\1/
 
10119
+           q
 
10120
+         }
 
10121
+         /^X\(\/\/\)$/{
 
10122
+           s//\1/
 
10123
+           q
 
10124
+         }
 
10125
+         /^X\(\/\).*/{
 
10126
+           s//\1/
 
10127
+           q
 
10128
+         }
 
10129
+         s/.*/./; q'`/stamp-h$_am_stamp_count
 
10130
+ ;;
 
10131
 
 
10132
-# Do not use `cd foo && pwd` to compute absolute paths, because
 
10133
-# the directories may not exist.
 
10134
-case `pwd` in
 
10135
-.) ac_abs_builddir="$ac_dir";;
 
10136
-*)
 
10137
-  case "$ac_dir" in
 
10138
-  .) ac_abs_builddir=`pwd`;;
 
10139
-  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";;
 
10140
-  *) ac_abs_builddir=`pwd`/"$ac_dir";;
 
10141
-  esac;;
 
10142
-esac
 
10143
-case $ac_abs_builddir in
 
10144
-.) ac_abs_top_builddir=${ac_top_builddir}.;;
 
10145
-*)
 
10146
-  case ${ac_top_builddir}. in
 
10147
-  .) ac_abs_top_builddir=$ac_abs_builddir;;
 
10148
-  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;;
 
10149
-  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;;
 
10150
-  esac;;
 
10151
-esac
 
10152
-case $ac_abs_builddir in
 
10153
-.) ac_abs_srcdir=$ac_srcdir;;
 
10154
-*)
 
10155
-  case $ac_srcdir in
 
10156
-  .) ac_abs_srcdir=$ac_abs_builddir;;
 
10157
-  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;;
 
10158
-  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;;
 
10159
-  esac;;
 
10160
-esac
 
10161
-case $ac_abs_builddir in
 
10162
-.) ac_abs_top_srcdir=$ac_top_srcdir;;
 
10163
-*)
 
10164
-  case $ac_top_srcdir in
 
10165
-  .) ac_abs_top_srcdir=$ac_abs_builddir;;
 
10166
-  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;;
 
10167
-  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;;
 
10168
-  esac;;
 
10169
-esac
 
10170
+  :C)  { echo "$as_me:$LINENO: executing $ac_file commands" >&5
 
10171
+echo "$as_me: executing $ac_file commands" >&6;}
 
10172
+ ;;
 
10173
+  esac
 
10174
 
 
10175
 
 
10176
-  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
 
10177
-echo "$as_me: executing $ac_dest commands" >&6;}
 
10178
-  case $ac_dest in
 
10179
-    depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
 
10180
+  case $ac_file$ac_mode in
 
10181
+    "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
 
10182
   # Strip MF so we end up with the name of the file.
 
10183
   mf=`echo "$mf" | sed -e 's/:.*$//'`
 
10184
   # Check whether this is an Automake generated Makefile or not.
 
10185
@@ -8428,18 +8864,29 @@
 
10186
   # each Makefile.in and add a new line on top of each file to say so.
 
10187
   # So let's grep whole file.
 
10188
   if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
10189
-    dirpart=`(dirname "$mf") 2>/dev/null ||
 
10190
+    dirpart=`$as_dirname -- "$mf" ||
 
10191
 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10192
         X"$mf" : 'X\(//\)[^/]' \| \
 
10193
         X"$mf" : 'X\(//\)$' \| \
 
10194
-        X"$mf" : 'X\(/\)' \| \
 
10195
-        .     : '\(.\)' 2>/dev/null ||
 
10196
+        X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
 
10197
 echo X"$mf" |
 
10198
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10199
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10200
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10201
-         /^X\(\/\).*/{ s//\1/; q; }
 
10202
-         s/.*/./; q'`
 
10203
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10204
+           s//\1/
 
10205
+           q
 
10206
+         }
 
10207
+         /^X\(\/\/\)[^/].*/{
 
10208
+           s//\1/
 
10209
+           q
 
10210
+         }
 
10211
+         /^X\(\/\/\)$/{
 
10212
+           s//\1/
 
10213
+           q
 
10214
+         }
 
10215
+         /^X\(\/\).*/{
 
10216
+           s//\1/
 
10217
+           q
 
10218
+         }
 
10219
+         s/.*/./; q'`
 
10220
   else
 
10221
     continue
 
10222
   fi
 
10223
@@ -8461,53 +8908,79 @@
 
10224
        sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
10225
     # Make sure the directory exists.
 
10226
     test -f "$dirpart/$file" && continue
 
10227
-    fdir=`(dirname "$file") 2>/dev/null ||
 
10228
+    fdir=`$as_dirname -- "$file" ||
 
10229
 $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10230
         X"$file" : 'X\(//\)[^/]' \| \
 
10231
         X"$file" : 'X\(//\)$' \| \
 
10232
-        X"$file" : 'X\(/\)' \| \
 
10233
-        .     : '\(.\)' 2>/dev/null ||
 
10234
+        X"$file" : 'X\(/\)' \| . 2>/dev/null ||
 
10235
 echo X"$file" |
 
10236
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10237
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10238
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10239
-         /^X\(\/\).*/{ s//\1/; q; }
 
10240
-         s/.*/./; q'`
 
10241
-    { if $as_mkdir_p; then
 
10242
-    mkdir -p $dirpart/$fdir
 
10243
-  else
 
10244
-    as_dir=$dirpart/$fdir
 
10245
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10246
+           s//\1/
 
10247
+           q
 
10248
+         }
 
10249
+         /^X\(\/\/\)[^/].*/{
 
10250
+           s//\1/
 
10251
+           q
 
10252
+         }
 
10253
+         /^X\(\/\/\)$/{
 
10254
+           s//\1/
 
10255
+           q
 
10256
+         }
 
10257
+         /^X\(\/\).*/{
 
10258
+           s//\1/
 
10259
+           q
 
10260
+         }
 
10261
+         s/.*/./; q'`
 
10262
+    { as_dir=$dirpart/$fdir
 
10263
+  case $as_dir in #(
 
10264
+  -*) as_dir=./$as_dir;;
 
10265
+  esac
 
10266
+  test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || {
 
10267
     as_dirs=
 
10268
-    while test ! -d "$as_dir"; do
 
10269
-      as_dirs="$as_dir $as_dirs"
 
10270
-      as_dir=`(dirname "$as_dir") 2>/dev/null ||
 
10271
+    while :; do
 
10272
+      case $as_dir in #(
 
10273
+      *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(
 
10274
+      *) as_qdir=$as_dir;;
 
10275
+      esac
 
10276
+      as_dirs="'$as_qdir' $as_dirs"
 
10277
+      as_dir=`$as_dirname -- "$as_dir" ||
 
10278
 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
 
10279
         X"$as_dir" : 'X\(//\)[^/]' \| \
 
10280
         X"$as_dir" : 'X\(//\)$' \| \
 
10281
-        X"$as_dir" : 'X\(/\)' \| \
 
10282
-        .     : '\(.\)' 2>/dev/null ||
 
10283
+        X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
 
10284
 echo X"$as_dir" |
 
10285
-    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
 
10286
-         /^X\(\/\/\)[^/].*/{ s//\1/; q; }
 
10287
-         /^X\(\/\/\)$/{ s//\1/; q; }
 
10288
-         /^X\(\/\).*/{ s//\1/; q; }
 
10289
-         s/.*/./; q'`
 
10290
+    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
 
10291
+           s//\1/
 
10292
+           q
 
10293
+         }
 
10294
+         /^X\(\/\/\)[^/].*/{
 
10295
+           s//\1/
 
10296
+           q
 
10297
+         }
 
10298
+         /^X\(\/\/\)$/{
 
10299
+           s//\1/
 
10300
+           q
 
10301
+         }
 
10302
+         /^X\(\/\).*/{
 
10303
+           s//\1/
 
10304
+           q
 
10305
+         }
 
10306
+         s/.*/./; q'`
 
10307
+      test -d "$as_dir" && break
 
10308
     done
 
10309
-    test ! -n "$as_dirs" || mkdir $as_dirs
 
10310
-  fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5
 
10311
-echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;}
 
10312
+    test -z "$as_dirs" || eval "mkdir $as_dirs"
 
10313
+  } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
 
10314
+echo "$as_me: error: cannot create directory $as_dir" >&2;}
 
10315
    { (exit 1); exit 1; }; }; }
 
10316
-
 
10317
     # echo "creating $dirpart/$file"
 
10318
     echo '# dummy' > "$dirpart/$file"
 
10319
   done
 
10320
 done
 
10321
  ;;
 
10322
+
 
10323
   esac
 
10324
-done
 
10325
-_ACEOF
 
10326
+done # for ac_tag
 
10327
 
 
10328
-cat >>$CONFIG_STATUS <<\_ACEOF
 
10329
 
 
10330
 { (exit 0); exit 0; }
 
10331
 _ACEOF
 
10332
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/contrib/Makefile.in dbacl-1.12.new/contrib/Makefile.in
 
10333
--- dbacl-1.12/contrib/Makefile.in      2006-03-23 08:32:11.000000000 +0800
 
10334
+++ dbacl-1.12.new/contrib/Makefile.in  2008-12-11 23:52:37.000000000 +0800
 
10335
@@ -71,6 +71,7 @@
 
10336
 ECHO_T = @ECHO_T@
 
10337
 EGREP = @EGREP@
 
10338
 EXEEXT = @EXEEXT@
 
10339
+GREP = @GREP@
 
10340
 INCLUDESINTER = @INCLUDESINTER@
 
10341
 INSTALL_DATA = @INSTALL_DATA@
 
10342
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10343
@@ -98,8 +99,8 @@
 
10344
 STRIP = @STRIP@
 
10345
 VERSION = @VERSION@
 
10346
 YACC = @YACC@
 
10347
+YFLAGS = @YFLAGS@
 
10348
 ac_ct_CC = @ac_ct_CC@
 
10349
-ac_ct_STRIP = @ac_ct_STRIP@
 
10350
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10351
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10352
 am__include = @am__include@
 
10353
@@ -114,23 +115,30 @@
 
10354
 build_os = @build_os@
 
10355
 build_vendor = @build_vendor@
 
10356
 datadir = @datadir@
 
10357
+datarootdir = @datarootdir@
 
10358
+docdir = @docdir@
 
10359
+dvidir = @dvidir@
 
10360
 exec_prefix = @exec_prefix@
 
10361
 host = @host@
 
10362
 host_alias = @host_alias@
 
10363
 host_cpu = @host_cpu@
 
10364
 host_os = @host_os@
 
10365
 host_vendor = @host_vendor@
 
10366
+htmldir = @htmldir@
 
10367
 includedir = @includedir@
 
10368
 infodir = @infodir@
 
10369
 install_sh = @install_sh@
 
10370
 libdir = @libdir@
 
10371
 libexecdir = @libexecdir@
 
10372
+localedir = @localedir@
 
10373
 localstatedir = @localstatedir@
 
10374
 mandir = @mandir@
 
10375
 mkdir_p = @mkdir_p@
 
10376
 oldincludedir = @oldincludedir@
 
10377
+pdfdir = @pdfdir@
 
10378
 prefix = @prefix@
 
10379
 program_transform_name = @program_transform_name@
 
10380
+psdir = @psdir@
 
10381
 sbindir = @sbindir@
 
10382
 sharedstatedir = @sharedstatedir@
 
10383
 sysconfdir = @sysconfdir@
 
10384
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/doc/chess/Makefile.in dbacl-1.12.new/doc/chess/Makefile.in
 
10385
--- dbacl-1.12/doc/chess/Makefile.in    2006-03-23 08:32:12.000000000 +0800
 
10386
+++ dbacl-1.12.new/doc/chess/Makefile.in        2008-12-11 23:52:37.000000000 +0800
 
10387
@@ -81,6 +81,7 @@
 
10388
 ECHO_T = @ECHO_T@
 
10389
 EGREP = @EGREP@
 
10390
 EXEEXT = @EXEEXT@
 
10391
+GREP = @GREP@
 
10392
 INCLUDESINTER = @INCLUDESINTER@
 
10393
 INSTALL_DATA = @INSTALL_DATA@
 
10394
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10395
@@ -108,8 +109,8 @@
 
10396
 STRIP = @STRIP@
 
10397
 VERSION = @VERSION@
 
10398
 YACC = @YACC@
 
10399
+YFLAGS = @YFLAGS@
 
10400
 ac_ct_CC = @ac_ct_CC@
 
10401
-ac_ct_STRIP = @ac_ct_STRIP@
 
10402
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10403
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10404
 am__include = @am__include@
 
10405
@@ -124,23 +125,30 @@
 
10406
 build_os = @build_os@
 
10407
 build_vendor = @build_vendor@
 
10408
 datadir = @datadir@
 
10409
+datarootdir = @datarootdir@
 
10410
+docdir = @docdir@
 
10411
+dvidir = @dvidir@
 
10412
 exec_prefix = @exec_prefix@
 
10413
 host = @host@
 
10414
 host_alias = @host_alias@
 
10415
 host_cpu = @host_cpu@
 
10416
 host_os = @host_os@
 
10417
 host_vendor = @host_vendor@
 
10418
+htmldir = @htmldir@
 
10419
 includedir = @includedir@
 
10420
 infodir = @infodir@
 
10421
 install_sh = @install_sh@
 
10422
 libdir = @libdir@
 
10423
 libexecdir = @libexecdir@
 
10424
+localedir = @localedir@
 
10425
 localstatedir = @localstatedir@
 
10426
 mandir = @mandir@
 
10427
 mkdir_p = @mkdir_p@
 
10428
 oldincludedir = @oldincludedir@
 
10429
+pdfdir = @pdfdir@
 
10430
 prefix = @prefix@
 
10431
 program_transform_name = @program_transform_name@
 
10432
+psdir = @psdir@
 
10433
 sbindir = @sbindir@
 
10434
 sharedstatedir = @sharedstatedir@
 
10435
 sysconfdir = @sysconfdir@
 
10436
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/doc/Makefile.in dbacl-1.12.new/doc/Makefile.in
 
10437
--- dbacl-1.12/doc/Makefile.in  2006-03-23 08:32:11.000000000 +0800
 
10438
+++ dbacl-1.12.new/doc/Makefile.in      2008-12-11 23:52:37.000000000 +0800
 
10439
@@ -90,6 +90,7 @@
 
10440
 ECHO_T = @ECHO_T@
 
10441
 EGREP = @EGREP@
 
10442
 EXEEXT = @EXEEXT@
 
10443
+GREP = @GREP@
 
10444
 INCLUDESINTER = @INCLUDESINTER@
 
10445
 INSTALL_DATA = @INSTALL_DATA@
 
10446
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10447
@@ -117,8 +118,8 @@
 
10448
 STRIP = @STRIP@
 
10449
 VERSION = @VERSION@
 
10450
 YACC = @YACC@
 
10451
+YFLAGS = @YFLAGS@
 
10452
 ac_ct_CC = @ac_ct_CC@
 
10453
-ac_ct_STRIP = @ac_ct_STRIP@
 
10454
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10455
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10456
 am__include = @am__include@
 
10457
@@ -133,23 +134,30 @@
 
10458
 build_os = @build_os@
 
10459
 build_vendor = @build_vendor@
 
10460
 datadir = @datadir@
 
10461
+datarootdir = @datarootdir@
 
10462
+docdir = @docdir@
 
10463
+dvidir = @dvidir@
 
10464
 exec_prefix = @exec_prefix@
 
10465
 host = @host@
 
10466
 host_alias = @host_alias@
 
10467
 host_cpu = @host_cpu@
 
10468
 host_os = @host_os@
 
10469
 host_vendor = @host_vendor@
 
10470
+htmldir = @htmldir@
 
10471
 includedir = @includedir@
 
10472
 infodir = @infodir@
 
10473
 install_sh = @install_sh@
 
10474
 libdir = @libdir@
 
10475
 libexecdir = @libexecdir@
 
10476
+localedir = @localedir@
 
10477
 localstatedir = @localstatedir@
 
10478
 mandir = @mandir@
 
10479
 mkdir_p = @mkdir_p@
 
10480
 oldincludedir = @oldincludedir@
 
10481
+pdfdir = @pdfdir@
 
10482
 prefix = @prefix@
 
10483
 program_transform_name = @program_transform_name@
 
10484
+psdir = @psdir@
 
10485
 sbindir = @sbindir@
 
10486
 sharedstatedir = @sharedstatedir@
 
10487
 sysconfdir = @sysconfdir@
 
10488
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/Makefile.in dbacl-1.12.new/Makefile.in
 
10489
--- dbacl-1.12/Makefile.in      2006-03-23 08:32:16.000000000 +0800
 
10490
+++ dbacl-1.12.new/Makefile.in  2008-12-11 23:52:38.000000000 +0800
 
10491
@@ -96,6 +96,7 @@
 
10492
 ECHO_T = @ECHO_T@
 
10493
 EGREP = @EGREP@
 
10494
 EXEEXT = @EXEEXT@
 
10495
+GREP = @GREP@
 
10496
 INCLUDESINTER = @INCLUDESINTER@
 
10497
 INSTALL_DATA = @INSTALL_DATA@
 
10498
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10499
@@ -123,8 +124,8 @@
 
10500
 STRIP = @STRIP@
 
10501
 VERSION = @VERSION@
 
10502
 YACC = @YACC@
 
10503
+YFLAGS = @YFLAGS@
 
10504
 ac_ct_CC = @ac_ct_CC@
 
10505
-ac_ct_STRIP = @ac_ct_STRIP@
 
10506
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10507
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10508
 am__include = @am__include@
 
10509
@@ -139,23 +140,30 @@
 
10510
 build_os = @build_os@
 
10511
 build_vendor = @build_vendor@
 
10512
 datadir = @datadir@
 
10513
+datarootdir = @datarootdir@
 
10514
+docdir = @docdir@
 
10515
+dvidir = @dvidir@
 
10516
 exec_prefix = @exec_prefix@
 
10517
 host = @host@
 
10518
 host_alias = @host_alias@
 
10519
 host_cpu = @host_cpu@
 
10520
 host_os = @host_os@
 
10521
 host_vendor = @host_vendor@
 
10522
+htmldir = @htmldir@
 
10523
 includedir = @includedir@
 
10524
 infodir = @infodir@
 
10525
 install_sh = @install_sh@
 
10526
 libdir = @libdir@
 
10527
 libexecdir = @libexecdir@
 
10528
+localedir = @localedir@
 
10529
 localstatedir = @localstatedir@
 
10530
 mandir = @mandir@
 
10531
 mkdir_p = @mkdir_p@
 
10532
 oldincludedir = @oldincludedir@
 
10533
+pdfdir = @pdfdir@
 
10534
 prefix = @prefix@
 
10535
 program_transform_name = @program_transform_name@
 
10536
+psdir = @psdir@
 
10537
 sbindir = @sbindir@
 
10538
 sharedstatedir = @sharedstatedir@
 
10539
 sysconfdir = @sysconfdir@
 
10540
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/man/Makefile.in dbacl-1.12.new/man/Makefile.in
 
10541
--- dbacl-1.12/man/Makefile.in  2006-03-26 08:17:53.000000000 +0800
 
10542
+++ dbacl-1.12.new/man/Makefile.in      2008-12-11 23:52:37.000000000 +0800
 
10543
@@ -75,6 +75,7 @@
 
10544
 ECHO_T = @ECHO_T@
 
10545
 EGREP = @EGREP@
 
10546
 EXEEXT = @EXEEXT@
 
10547
+GREP = @GREP@
 
10548
 INCLUDESINTER = @INCLUDESINTER@
 
10549
 INSTALL_DATA = @INSTALL_DATA@
 
10550
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10551
@@ -102,8 +103,8 @@
 
10552
 STRIP = @STRIP@
 
10553
 VERSION = @VERSION@
 
10554
 YACC = @YACC@
 
10555
+YFLAGS = @YFLAGS@
 
10556
 ac_ct_CC = @ac_ct_CC@
 
10557
-ac_ct_STRIP = @ac_ct_STRIP@
 
10558
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10559
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10560
 am__include = @am__include@
 
10561
@@ -118,23 +119,30 @@
 
10562
 build_os = @build_os@
 
10563
 build_vendor = @build_vendor@
 
10564
 datadir = @datadir@
 
10565
+datarootdir = @datarootdir@
 
10566
+docdir = @docdir@
 
10567
+dvidir = @dvidir@
 
10568
 exec_prefix = @exec_prefix@
 
10569
 host = @host@
 
10570
 host_alias = @host_alias@
 
10571
 host_cpu = @host_cpu@
 
10572
 host_os = @host_os@
 
10573
 host_vendor = @host_vendor@
 
10574
+htmldir = @htmldir@
 
10575
 includedir = @includedir@
 
10576
 infodir = @infodir@
 
10577
 install_sh = @install_sh@
 
10578
 libdir = @libdir@
 
10579
 libexecdir = @libexecdir@
 
10580
+localedir = @localedir@
 
10581
 localstatedir = @localstatedir@
 
10582
 mandir = @mandir@
 
10583
 mkdir_p = @mkdir_p@
 
10584
 oldincludedir = @oldincludedir@
 
10585
+pdfdir = @pdfdir@
 
10586
 prefix = @prefix@
 
10587
 program_transform_name = @program_transform_name@
 
10588
+psdir = @psdir@
 
10589
 sbindir = @sbindir@
 
10590
 sharedstatedir = @sharedstatedir@
 
10591
 sysconfdir = @sysconfdir@
 
10592
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/src/config.h.in dbacl-1.12.new/src/config.h.in
 
10593
--- dbacl-1.12/src/config.h.in  2006-03-22 19:44:35.000000000 +0800
 
10594
+++ dbacl-1.12.new/src/config.h.in      2008-12-11 23:52:17.000000000 +0800
 
10595
@@ -166,5 +166,5 @@
 
10596
 /* Define to empty if `const' does not conform to ANSI C. */
 
10597
 #undef const
 
10598
 
 
10599
-/* Define to `unsigned' if <sys/types.h> does not define. */
 
10600
+/* Define to `unsigned int' if <sys/types.h> does not define. */
 
10601
 #undef size_t
 
10602
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/src/Makefile.in dbacl-1.12.new/src/Makefile.in
 
10603
--- dbacl-1.12/src/Makefile.in  2006-03-23 08:32:14.000000000 +0800
 
10604
+++ dbacl-1.12.new/src/Makefile.in      2008-12-11 23:52:37.000000000 +0800
 
10605
@@ -141,6 +141,7 @@
 
10606
 ECHO_T = @ECHO_T@
 
10607
 EGREP = @EGREP@
 
10608
 EXEEXT = @EXEEXT@
 
10609
+GREP = @GREP@
 
10610
 INCLUDESINTER = @INCLUDESINTER@
 
10611
 INSTALL_DATA = @INSTALL_DATA@
 
10612
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10613
@@ -168,8 +169,8 @@
 
10614
 STRIP = @STRIP@
 
10615
 VERSION = @VERSION@
 
10616
 YACC = @YACC@
 
10617
+YFLAGS = @YFLAGS@
 
10618
 ac_ct_CC = @ac_ct_CC@
 
10619
-ac_ct_STRIP = @ac_ct_STRIP@
 
10620
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10621
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10622
 am__include = @am__include@
 
10623
@@ -184,23 +185,30 @@
 
10624
 build_os = @build_os@
 
10625
 build_vendor = @build_vendor@
 
10626
 datadir = @datadir@
 
10627
+datarootdir = @datarootdir@
 
10628
+docdir = @docdir@
 
10629
+dvidir = @dvidir@
 
10630
 exec_prefix = @exec_prefix@
 
10631
 host = @host@
 
10632
 host_alias = @host_alias@
 
10633
 host_cpu = @host_cpu@
 
10634
 host_os = @host_os@
 
10635
 host_vendor = @host_vendor@
 
10636
+htmldir = @htmldir@
 
10637
 includedir = @includedir@
 
10638
 infodir = @infodir@
 
10639
 install_sh = @install_sh@
 
10640
 libdir = @libdir@
 
10641
 libexecdir = @libexecdir@
 
10642
+localedir = @localedir@
 
10643
 localstatedir = @localstatedir@
 
10644
 mandir = @mandir@
 
10645
 mkdir_p = @mkdir_p@
 
10646
 oldincludedir = @oldincludedir@
 
10647
+pdfdir = @pdfdir@
 
10648
 prefix = @prefix@
 
10649
 program_transform_name = @program_transform_name@
 
10650
+psdir = @psdir@
 
10651
 sbindir = @sbindir@
 
10652
 sharedstatedir = @sharedstatedir@
 
10653
 sysconfdir = @sysconfdir@
 
10654
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/src/tests/Makefile.in dbacl-1.12.new/src/tests/Makefile.in
 
10655
--- dbacl-1.12/src/tests/Makefile.in    2006-03-23 08:32:14.000000000 +0800
 
10656
+++ dbacl-1.12.new/src/tests/Makefile.in        2008-12-11 23:52:37.000000000 +0800
 
10657
@@ -71,6 +71,7 @@
 
10658
 ECHO_T = @ECHO_T@
 
10659
 EGREP = @EGREP@
 
10660
 EXEEXT = @EXEEXT@
 
10661
+GREP = @GREP@
 
10662
 INCLUDESINTER = @INCLUDESINTER@
 
10663
 INSTALL_DATA = @INSTALL_DATA@
 
10664
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10665
@@ -98,8 +99,8 @@
 
10666
 STRIP = @STRIP@
 
10667
 VERSION = @VERSION@
 
10668
 YACC = @YACC@
 
10669
+YFLAGS = @YFLAGS@
 
10670
 ac_ct_CC = @ac_ct_CC@
 
10671
-ac_ct_STRIP = @ac_ct_STRIP@
 
10672
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10673
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10674
 am__include = @am__include@
 
10675
@@ -114,23 +115,30 @@
 
10676
 build_os = @build_os@
 
10677
 build_vendor = @build_vendor@
 
10678
 datadir = @datadir@
 
10679
+datarootdir = @datarootdir@
 
10680
+docdir = @docdir@
 
10681
+dvidir = @dvidir@
 
10682
 exec_prefix = @exec_prefix@
 
10683
 host = @host@
 
10684
 host_alias = @host_alias@
 
10685
 host_cpu = @host_cpu@
 
10686
 host_os = @host_os@
 
10687
 host_vendor = @host_vendor@
 
10688
+htmldir = @htmldir@
 
10689
 includedir = @includedir@
 
10690
 infodir = @infodir@
 
10691
 install_sh = @install_sh@
 
10692
 libdir = @libdir@
 
10693
 libexecdir = @libexecdir@
 
10694
+localedir = @localedir@
 
10695
 localstatedir = @localstatedir@
 
10696
 mandir = @mandir@
 
10697
 mkdir_p = @mkdir_p@
 
10698
 oldincludedir = @oldincludedir@
 
10699
+pdfdir = @pdfdir@
 
10700
 prefix = @prefix@
 
10701
 program_transform_name = @program_transform_name@
 
10702
+psdir = @psdir@
 
10703
 sbindir = @sbindir@
 
10704
 sharedstatedir = @sharedstatedir@
 
10705
 sysconfdir = @sysconfdir@
 
10706
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/TREC/Makefile.in dbacl-1.12.new/TREC/Makefile.in
 
10707
--- dbacl-1.12/TREC/Makefile.in 2006-03-23 08:44:24.000000000 +0800
 
10708
+++ dbacl-1.12.new/TREC/Makefile.in     2008-12-11 23:52:37.000000000 +0800
 
10709
@@ -81,6 +81,7 @@
 
10710
 ECHO_T = @ECHO_T@
 
10711
 EGREP = @EGREP@
 
10712
 EXEEXT = @EXEEXT@
 
10713
+GREP = @GREP@
 
10714
 INCLUDESINTER = @INCLUDESINTER@
 
10715
 INSTALL_DATA = @INSTALL_DATA@
 
10716
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10717
@@ -108,8 +109,8 @@
 
10718
 STRIP = @STRIP@
 
10719
 VERSION = @VERSION@
 
10720
 YACC = @YACC@
 
10721
+YFLAGS = @YFLAGS@
 
10722
 ac_ct_CC = @ac_ct_CC@
 
10723
-ac_ct_STRIP = @ac_ct_STRIP@
 
10724
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10725
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10726
 am__include = @am__include@
 
10727
@@ -124,23 +125,30 @@
 
10728
 build_os = @build_os@
 
10729
 build_vendor = @build_vendor@
 
10730
 datadir = @datadir@
 
10731
+datarootdir = @datarootdir@
 
10732
+docdir = @docdir@
 
10733
+dvidir = @dvidir@
 
10734
 exec_prefix = @exec_prefix@
 
10735
 host = @host@
 
10736
 host_alias = @host_alias@
 
10737
 host_cpu = @host_cpu@
 
10738
 host_os = @host_os@
 
10739
 host_vendor = @host_vendor@
 
10740
+htmldir = @htmldir@
 
10741
 includedir = @includedir@
 
10742
 infodir = @infodir@
 
10743
 install_sh = @install_sh@
 
10744
 libdir = @libdir@
 
10745
 libexecdir = @libexecdir@
 
10746
+localedir = @localedir@
 
10747
 localstatedir = @localstatedir@
 
10748
 mandir = @mandir@
 
10749
 mkdir_p = @mkdir_p@
 
10750
 oldincludedir = @oldincludedir@
 
10751
+pdfdir = @pdfdir@
 
10752
 prefix = @prefix@
 
10753
 program_transform_name = @program_transform_name@
 
10754
+psdir = @psdir@
 
10755
 sbindir = @sbindir@
 
10756
 sharedstatedir = @sharedstatedir@
 
10757
 sysconfdir = @sysconfdir@
 
10758
diff -Nur -x '*.orig' -x '*~' dbacl-1.12/ts/Makefile.in dbacl-1.12.new/ts/Makefile.in
 
10759
--- dbacl-1.12/ts/Makefile.in   2006-03-23 08:32:15.000000000 +0800
 
10760
+++ dbacl-1.12.new/ts/Makefile.in       2008-12-11 23:52:38.000000000 +0800
 
10761
@@ -75,6 +75,7 @@
 
10762
 ECHO_T = @ECHO_T@
 
10763
 EGREP = @EGREP@
 
10764
 EXEEXT = @EXEEXT@
 
10765
+GREP = @GREP@
 
10766
 INCLUDESINTER = @INCLUDESINTER@
 
10767
 INSTALL_DATA = @INSTALL_DATA@
 
10768
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
10769
@@ -102,8 +103,8 @@
 
10770
 STRIP = @STRIP@
 
10771
 VERSION = @VERSION@
 
10772
 YACC = @YACC@
 
10773
+YFLAGS = @YFLAGS@
 
10774
 ac_ct_CC = @ac_ct_CC@
 
10775
-ac_ct_STRIP = @ac_ct_STRIP@
 
10776
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 
10777
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 
10778
 am__include = @am__include@
 
10779
@@ -118,23 +119,30 @@
 
10780
 build_os = @build_os@
 
10781
 build_vendor = @build_vendor@
 
10782
 datadir = @datadir@
 
10783
+datarootdir = @datarootdir@
 
10784
+docdir = @docdir@
 
10785
+dvidir = @dvidir@
 
10786
 exec_prefix = @exec_prefix@
 
10787
 host = @host@
 
10788
 host_alias = @host_alias@
 
10789
 host_cpu = @host_cpu@
 
10790
 host_os = @host_os@
 
10791
 host_vendor = @host_vendor@
 
10792
+htmldir = @htmldir@
 
10793
 includedir = @includedir@
 
10794
 infodir = @infodir@
 
10795
 install_sh = @install_sh@
 
10796
 libdir = @libdir@
 
10797
 libexecdir = @libexecdir@
 
10798
+localedir = @localedir@
 
10799
 localstatedir = @localstatedir@
 
10800
 mandir = @mandir@
 
10801
 mkdir_p = @mkdir_p@
 
10802
 oldincludedir = @oldincludedir@
 
10803
+pdfdir = @pdfdir@
 
10804
 prefix = @prefix@
 
10805
 program_transform_name = @program_transform_name@
 
10806
+psdir = @psdir@
 
10807
 sbindir = @sbindir@
 
10808
 sharedstatedir = @sharedstatedir@
 
10809
 sysconfdir = @sysconfdir@