home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / flex-2.4.7.diffs < prev    next >
Encoding:
Text File  |  1995-01-21  |  53.1 KB  |  1,759 lines

  1. diff -rc --new-file flex-2.4.7/INSTALL /gnu/src/amiga/flex-2.4.7/INSTALL
  2. *** flex-2.4.7/INSTALL    Sat Nov 27 00:43:37 1993
  3. --- /gnu/src/amiga/flex-2.4.7/INSTALL    Sat Sep  3 11:48:24 1994
  4. ***************
  5. *** 33,40 ****
  6.   DIR is the directory that contains the source code.
  7.   
  8.   By default, `make install' will install the package's files in
  9. ! /usr/local/bin, /usr/local/lib, /usr/local/man, etc.  You can specify
  10. ! an installation prefix other than /usr/local by giving `configure' the
  11.   option `--prefix=PATH'.  Alternately, you can do so by giving a value
  12.   for the `prefix' variable when you run `make', e.g.,
  13.       make prefix=/usr/gnu
  14. --- 33,40 ----
  15.   DIR is the directory that contains the source code.
  16.   
  17.   By default, `make install' will install the package's files in
  18. ! /gnu/bin, /gnu/lib, /gnu/man, etc.  You can specify
  19. ! an installation prefix other than /gnu by giving `configure' the
  20.   option `--prefix=PATH'.  Alternately, you can do so by giving a value
  21.   for the `prefix' variable when you run `make', e.g.,
  22.       make prefix=/usr/gnu
  23. diff -rc --new-file flex-2.4.7/Makefile.in /gnu/src/amiga/flex-2.4.7/Makefile.in
  24. *** flex-2.4.7/Makefile.in    Tue Jan  4 22:33:20 1994
  25. --- /gnu/src/amiga/flex-2.4.7/Makefile.in    Sat Sep  3 11:48:25 1994
  26. ***************
  27. *** 28,34 ****
  28.   # Raw, unformatted troff source will be installed if INSTALLMAN=man,
  29.   # nroff preformatted versions will be installed if INSTALLMAN=cat.
  30.   
  31. ! prefix = /usr/local
  32.   exec_prefix = $(prefix)
  33.   bindir = $(exec_prefix)/bin
  34.   libdir = $(exec_prefix)/lib
  35. --- 28,34 ----
  36.   # Raw, unformatted troff source will be installed if INSTALLMAN=man,
  37.   # nroff preformatted versions will be installed if INSTALLMAN=cat.
  38.   
  39. ! prefix = /gnu
  40.   exec_prefix = $(prefix)
  41.   bindir = $(exec_prefix)/bin
  42.   libdir = $(exec_prefix)/lib
  43. ***************
  44. *** 42,48 ****
  45.   srcdir = @srcdir@
  46.   VPATH = @srcdir@
  47.   
  48. ! LN_S = @LN_S@
  49.   YACC = @YACC@
  50.   CC = @CC@
  51.   AR = ar
  52. --- 42,54 ----
  53.   srcdir = @srcdir@
  54.   VPATH = @srcdir@
  55.   
  56. ! # For the Amiga, force LN_S to be just "cp" rather than "ln -s", so that a
  57. ! # copy is made rather than a symbolic link.  We support symbolic links, but
  58. ! # we don't want to use them in the installation because the "mkisofs" CD-ROM
  59. ! # mastering software doesn't know what to do with them yet (convert to a
  60. ! # copy on the fly).
  61. ! #LN_S = @LN_S@
  62. ! LN_S = cp
  63.   YACC = @YACC@
  64.   CC = @CC@
  65.   AR = ar
  66. diff -rc --new-file flex-2.4.7/NEWS /gnu/src/amiga/flex-2.4.7/NEWS
  67. *** flex-2.4.7/NEWS    Wed Aug  3 19:23:35 1994
  68. --- /gnu/src/amiga/flex-2.4.7/NEWS    Sat Sep  3 11:48:27 1994
  69. ***************
  70. *** 95,103 ****
  71.         C++ scanners using g++ version 2.5.X.  The problem is due to an
  72.         unfortunate heuristic in g++ 2.5.X that attempts to discern between
  73.         C and C++ headers.  Because FlexLexer.h is installed (by default)
  74. !       in /usr/local/include and not /usr/local/lib/g++-include, g++ 2.5.X
  75.         decides that it's a C header :-(.  So if you have problems, install
  76. !       the header in /usr/local/lib/g++-include instead.
  77.   
  78.   
  79.   Changes between release 2.4.2 (01Dec93) and release 2.4.1:
  80. --- 95,103 ----
  81.         C++ scanners using g++ version 2.5.X.  The problem is due to an
  82.         unfortunate heuristic in g++ 2.5.X that attempts to discern between
  83.         C and C++ headers.  Because FlexLexer.h is installed (by default)
  84. !       in /gnu/include and not /gnu/lib/g++-include, g++ 2.5.X
  85.         decides that it's a C header :-(.  So if you have problems, install
  86. !       the header in /gnu/lib/g++-include instead.
  87.   
  88.   
  89.   Changes between release 2.4.2 (01Dec93) and release 2.4.1:
  90. diff -rc --new-file flex-2.4.7/Product-Info /gnu/src/amiga/flex-2.4.7/Product-Info
  91. *** flex-2.4.7/Product-Info    Thu Jan  1 00:00:00 1970
  92. --- /gnu/src/amiga/flex-2.4.7/Product-Info    Sat Sep  3 12:47:25 1994
  93. ***************
  94. *** 0 ****
  95. --- 1,31 ----
  96. + .name
  97. + flex
  98. + .fullname
  99. + Fast lexical analyzer generator
  100. + .type
  101. + Programmer Tool
  102. + .short
  103. + Fast lexical analyzer generator
  104. + .description
  105. + Flex is a tool for generating scanners, programs which recognized
  106. + lexical patterns in text.  Flex reads the given input files, or its
  107. + standard input if no file names are given, for a description of a
  108. + scanner to generate.  The description is in the form of pairs of
  109. + regular expressions and C code, called rules.  Flex generates as
  110. + output a C source file, lex.yy.c, which defines a routine yylex().
  111. + This file is compiled and linked with the -lfl library to produce an
  112. + executable.  When the executable is run, it analyzes its input for
  113. + occurrences of the regular expressions.  Whenever it finds one, it
  114. + executes the corresponding C code.
  115. + .version
  116. + 2.4.7
  117. + .author
  118. + Vern Paxson
  119. + Van Jacobson
  120. + Jef Poskanzer
  121. + .requirements
  122. + Amiga binaries require ixemul.library.
  123. + .distribution
  124. + GNU Public License
  125. + .described-by
  126. + Fred Fish (fnf@amigalib.com)
  127. diff -rc --new-file flex-2.4.7/configure /gnu/src/amiga/flex-2.4.7/configure
  128. *** flex-2.4.7/configure    Tue Jan  4 22:33:24 1994
  129. --- /gnu/src/amiga/flex-2.4.7/configure    Sat Sep  3 11:52:43 1994
  130. ***************
  131. *** 1,135 ****
  132.   #!/bin/sh
  133.   # Guess values for system-dependent variables and create Makefiles.
  134. ! # Generated automatically using autoconf version 1.7.1 
  135. ! # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  136.   
  137. ! # This program is free software; you can redistribute it and/or modify
  138. ! # it under the terms of the GNU General Public License as published by
  139. ! # the Free Software Foundation; either version 2, or (at your option)
  140.   # any later version.
  141.   
  142. ! # This program is distributed in the hope that it will be useful,
  143. ! # but WITHOUT ANY WARRANTY; without even the implied warranty of
  144. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  145. ! # GNU General Public License for more details.
  146.   
  147.   # You should have received a copy of the GNU General Public License
  148.   # along with this program; if not, write to the Free Software
  149.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  150.   
  151. ! # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp]
  152. ! #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE[=VALUE]]
  153. ! # Ignores all args except --srcdir, --prefix, --exec-prefix, and
  154. ! # --with-PACKAGE[=VALUE] unless this script has special code to handle it.
  155.   
  156. ! for arg
  157.   do
  158. -   # Handle --exec-prefix with a space before the argument.
  159. -   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  160. -   # Handle --host with a space before the argument.
  161. -   elif test x$next_host = xyes; then next_host=
  162. -   # Handle --prefix with a space before the argument.
  163. -   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  164. -   # Handle --srcdir with a space before the argument.
  165. -   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  166. -   else
  167. -     case $arg in
  168. -      # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  169. -      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  170. -     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  171. -      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  172. -     next_exec_prefix=yes ;;
  173. -      -gas | --gas | --ga | --g) ;;
  174. -      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  175. -      -host | --host | --hos | --ho | --h)
  176. -     next_host=yes ;;
  177. -      -nfp | --nfp | --nf) ;;
  178. -      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  179. -     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  180. -      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  181. -     next_prefix=yes ;;
  182. -      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  183. -     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  184. -      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  185. -     next_srcdir=yes ;;
  186. -      -with-* | --with-*)
  187. -        package=`echo $arg|sed -e 's/-*with-//' -e 's/=.*//'`
  188. -        # Reject names that aren't valid shell variable names.
  189. -        if test -n "`echo $package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  190. -          echo "configure: $package: invalid package name" >&2; exit 1
  191. -        fi
  192. -        package=`echo $package| sed 's/-/_/g'`
  193. -        case "$arg" in
  194. -          *=*) val="`echo $arg|sed 's/[^=]*=//'`" ;;
  195. -          *) val=1 ;;
  196. -        esac
  197. -        eval "with_$package='$val'" ;;
  198.   
  199. !      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  200. !        verbose=yes ;;
  201.   
  202. !      *) ;;
  203.       esac
  204. !   fi
  205.   done
  206.   
  207. ! trap 'rm -fr conftest* confdefs* core; exit 1' 1 3 15
  208. ! trap 'rm -f confdefs*' 0
  209.   
  210.   # NLS nuisances.
  211.   # These must not be set unconditionally because not all systems understand
  212.   # e.g. LANG=C (notably SCO).
  213. ! if test "${LC_ALL+set}" = 'set' ; then LC_ALL=C; export LC_ALL; fi
  214. ! if test "${LANG+set}"   = 'set' ; then LANG=C;   export LANG;   fi
  215.   
  216. ! rm -f conftest* confdefs.h
  217.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  218. ! echo > confdefs.h
  219. ! compile='${CC-cc} $CFLAGS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  220.   
  221.   # A filename unique to this package, relative to the directory that
  222.   # configure is in, which we can look for to find out if srcdir is correct.
  223. ! unique_file=initscan.c
  224.   
  225.   # Find the source files, if location was not specified.
  226.   if test -z "$srcdir"; then
  227. !   srcdirdefaulted=yes
  228.     # Try the directory containing this script, then `..'.
  229. !   prog=$0
  230. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  231. !   test "X$confdir" = "X$prog" && confdir=.
  232. !   srcdir=$confdir
  233. !   if test ! -r $srcdir/$unique_file; then
  234.       srcdir=..
  235.     fi
  236.   fi
  237. ! if test ! -r $srcdir/$unique_file; then
  238. !   if test x$srcdirdefaulted = xyes; then
  239. !     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  240.     else
  241. !     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  242.     fi
  243. -   exit 1
  244.   fi
  245. ! # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  246. ! # But we can't avoid them for `..', to make subdirectories work.
  247. ! case $srcdir in
  248. !   .|/*|~*) ;;
  249. !   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  250. ! esac
  251.   
  252.   
  253. - # Save the original args to write them into config.status later.
  254. - configure_args="$*"
  255.   
  256. ! echo checking for ln -s
  257.   rm -f conftestdata
  258.   if ln -s X conftestdata 2>/dev/null
  259.   then
  260. --- 1,322 ----
  261.   #!/bin/sh
  262.   # Guess values for system-dependent variables and create Makefiles.
  263. ! # Generated automatically using autoconf version 1.11 
  264. ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  265.   
  266. ! # This configure script is free software; you can redistribute it and/or
  267. ! # modify it under the terms of the GNU General Public License as published
  268. ! # by the Free Software Foundation; either version 2, or (at your option)
  269.   # any later version.
  270.   
  271. ! # This script is distributed in the hope that it will be useful, but
  272. ! # WITHOUT ANY WARRANTY; without even the implied warranty of
  273. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  274. ! # Public License for more details.
  275.   
  276.   # You should have received a copy of the GNU General Public License
  277.   # along with this program; if not, write to the Free Software
  278.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  279.   
  280. ! # Save the original args to write them into config.status later.
  281. ! configure_args="$*"
  282. ! # Only options that might do something get documented.
  283. ! ac_usage="Usage: configure [options] [host]
  284. ! Options: [defaults in brackets after descriptions]
  285. ! --build=BUILD        configure for building on BUILD [BUILD=HOST]
  286. ! --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  287. ! --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  288. ! --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  289. ! --help            print this message
  290. ! --host=HOST        configure for HOST [guessed]
  291. ! --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  292. ! --quiet, --silent    do not print \`checking for...' messages
  293. ! --srcdir=DIR        find the sources in DIR [configure dir or ..]
  294. ! --target=TARGET        configure for TARGET [TARGET=HOST]
  295. ! --verbose        print results of checks
  296. ! --version        print the version of autoconf that created configure
  297. ! --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  298. ! --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  299. ! --x-includes=DIR    X include files are in DIR
  300. ! --x-libraries=DIR    X library files are in DIR"
  301. ! # Initialize some variables set by options.
  302. ! # The variables have the same names as the options, with
  303. ! # dashes changed to underlines.
  304. ! build=NONE
  305. ! exec_prefix=
  306. ! host=NONE
  307. ! no_create=
  308. ! nonopt=NONE
  309. ! norecursion=
  310. ! prefix=
  311. ! program_prefix=
  312. ! program_suffix=
  313. ! program_transform_name=
  314. ! silent=
  315. ! srcdir=
  316. ! target=NONE
  317. ! verbose=
  318. ! x_includes=
  319. ! x_libraries=
  320.   
  321. ! ac_prev=
  322. ! for ac_option
  323.   do
  324.   
  325. !   # If the previous option needs an argument, assign it.
  326. !   if test -n "$ac_prev"; then
  327. !     eval "$ac_prev=\$ac_option"
  328. !     ac_prev=
  329. !     continue
  330. !   fi
  331. !   # Accept (but ignore some of) the important Cygnus configure
  332. !   # options, so we can diagnose typos.
  333.   
  334. !   case "$ac_option" in
  335. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  336. !   *) ac_optarg= ;;
  337. !   esac
  338. !   case "$ac_option" in
  339. !   -build | --build | --buil | --bui | --bu | --b)
  340. !     ac_prev=build ;;
  341. !   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  342. !     build="$ac_optarg" ;;
  343. !   -disable-* | --disable-*)
  344. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  345. !     # Reject names that aren't valid shell variable names.
  346. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  347. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  348. !     fi
  349. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  350. !     eval "enable_${ac_feature}=no" ;;
  351. !   -enable-* | --enable-*)
  352. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  353. !     # Reject names that aren't valid shell variable names.
  354. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  355. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  356. !     fi
  357. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  358. !     case "$ac_option" in
  359. !       *=*) ;;
  360. !       *) ac_optarg=yes ;;
  361.       esac
  362. !     eval "enable_${ac_feature}='$ac_optarg'" ;;
  363. !   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  364. !   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  365. !   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  366. !   | --exec | --exe | --ex)
  367. !     ac_prev=exec_prefix ;;
  368. !   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  369. !   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  370. !   | --exec=* | --exe=* | --ex=*)
  371. !     exec_prefix="$ac_optarg" ;;
  372. !   -gas | --gas | --ga | --g)
  373. !     with_gas=yes ;; # Obsolete; use --with-gas.
  374. !   -help | --help | --hel | --he)
  375. !     cat << EOF
  376. ! $ac_usage
  377. ! EOF
  378. !     exit 0 ;;
  379. !   -host | --host | --hos | --ho)
  380. !     ac_prev=host ;;
  381. !   -host=* | --host=* | --hos=* | --ho=*)
  382. !     host="$ac_optarg" ;;
  383. !   -nfp | --nfp | --nf)
  384. !     with_fp=no ;; # Obsolete; use --without-fp.
  385. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  386. !   | --no-cr | --no-c)
  387. !     no_create=yes ;;
  388. !   -norecursion | --norecursion | --norecursio | --norecursi \
  389. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  390. !     norecursion=yes ;;
  391. !   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  392. !     ac_prev=prefix ;;
  393. !   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  394. !     prefix="$ac_optarg" ;;
  395. !   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  396. !   | --program-pre | --program-pr | --program-p)
  397. !     ac_prev=program_prefix ;;
  398. !   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  399. !   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  400. !     program_prefix="$ac_optarg" ;;
  401. !   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  402. !   | --program-suf | --program-su | --program-s)
  403. !     ac_prev=program_suffix ;;
  404. !   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  405. !   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  406. !     program_suffix="$ac_optarg" ;;
  407. !   -program-transform-name | --program-transform-name \
  408. !   | --program-transform-nam | --program-transform-na \
  409. !   | --program-transform-n | --program-transform- \
  410. !   | --program-transform | --program-transfor \
  411. !   | --program-transfo | --program-transf \
  412. !   | --program-trans | --program-tran \
  413. !   | --progr-tra | --program-tr | --program-t)
  414. !     ac_prev=program_transform_name ;;
  415. !   -program-transform-name=* | --program-transform-name=* \
  416. !   | --program-transform-nam=* | --program-transform-na=* \
  417. !   | --program-transform-n=* | --program-transform-=* \
  418. !   | --program-transform=* | --program-transfor=* \
  419. !   | --program-transfo=* | --program-transf=* \
  420. !   | --program-trans=* | --program-tran=* \
  421. !   | --progr-tra=* | --program-tr=* | --program-t=*)
  422. !     program_transform_name="$ac_optarg" ;;
  423. !   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  424. !   | -silent | --silent | --silen | --sile | --sil)
  425. !     silent=yes ;;
  426. !   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  427. !     ac_prev=srcdir ;;
  428. !   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  429. !     srcdir="$ac_optarg" ;;
  430. !   -target | --target | --targe | --targ | --tar | --ta | --t)
  431. !     ac_prev=target ;;
  432. !   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  433. !     target="$ac_optarg" ;;
  434. !   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  435. !     verbose=yes ;;
  436. !   -version | --version | --versio | --versi | --vers)
  437. !     /bin/echo "configure generated by autoconf version 1.11"
  438. !     exit 0 ;;
  439. !   -with-* | --with-*)
  440. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  441. !     # Reject names that aren't valid shell variable names.
  442. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  443. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  444. !     fi
  445. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  446. !     case "$ac_option" in
  447. !       *=*) ;;
  448. !       *) ac_optarg=yes ;;
  449. !     esac
  450. !     eval "with_${ac_package}='$ac_optarg'" ;;
  451. !   -without-* | --without-*)
  452. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  453. !     # Reject names that aren't valid shell variable names.
  454. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  455. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  456. !     fi
  457. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  458. !     eval "with_${ac_package}=no" ;;
  459. !   --x) with_x=yes ;; # Obsolete; use --with-x.
  460. !   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  461. !   | --x-incl | --x-inc | --x-in | --x-i)
  462. !     ac_prev=x_includes ;;
  463. !   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  464. !   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  465. !     x_includes="$ac_optarg" ;;
  466. !   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  467. !   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  468. !     ac_prev=x_libraries ;;
  469. !   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  470. !   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  471. !     x_libraries="$ac_optarg" ;;
  472. !   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  473. !     ;;
  474. !   *) 
  475. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  476. !       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  477. !     fi
  478. !     if test "x$nonopt" != xNONE; then
  479. !       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  480. !     fi
  481. !     nonopt="$ac_option"
  482. !     ;;
  483. !   esac
  484.   done
  485.   
  486. ! if test -n "$ac_prev"; then
  487. !   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  488. ! fi
  489. ! trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  490. ! trap 'rm -fr confdefs* $ac_clean_files' 0
  491. ! # Save the original args if we used an alternate arg parser.
  492. ! ac_configure_temp="${configure_args-$*}"
  493. ! # Strip out --no-create and --norecursion so they don't pile up.
  494. ! configure_args=
  495. ! for ac_arg in $ac_configure_temp; do
  496. !   case "$ac_arg" in
  497. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  498. !   | --no-cr | --no-c) ;;
  499. !   -norecursion | --norecursion | --norecursio | --norecursi \
  500. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  501. !   *) configure_args="$configure_args $ac_arg" ;;
  502. !   esac
  503. ! done
  504.   
  505.   # NLS nuisances.
  506.   # These must not be set unconditionally because not all systems understand
  507.   # e.g. LANG=C (notably SCO).
  508. ! if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  509. ! if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  510.   
  511. ! # confdefs.h avoids OS command line length limits that DEFS can exceed.
  512. ! rm -rf conftest* confdefs.h
  513.   # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  514. ! /bin/echo > confdefs.h
  515.   
  516.   # A filename unique to this package, relative to the directory that
  517.   # configure is in, which we can look for to find out if srcdir is correct.
  518. ! ac_unique_file=initscan.c
  519.   
  520.   # Find the source files, if location was not specified.
  521.   if test -z "$srcdir"; then
  522. !   ac_srcdir_defaulted=yes
  523.     # Try the directory containing this script, then `..'.
  524. !   ac_prog=$0
  525. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  526. !   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  527. !   srcdir=$ac_confdir
  528. !   if test ! -r $srcdir/$ac_unique_file; then
  529.       srcdir=..
  530.     fi
  531.   fi
  532. ! if test ! -r $srcdir/$ac_unique_file; then
  533. !   if test x$ac_srcdir_defaulted = xyes; then
  534. !     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  535.     else
  536. !     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  537.     fi
  538.   fi
  539. ! ac_ext=c
  540. ! # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  541. ! ac_cpp='${CPP}'
  542. ! ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  543.   
  544.   
  545.   
  546. ! test -n "$silent" || /bin/echo "checking for ln -s"
  547.   rm -f conftestdata
  548.   if ln -s X conftestdata 2>/dev/null
  549.   then
  550. ***************
  551. *** 140,163 ****
  552.   fi
  553.   
  554.   
  555. ! for p in 'bison -y' byacc
  556.   do
  557.   if test -z "$YACC"; then
  558. !   # Extract the first word of `$p', so it can be a program name with args.
  559. !   set dummy $p; word=$2
  560. !   echo checking for $word
  561. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  562. !   for dir in $PATH; do
  563. !     test -z "$dir" && dir=.
  564. !     if test -f $dir/$word; then
  565. !       YACC="$p"
  566.         break
  567.       fi
  568.     done
  569. !   IFS="$saveifs"
  570.   fi
  571.   
  572. ! test -n "$YACC" && test -n "$verbose" && echo "    setting YACC to $YACC"
  573.   
  574.   test -n "$YACC" && break
  575.   done
  576. --- 327,350 ----
  577.   fi
  578.   
  579.   
  580. ! for ac_prog in 'bison -y' byacc
  581.   do
  582.   if test -z "$YACC"; then
  583. !   # Extract the first word of `$ac_prog', so it can be a program name with args.
  584. !   set ac_dummy $ac_prog; ac_word=$2
  585. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  586. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  587. !   for ac_dir in $PATH; do
  588. !     test -z "$ac_dir" && ac_dir=.
  589. !     if test -f $ac_dir/$ac_word; then
  590. !       YACC="$ac_prog"
  591.         break
  592.       fi
  593.     done
  594. !   IFS="$ac_save_ifs"
  595.   fi
  596.   
  597. ! test -n "$YACC" && test -n "$verbose" && /bin/echo "    setting YACC to $YACC"
  598.   
  599.   test -n "$YACC" && break
  600.   done
  601. ***************
  602. *** 165,184 ****
  603.   
  604.   if test -z "$CC"; then
  605.     # Extract the first word of `gcc', so it can be a program name with args.
  606. !   set dummy gcc; word=$2
  607. !   echo checking for $word
  608. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  609. !   for dir in $PATH; do
  610. !     test -z "$dir" && dir=.
  611. !     if test -f $dir/$word; then
  612.         CC="gcc"
  613.         break
  614.       fi
  615.     done
  616. !   IFS="$saveifs"
  617.   fi
  618.   test -z "$CC" && CC="cc"
  619. ! test -n "$CC" && test -n "$verbose" && echo "    setting CC to $CC"
  620.   
  621.   # Find out if we are using GNU C, under whatever name.
  622.   cat > conftest.c <<EOF
  623. --- 352,371 ----
  624.   
  625.   if test -z "$CC"; then
  626.     # Extract the first word of `gcc', so it can be a program name with args.
  627. !   set ac_dummy gcc; ac_word=$2
  628. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  629. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  630. !   for ac_dir in $PATH; do
  631. !     test -z "$ac_dir" && ac_dir=.
  632. !     if test -f $ac_dir/$ac_word; then
  633.         CC="gcc"
  634.         break
  635.       fi
  636.     done
  637. !   IFS="$ac_save_ifs"
  638.   fi
  639.   test -z "$CC" && CC="cc"
  640. ! test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  641.   
  642.   # Find out if we are using GNU C, under whatever name.
  643.   cat > conftest.c <<EOF
  644. ***************
  645. *** 194,267 ****
  646.   
  647.   if test -z "$RANLIB"; then
  648.     # Extract the first word of `ranlib', so it can be a program name with args.
  649. !   set dummy ranlib; word=$2
  650. !   echo checking for $word
  651. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  652. !   for dir in $PATH; do
  653. !     test -z "$dir" && dir=.
  654. !     if test -f $dir/$word; then
  655.         RANLIB="ranlib"
  656.         break
  657.       fi
  658.     done
  659. !   IFS="$saveifs"
  660.   fi
  661.   test -z "$RANLIB" && RANLIB=":"
  662. ! test -n "$RANLIB" && test -n "$verbose" && echo "    setting RANLIB to $RANLIB"
  663.   
  664.   # Make sure to not get the incompatible SysV /etc/install and
  665.   # /usr/sbin/install, which might be in PATH before a BSD-like install,
  666.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  667.   # or the AFS install, which mishandles nonexistent args, or
  668.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  669. ! # `staff'.  On most BSDish systems install is in /usr/bin, not /usr/ucb
  670. ! # anyway.  Sigh.
  671. ! if test "z${INSTALL}" = "z" ; then
  672. !   echo checking for install
  673. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  674. !   for dir in $PATH; do
  675. !     test -z "$dir" && dir=.
  676. !     case $dir in
  677. !     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  678.       *)
  679. !       if test -f $dir/installbsd; then
  680. !     INSTALL="$dir/installbsd -c" # OSF1
  681. !     INSTALL_PROGRAM='$(INSTALL)'
  682. !     INSTALL_DATA='$(INSTALL) -m 644'
  683. !     break
  684. !       fi
  685. !       if test -f $dir/install; then
  686. !     if grep dspmsg $dir/install >/dev/null 2>&1; then
  687. !       : # AIX
  688. !     else
  689. !       INSTALL="$dir/install -c"
  690. !       INSTALL_PROGRAM='$(INSTALL)'
  691. !       INSTALL_DATA='$(INSTALL) -m 644'
  692. !       break
  693.       fi
  694. !       fi
  695.         ;;
  696.       esac
  697.     done
  698. !   IFS="$saveifs"
  699.   fi
  700.   if test -z "$INSTALL"; then
  701. !   if test -f ${srcdir}/install.sh; then
  702. !     # We want the top-level source directory, not the subdir's srcdir,
  703. !     # so expand srcdir now rather than in the Makefile.
  704. !     INSTALL="${srcdir}/install.sh -c"
  705. !   else
  706. !     echo "warning: ${srcdir}/install.sh not found; using cp"
  707. !     INSTALL=cp
  708. !   fi
  709.   fi
  710. ! test -n "$verbose" && echo "    setting INSTALL to $INSTALL"
  711. ! INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  712. ! test -n "$verbose" && echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  713. ! INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  714. ! test -n "$verbose" && echo "    setting INSTALL_DATA to $INSTALL_DATA"
  715.   
  716. ! prog='/* Ultrix mips cc rejects this.  */
  717.   typedef int charset[2]; const charset x;
  718.   /* SunOS 4.1.1 cc rejects this.  */
  719.   char const *const *ccp;
  720. --- 381,466 ----
  721.   
  722.   if test -z "$RANLIB"; then
  723.     # Extract the first word of `ranlib', so it can be a program name with args.
  724. !   set ac_dummy ranlib; ac_word=$2
  725. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  726. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  727. !   for ac_dir in $PATH; do
  728. !     test -z "$ac_dir" && ac_dir=.
  729. !     if test -f $ac_dir/$ac_word; then
  730.         RANLIB="ranlib"
  731.         break
  732.       fi
  733.     done
  734. !   IFS="$ac_save_ifs"
  735.   fi
  736.   test -z "$RANLIB" && RANLIB=":"
  737. ! test -n "$RANLIB" && test -n "$verbose" && /bin/echo "    setting RANLIB to $RANLIB"
  738.   
  739.   # Make sure to not get the incompatible SysV /etc/install and
  740.   # /usr/sbin/install, which might be in PATH before a BSD-like install,
  741.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  742.   # or the AFS install, which mishandles nonexistent args, or
  743.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  744. ! # `staff', or /sbin/install on IRIX which has incompatible command-line
  745. ! # syntax.  Sigh.
  746. ! #
  747. ! #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  748. ! #     anyway.
  749. ! # This turns out not to be true, so the mere pathname isn't an indication
  750. ! # of whether the program works.  What we really need is a set of tests for
  751. ! # the install program to see if it actually works in all the required ways.
  752. ! #
  753. ! # Avoid using ./install, which might have been erroneously created
  754. ! # by make from ./install.sh.
  755. ! if test -z "${INSTALL}"; then
  756. !   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  757. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  758. !   for ac_dir in $PATH; do
  759. !     case "$ac_dir" in
  760. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  761.       *)
  762. !       # OSF1 and SCO ODT 3.0 have their own names for install.
  763. !       for ac_prog in installbsd scoinst install; do
  764. !         if test -f $ac_dir/$ac_prog; then
  765. !       if test $ac_prog = install &&
  766. !             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  767. !         # AIX install.  It has an incompatible calling convention.
  768. !         # OSF/1 installbsd also uses dspmsg, but is usable.
  769. !         :
  770. !       else
  771. !         INSTALL="$ac_dir/$ac_prog -c"
  772. !         break 2
  773. !       fi
  774.       fi
  775. !       done
  776.         ;;
  777.       esac
  778.     done
  779. !   IFS="$ac_save_ifs"
  780.   fi
  781.   if test -z "$INSTALL"; then
  782. !   # As a last resort, use the slow shell script.
  783. !   for ac_dir in ${srcdir} ${srcdir}/.. ${srcdir}/../..; do
  784. !     if test -f $ac_dir/install.sh; then
  785. !       INSTALL="$ac_dir/install.sh -c"; break
  786. !     fi
  787. !   done
  788. ! fi
  789. ! if test -z "$INSTALL"; then
  790. !   /bin/echo "configure: can not find install.sh in ${srcdir} or ${srcdir}/.. or ${srcdir}/../.." >&2; exit 1
  791.   fi
  792. ! test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  793. ! # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  794. ! # It thinks the first close brace ends the variable substitution.
  795. ! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  796. ! test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  797. ! test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  798. ! test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  799.   
  800. ! ac_prog='/* Ultrix mips cc rejects this.  */
  801.   typedef int charset[2]; const charset x;
  802.   /* SunOS 4.1.1 cc rejects this.  */
  803.   char const *const *ccp;
  804. ***************
  805. *** 299,339 ****
  806.   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  807.     const int foo = 10;
  808.   }'
  809. ! echo checking for lack of working const
  810. ! cat > conftest.c <<EOF
  811.   #include "confdefs.h"
  812.   
  813. ! int main() { exit(0); }
  814. ! int t() { $prog }
  815.   EOF
  816. ! if eval $compile; then
  817.     :
  818.   else
  819.     rm -rf conftest*
  820.     
  821.   {
  822.   test -n "$verbose" && \
  823. ! echo "    defining" const to be empty
  824. ! echo "#define" const  >> confdefs.h
  825.   DEFS="$DEFS -Dconst="
  826.   }
  827.   
  828.   fi
  829.   rm -f conftest*
  830.   
  831. ! echo checking how to run the C preprocessor
  832.   if test -z "$CPP"; then
  833.     # This must be in double quotes, not single quotes, because CPP may get
  834.     # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  835.     # make.  It must be expanded now.
  836.     CPP="${CC-cc} -E"
  837. !   cat > conftest.c <<EOF
  838.   #include "confdefs.h"
  839.   #include <stdio.h>
  840.   Syntax Error
  841.   EOF
  842. ! err=`eval "($CPP conftest.c >/dev/null) 2>&1"`
  843. ! if test -z "$err"; then
  844.     :
  845.   else
  846.     rm -rf conftest*
  847. --- 498,553 ----
  848.   { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  849.     const int foo = 10;
  850.   }'
  851. ! test -n "$silent" || /bin/echo "checking for lack of working const"
  852. ! cat > conftest.${ac_ext} <<EOF
  853.   #include "confdefs.h"
  854.   
  855. ! int main() { return 0; }
  856. ! int t() { $ac_prog; return 0; }
  857.   EOF
  858. ! if eval $ac_compile; then
  859.     :
  860.   else
  861.     rm -rf conftest*
  862.     
  863.   {
  864.   test -n "$verbose" && \
  865. ! /bin/echo "    defining" const to be empty
  866. ! /bin/echo "#define" const "" >> confdefs.h
  867.   DEFS="$DEFS -Dconst="
  868.   }
  869.   
  870.   fi
  871.   rm -f conftest*
  872.   
  873. ! test -n "$silent" || /bin/echo "checking how to run the C preprocessor"
  874.   if test -z "$CPP"; then
  875.     # This must be in double quotes, not single quotes, because CPP may get
  876.     # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  877.     # make.  It must be expanded now.
  878.     CPP="${CC-cc} -E"
  879. !   cat > conftest.${ac_ext} <<EOF
  880. ! #include "confdefs.h"
  881. ! #include <stdio.h>
  882. ! Syntax Error
  883. ! EOF
  884. ! # Some shells (Coherent) do redirections in the wrong order, so need
  885. ! # the parens.
  886. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  887. ! if test -z "$ac_err"; then
  888. !   :
  889. ! else
  890. !   rm -rf conftest*
  891. !   CPP="${CC-cc} -E -traditional-cpp"
  892. !   cat > conftest.${ac_ext} <<EOF
  893.   #include "confdefs.h"
  894.   #include <stdio.h>
  895.   Syntax Error
  896.   EOF
  897. ! # Some shells (Coherent) do redirections in the wrong order, so need
  898. ! # the parens.
  899. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  900. ! if test -z "$ac_err"; then
  901.     :
  902.   else
  903.     rm -rf conftest*
  904. ***************
  905. *** 341,367 ****
  906.   fi
  907.   rm -f conftest*
  908.   fi
  909. ! test ".${verbose}" != "." && echo "    setting CPP to $CPP"
  910.   
  911. ! echo checking for ANSI C header files
  912. ! cat > conftest.c <<EOF
  913.   #include "confdefs.h"
  914.   #include <stdlib.h>
  915.   #include <stdarg.h>
  916.   #include <string.h>
  917.   #include <float.h>
  918.   EOF
  919. ! err=`eval "($CPP conftest.c >/dev/null) 2>&1"`
  920. ! if test -z "$err"; then
  921.     rm -rf conftest*
  922.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  923. ! echo '#include "confdefs.h"
  924. ! #include <string.h>' > conftest.c
  925. ! eval "$CPP conftest.c > conftest.out 2>&1"
  926.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  927.     rm -rf conftest*
  928.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  929. ! cat > conftest.c <<EOF
  930.   #include "confdefs.h"
  931.   #include <ctype.h>
  932.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  933. --- 555,585 ----
  934.   fi
  935.   rm -f conftest*
  936.   fi
  937. ! rm -f conftest*
  938. ! fi
  939. ! test -n "$verbose" && /bin/echo "    setting CPP to $CPP"
  940.   
  941. ! test -n "$silent" || /bin/echo "checking for ANSI C header files"
  942. ! cat > conftest.${ac_ext} <<EOF
  943.   #include "confdefs.h"
  944.   #include <stdlib.h>
  945.   #include <stdarg.h>
  946.   #include <string.h>
  947.   #include <float.h>
  948.   EOF
  949. ! # Some shells (Coherent) do redirections in the wrong order, so need
  950. ! # the parens.
  951. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  952. ! if test -z "$ac_err"; then
  953.     rm -rf conftest*
  954.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  955. ! /bin/echo '#include "confdefs.h"
  956. ! #include <string.h>' > conftest.${ac_ext}
  957. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  958.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  959.     rm -rf conftest*
  960.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  961. ! cat > conftest.${ac_ext} <<EOF
  962.   #include "confdefs.h"
  963.   #include <ctype.h>
  964.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  965. ***************
  966. *** 372,389 ****
  967.   exit (0); }
  968.   
  969.   EOF
  970. ! eval $compile
  971.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  972.     
  973.   {
  974.   test -n "$verbose" && \
  975. ! echo "    defining STDC_HEADERS"
  976. ! echo "#define" STDC_HEADERS 1 >> confdefs.h
  977.   DEFS="$DEFS -DSTDC_HEADERS=1"
  978.   }
  979.   
  980.   
  981.   fi
  982.   rm -fr conftest*
  983.   
  984.   fi
  985. --- 590,617 ----
  986.   exit (0); }
  987.   
  988.   EOF
  989. ! eval $ac_compile
  990.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  991. +   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  992. + /bin/echo '#include "confdefs.h"
  993. + #include <stdlib.h>' > conftest.${ac_ext}
  994. + eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  995. + if egrep "free" conftest.out >/dev/null 2>&1; then
  996. +   rm -rf conftest*
  997.     
  998.   {
  999.   test -n "$verbose" && \
  1000. ! /bin/echo "    defining STDC_HEADERS"
  1001. ! /bin/echo "#define" STDC_HEADERS "1" >> confdefs.h
  1002.   DEFS="$DEFS -DSTDC_HEADERS=1"
  1003.   }
  1004.   
  1005.   
  1006.   fi
  1007. + rm -f conftest*
  1008. + fi
  1009.   rm -fr conftest*
  1010.   
  1011.   fi
  1012. ***************
  1013. *** 393,415 ****
  1014.   fi
  1015.   rm -f conftest*
  1016.   
  1017. ! for hdr in string.h
  1018.   do
  1019. ! trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  1020. ! echo checking for ${hdr}
  1021. ! cat > conftest.c <<EOF
  1022.   #include "confdefs.h"
  1023. ! #include <${hdr}>
  1024.   EOF
  1025. ! err=`eval "($CPP conftest.c >/dev/null) 2>&1"`
  1026. ! if test -z "$err"; then
  1027.     rm -rf conftest*
  1028.     
  1029.   {
  1030.   test -n "$verbose" && \
  1031. ! echo "    defining ${trhdr}"
  1032. ! echo "#define" ${trhdr} 1 >> confdefs.h
  1033. ! DEFS="$DEFS -D${trhdr}=1"
  1034.   }
  1035.   
  1036.   
  1037. --- 621,645 ----
  1038.   fi
  1039.   rm -f conftest*
  1040.   
  1041. ! for ac_hdr in string.h
  1042.   do
  1043. ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  1044. ! test -n "$silent" || /bin/echo "checking for ${ac_hdr}"
  1045. ! cat > conftest.${ac_ext} <<EOF
  1046.   #include "confdefs.h"
  1047. ! #include <${ac_hdr}>
  1048.   EOF
  1049. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1050. ! # the parens.
  1051. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1052. ! if test -z "$ac_err"; then
  1053.     rm -rf conftest*
  1054.     
  1055.   {
  1056.   test -n "$verbose" && \
  1057. ! /bin/echo "    defining ${ac_tr_hdr}"
  1058. ! /bin/echo "#define" ${ac_tr_hdr} "1" >> confdefs.h
  1059. ! DEFS="$DEFS -D${ac_tr_hdr}=1"
  1060.   }
  1061.   
  1062.   
  1063. ***************
  1064. *** 422,441 ****
  1065.   *bison*)
  1066.     # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1067.   # for constant arguments.  Useless!
  1068. ! echo checking for working alloca.h
  1069. ! cat > conftest.c <<EOF
  1070.   #include "confdefs.h"
  1071.   #include <alloca.h>
  1072. ! int main() { exit(0); }
  1073. ! int t() { char *p = alloca(2 * sizeof(int)); }
  1074.   EOF
  1075. ! if eval $compile; then
  1076.     rm -rf conftest*
  1077.     
  1078.   {
  1079.   test -n "$verbose" && \
  1080. ! echo "    defining HAVE_ALLOCA_H"
  1081. ! echo "#define" HAVE_ALLOCA_H 1 >> confdefs.h
  1082.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  1083.   }
  1084.   
  1085. --- 652,671 ----
  1086.   *bison*)
  1087.     # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1088.   # for constant arguments.  Useless!
  1089. ! test -n "$silent" || /bin/echo "checking for working alloca.h"
  1090. ! cat > conftest.${ac_ext} <<EOF
  1091.   #include "confdefs.h"
  1092.   #include <alloca.h>
  1093. ! int main() { return 0; }
  1094. ! int t() { char *p = alloca(2 * sizeof(int));; return 0; }
  1095.   EOF
  1096. ! if eval $ac_compile; then
  1097.     rm -rf conftest*
  1098.     
  1099.   {
  1100.   test -n "$verbose" && \
  1101. ! /bin/echo "    defining HAVE_ALLOCA_H"
  1102. ! /bin/echo "#define" HAVE_ALLOCA_H "1" >> confdefs.h
  1103.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  1104.   }
  1105.   
  1106. ***************
  1107. *** 443,449 ****
  1108.   fi
  1109.   rm -f conftest*
  1110.   
  1111. ! decl="#ifdef __GNUC__
  1112.   #define alloca __builtin_alloca
  1113.   #else
  1114.   #if HAVE_ALLOCA_H
  1115. --- 673,679 ----
  1116.   fi
  1117.   rm -f conftest*
  1118.   
  1119. ! ac_decl="#ifdef __GNUC__
  1120.   #define alloca __builtin_alloca
  1121.   #else
  1122.   #if HAVE_ALLOCA_H
  1123. ***************
  1124. *** 457,475 ****
  1125.   #endif
  1126.   #endif
  1127.   "
  1128. ! echo checking for alloca
  1129. ! cat > conftest.c <<EOF
  1130.   #include "confdefs.h"
  1131. ! $decl
  1132. ! int main() { exit(0); }
  1133. ! int t() { char *p = (char *) alloca(1); }
  1134.   EOF
  1135. ! if eval $compile; then
  1136. !   :
  1137.   else
  1138.     rm -rf conftest*
  1139. !   alloca_missing=1
  1140. ! cat > conftest.c <<EOF
  1141.   #include "confdefs.h"
  1142.   
  1143.   #if defined(CRAY) && ! defined(CRAY2)
  1144. --- 687,714 ----
  1145.   #endif
  1146.   #endif
  1147.   "
  1148. ! test -n "$silent" || /bin/echo "checking for alloca"
  1149. ! cat > conftest.${ac_ext} <<EOF
  1150.   #include "confdefs.h"
  1151. ! $ac_decl
  1152. ! int main() { return 0; }
  1153. ! int t() { char *p = (char *) alloca(1);; return 0; }
  1154.   EOF
  1155. ! if eval $ac_compile; then
  1156. !   rm -rf conftest*
  1157. !   
  1158. ! {
  1159. ! test -n "$verbose" && \
  1160. ! /bin/echo "    defining HAVE_ALLOCA"
  1161. ! /bin/echo "#define" HAVE_ALLOCA "1" >> confdefs.h
  1162. ! DEFS="$DEFS -DHAVE_ALLOCA=1"
  1163. ! }
  1164.   else
  1165.     rm -rf conftest*
  1166. !   ac_alloca_missing=1
  1167. ! cat > conftest.${ac_ext} <<EOF
  1168.   #include "confdefs.h"
  1169.   
  1170.   #if defined(CRAY) && ! defined(CRAY2)
  1171. ***************
  1172. *** 479,492 ****
  1173.   #endif
  1174.   
  1175.   EOF
  1176. ! eval "$CPP conftest.c > conftest.out 2>&1"
  1177.   if egrep "winnitude" conftest.out >/dev/null 2>&1; then
  1178.     rm -rf conftest*
  1179. !   echo checking for _getb67
  1180. ! cat > conftest.c <<EOF
  1181.   #include "confdefs.h"
  1182.   #include <ctype.h>
  1183. ! int main() { exit(0); }
  1184.   int t() { 
  1185.   /* The GNU C library defines this for functions which it implements
  1186.       to always fail with ENOSYS.  Some functions are actually named
  1187. --- 718,731 ----
  1188.   #endif
  1189.   
  1190.   EOF
  1191. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1192.   if egrep "winnitude" conftest.out >/dev/null 2>&1; then
  1193.     rm -rf conftest*
  1194. !   test -n "$silent" || /bin/echo "checking for _getb67"
  1195. ! cat > conftest.${ac_ext} <<EOF
  1196.   #include "confdefs.h"
  1197.   #include <ctype.h>
  1198. ! int main() { return 0; }
  1199.   int t() { 
  1200.   /* The GNU C library defines this for functions which it implements
  1201.       to always fail with ENOSYS.  Some functions are actually named
  1202. ***************
  1203. *** 497,521 ****
  1204.   /* Override any gcc2 internal prototype to avoid an error.  */
  1205.   extern char _getb67(); _getb67();
  1206.   #endif
  1207. !  }
  1208.   EOF
  1209. ! if eval $compile; then
  1210.     rm -rf conftest*
  1211.     {
  1212.   test -n "$verbose" && \
  1213. ! echo "    defining" CRAY_STACKSEG_END to be _getb67
  1214. ! echo "#define" CRAY_STACKSEG_END _getb67 >> confdefs.h
  1215.   DEFS="$DEFS -DCRAY_STACKSEG_END=_getb67"
  1216.   }
  1217.   
  1218.   
  1219.   else
  1220.     rm -rf conftest*
  1221. !   echo checking for GETB67
  1222. ! cat > conftest.c <<EOF
  1223.   #include "confdefs.h"
  1224.   #include <ctype.h>
  1225. ! int main() { exit(0); }
  1226.   int t() { 
  1227.   /* The GNU C library defines this for functions which it implements
  1228.       to always fail with ENOSYS.  Some functions are actually named
  1229. --- 736,760 ----
  1230.   /* Override any gcc2 internal prototype to avoid an error.  */
  1231.   extern char _getb67(); _getb67();
  1232.   #endif
  1233. ! ; return 0; }
  1234.   EOF
  1235. ! if eval $ac_compile; then
  1236.     rm -rf conftest*
  1237.     {
  1238.   test -n "$verbose" && \
  1239. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "_getb67"
  1240. ! /bin/echo "#define" CRAY_STACKSEG_END "_getb67" >> confdefs.h
  1241.   DEFS="$DEFS -DCRAY_STACKSEG_END=_getb67"
  1242.   }
  1243.   
  1244.   
  1245.   else
  1246.     rm -rf conftest*
  1247. !   test -n "$silent" || /bin/echo "checking for GETB67"
  1248. ! cat > conftest.${ac_ext} <<EOF
  1249.   #include "confdefs.h"
  1250.   #include <ctype.h>
  1251. ! int main() { return 0; }
  1252.   int t() { 
  1253.   /* The GNU C library defines this for functions which it implements
  1254.       to always fail with ENOSYS.  Some functions are actually named
  1255. ***************
  1256. *** 526,550 ****
  1257.   /* Override any gcc2 internal prototype to avoid an error.  */
  1258.   extern char GETB67(); GETB67();
  1259.   #endif
  1260. !  }
  1261.   EOF
  1262. ! if eval $compile; then
  1263.     rm -rf conftest*
  1264.     {
  1265.   test -n "$verbose" && \
  1266. ! echo "    defining" CRAY_STACKSEG_END to be GETB67
  1267. ! echo "#define" CRAY_STACKSEG_END GETB67 >> confdefs.h
  1268.   DEFS="$DEFS -DCRAY_STACKSEG_END=GETB67"
  1269.   }
  1270.   
  1271.   
  1272.   else
  1273.     rm -rf conftest*
  1274. !   echo checking for getb67
  1275. ! cat > conftest.c <<EOF
  1276.   #include "confdefs.h"
  1277.   #include <ctype.h>
  1278. ! int main() { exit(0); }
  1279.   int t() { 
  1280.   /* The GNU C library defines this for functions which it implements
  1281.       to always fail with ENOSYS.  Some functions are actually named
  1282. --- 765,789 ----
  1283.   /* Override any gcc2 internal prototype to avoid an error.  */
  1284.   extern char GETB67(); GETB67();
  1285.   #endif
  1286. ! ; return 0; }
  1287.   EOF
  1288. ! if eval $ac_compile; then
  1289.     rm -rf conftest*
  1290.     {
  1291.   test -n "$verbose" && \
  1292. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "GETB67"
  1293. ! /bin/echo "#define" CRAY_STACKSEG_END "GETB67" >> confdefs.h
  1294.   DEFS="$DEFS -DCRAY_STACKSEG_END=GETB67"
  1295.   }
  1296.   
  1297.   
  1298.   else
  1299.     rm -rf conftest*
  1300. !   test -n "$silent" || /bin/echo "checking for getb67"
  1301. ! cat > conftest.${ac_ext} <<EOF
  1302.   #include "confdefs.h"
  1303.   #include <ctype.h>
  1304. ! int main() { return 0; }
  1305.   int t() { 
  1306.   /* The GNU C library defines this for functions which it implements
  1307.       to always fail with ENOSYS.  Some functions are actually named
  1308. ***************
  1309. *** 555,568 ****
  1310.   /* Override any gcc2 internal prototype to avoid an error.  */
  1311.   extern char getb67(); getb67();
  1312.   #endif
  1313. !  }
  1314.   EOF
  1315. ! if eval $compile; then
  1316.     rm -rf conftest*
  1317.     {
  1318.   test -n "$verbose" && \
  1319. ! echo "    defining" CRAY_STACKSEG_END to be getb67
  1320. ! echo "#define" CRAY_STACKSEG_END getb67 >> confdefs.h
  1321.   DEFS="$DEFS -DCRAY_STACKSEG_END=getb67"
  1322.   }
  1323.   
  1324. --- 794,807 ----
  1325.   /* Override any gcc2 internal prototype to avoid an error.  */
  1326.   extern char getb67(); getb67();
  1327.   #endif
  1328. ! ; return 0; }
  1329.   EOF
  1330. ! if eval $ac_compile; then
  1331.     rm -rf conftest*
  1332.     {
  1333.   test -n "$verbose" && \
  1334. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "getb67"
  1335. ! /bin/echo "#define" CRAY_STACKSEG_END "getb67" >> confdefs.h
  1336.   DEFS="$DEFS -DCRAY_STACKSEG_END=getb67"
  1337.   }
  1338.   
  1339. ***************
  1340. *** 584,590 ****
  1341.   fi
  1342.   rm -f conftest*
  1343.   
  1344. ! if test -n "$alloca_missing"; then
  1345.     # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  1346.     # that cause trouble.  Some versions do not even contain alloca or
  1347.     # contain a buggy version.  If you still want to use their alloca,
  1348. --- 823,829 ----
  1349.   fi
  1350.   rm -f conftest*
  1351.   
  1352. ! if test -n "$ac_alloca_missing"; then
  1353.     # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  1354.     # that cause trouble.  Some versions do not even contain alloca or
  1355.     # contain a buggy version.  If you still want to use their alloca,
  1356. ***************
  1357. *** 593,612 ****
  1358.     
  1359.   {
  1360.   test -n "$verbose" && \
  1361. ! echo "    defining C_ALLOCA"
  1362. ! echo "#define" C_ALLOCA 1 >> confdefs.h
  1363.   DEFS="$DEFS -DC_ALLOCA=1"
  1364.   }
  1365.   
  1366.   
  1367. !   echo 'checking stack direction for C alloca'
  1368. !   echo checking whether cross-compiling
  1369.   # If we cannot run a trivial program, we must be cross compiling.
  1370. ! cat > conftest.c <<EOF
  1371.   #include "confdefs.h"
  1372.   main(){exit(0);}
  1373.   EOF
  1374. ! eval $compile
  1375.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1376.     :
  1377.   else
  1378. --- 832,851 ----
  1379.     
  1380.   {
  1381.   test -n "$verbose" && \
  1382. ! /bin/echo "    defining C_ALLOCA"
  1383. ! /bin/echo "#define" C_ALLOCA "1" >> confdefs.h
  1384.   DEFS="$DEFS -DC_ALLOCA=1"
  1385.   }
  1386.   
  1387.   
  1388. !   test -n "$silent" || /bin/echo "checking stack direction for C alloca"
  1389. !   test -n "$silent" || /bin/echo "checking whether cross-compiling"
  1390.   # If we cannot run a trivial program, we must be cross compiling.
  1391. ! cat > conftest.${ac_ext} <<EOF
  1392.   #include "confdefs.h"
  1393.   main(){exit(0);}
  1394.   EOF
  1395. ! eval $ac_compile
  1396.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1397.     :
  1398.   else
  1399. ***************
  1400. *** 619,631 ****
  1401.     
  1402.   {
  1403.   test -n "$verbose" && \
  1404. ! echo "    defining" STACK_DIRECTION to be 0
  1405. ! echo "#define" STACK_DIRECTION 0 >> confdefs.h
  1406.   DEFS="$DEFS -DSTACK_DIRECTION=0"
  1407.   }
  1408.   
  1409.   else
  1410. ! cat > conftest.c <<EOF
  1411.   #include "confdefs.h"
  1412.   find_stack_direction ()
  1413.   {
  1414. --- 858,870 ----
  1415.     
  1416.   {
  1417.   test -n "$verbose" && \
  1418. ! /bin/echo "    defining" STACK_DIRECTION to be "0"
  1419. ! /bin/echo "#define" STACK_DIRECTION "0" >> confdefs.h
  1420.   DEFS="$DEFS -DSTACK_DIRECTION=0"
  1421.   }
  1422.   
  1423.   else
  1424. ! cat > conftest.${ac_ext} <<EOF
  1425.   #include "confdefs.h"
  1426.   find_stack_direction ()
  1427.   {
  1428. ***************
  1429. *** 644,656 ****
  1430.     exit (find_stack_direction() < 0);
  1431.   }
  1432.   EOF
  1433. ! eval $compile
  1434.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1435.     
  1436.   {
  1437.   test -n "$verbose" && \
  1438. ! echo "    defining" STACK_DIRECTION to be 1
  1439. ! echo "#define" STACK_DIRECTION 1 >> confdefs.h
  1440.   DEFS="$DEFS -DSTACK_DIRECTION=1"
  1441.   }
  1442.   
  1443. --- 883,895 ----
  1444.     exit (find_stack_direction() < 0);
  1445.   }
  1446.   EOF
  1447. ! eval $ac_compile
  1448.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1449.     
  1450.   {
  1451.   test -n "$verbose" && \
  1452. ! /bin/echo "    defining" STACK_DIRECTION to be "1"
  1453. ! /bin/echo "#define" STACK_DIRECTION "1" >> confdefs.h
  1454.   DEFS="$DEFS -DSTACK_DIRECTION=1"
  1455.   }
  1456.   
  1457. ***************
  1458. *** 659,666 ****
  1459.     
  1460.   {
  1461.   test -n "$verbose" && \
  1462. ! echo "    defining" STACK_DIRECTION to be -1
  1463. ! echo "#define" STACK_DIRECTION -1 >> confdefs.h
  1464.   DEFS="$DEFS -DSTACK_DIRECTION=-1"
  1465.   }
  1466.   
  1467. --- 898,905 ----
  1468.     
  1469.   {
  1470.   test -n "$verbose" && \
  1471. ! /bin/echo "    defining" STACK_DIRECTION to be "-1"
  1472. ! /bin/echo "#define" STACK_DIRECTION "-1" >> confdefs.h
  1473.   DEFS="$DEFS -DSTACK_DIRECTION=-1"
  1474.   }
  1475.   
  1476. ***************
  1477. *** 672,698 ****
  1478.     ;;
  1479.   esac
  1480.   
  1481. ! # Set default prefixes.
  1482.   if test -n "$prefix"; then
  1483. !   test -z "$exec_prefix" && exec_prefix='${prefix}'
  1484. !   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1485.   fi
  1486.   if test -n "$exec_prefix"; then
  1487. !   prsub="$prsub
  1488.   s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  1489.   fi
  1490.   # Quote sed substitution magic chars in DEFS.
  1491.   cat >conftest.def <<EOF
  1492.   $DEFS
  1493.   EOF
  1494. ! escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1495. ! DEFS=`sed "$escape_ampersand_and_backslash" <conftest.def`
  1496.   rm -f conftest.def
  1497.   # Substitute for predefined variables.
  1498.   
  1499. ! trap 'rm -f config.status; exit 1' 1 3 15
  1500. ! echo creating config.status
  1501. ! rm -f config.status
  1502.   cat > config.status <<EOF
  1503.   #!/bin/sh
  1504.   # Generated automatically by configure.
  1505. --- 911,951 ----
  1506.     ;;
  1507.   esac
  1508.   
  1509. ! # The preferred way to propogate these variables is regular @ substitutions.
  1510.   if test -n "$prefix"; then
  1511. !   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1512. ! else
  1513. !   prefix=/usr/local
  1514.   fi
  1515.   if test -n "$exec_prefix"; then
  1516. !   ac_prsub="$ac_prsub
  1517.   s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  1518. + else
  1519. +   exec_prefix='${prefix}' # Let make expand it.
  1520. + fi
  1521. + # Any assignment to VPATH causes Sun make to only execute
  1522. + # the first set of double-colon rules, so remove it if not needed.
  1523. + # If there is a colon in the path, we need to keep it.
  1524. + if test "x$srcdir" = x.; then
  1525. +   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  1526.   fi
  1527.   # Quote sed substitution magic chars in DEFS.
  1528.   cat >conftest.def <<EOF
  1529.   $DEFS
  1530.   EOF
  1531. ! ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1532. ! DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  1533.   rm -f conftest.def
  1534.   # Substitute for predefined variables.
  1535.   
  1536. ! trap 'rm -f config.status; exit 1' 1 2 15
  1537. ! /bin/echo creating config.status
  1538. ! # Some systems, like AmigaDOS, won't allow you to remove a script that is
  1539. ! # being executed, so just move it out of the way instead.
  1540. ! if test -f config.status; then mv config.status config.status.old; else true; fi
  1541.   cat > config.status <<EOF
  1542.   #!/bin/sh
  1543.   # Generated automatically by configure.
  1544. ***************
  1545. *** 702,718 ****
  1546.   #
  1547.   # $0 $configure_args
  1548.   
  1549. ! for arg
  1550.   do
  1551. !   case "\$arg" in
  1552. !     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1553. !     echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args
  1554. !     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args ;;
  1555. !     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  1556.     esac
  1557.   done
  1558.   
  1559. ! trap 'rm -f Makefile; exit 1' 1 3 15
  1560.   LN_S='$LN_S'
  1561.   YACC='$YACC'
  1562.   CC='$CC'
  1563. --- 955,977 ----
  1564.   #
  1565.   # $0 $configure_args
  1566.   
  1567. ! ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  1568. ! for ac_option
  1569.   do
  1570. !   case "\$ac_option" in
  1571. !   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1572. !     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1573. !     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1574. !   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1575. !     /bin/echo "config.status generated by autoconf version 1.11"
  1576. !     exit 0 ;;
  1577. !   -help | --help | --hel | --he | --h)
  1578. !     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  1579. !   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  1580.     esac
  1581.   done
  1582.   
  1583. ! trap 'rm -f Makefile; exit 1' 1 2 15
  1584.   LN_S='$LN_S'
  1585.   YACC='$YACC'
  1586.   CC='$CC'
  1587. ***************
  1588. *** 724,757 ****
  1589.   ALLOCA='$ALLOCA'
  1590.   LIBS='$LIBS'
  1591.   srcdir='$srcdir'
  1592. ! DEFS='$DEFS'
  1593.   prefix='$prefix'
  1594.   exec_prefix='$exec_prefix'
  1595. ! prsub='$prsub'
  1596.   extrasub='$extrasub'
  1597.   EOF
  1598.   cat >> config.status <<\EOF
  1599.   
  1600. ! top_srcdir=$srcdir
  1601.   
  1602.   CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1603. ! for file in .. ${CONFIG_FILES}; do if test "x$file" != x..; then
  1604. !   srcdir=$top_srcdir
  1605.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1606. !   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  1607. !   if test "$dir" != "$file"; then
  1608. !     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  1609. !     test ! -d "$dir" && mkdir "$dir"
  1610.     fi
  1611. !   echo creating "$file"
  1612. !   rm -f "$file"
  1613. !   comment_str="Generated automatically from `echo $file|sed 's|.*/||'`.in by configure."
  1614. !   case "$file" in
  1615. !     *.c | *.h | *.C | *.cc | *.m )  echo "/* $comment_str */" > "$file" ;;
  1616. !     * )          echo "# $comment_str"     > "$file" ;;
  1617.     esac
  1618.     sed -e "
  1619. ! $prsub
  1620.   $extrasub
  1621.   s%@LN_S@%$LN_S%g
  1622.   s%@YACC@%$YACC%g
  1623. --- 983,1034 ----
  1624.   ALLOCA='$ALLOCA'
  1625.   LIBS='$LIBS'
  1626.   srcdir='$srcdir'
  1627. ! top_srcdir='$top_srcdir'
  1628.   prefix='$prefix'
  1629.   exec_prefix='$exec_prefix'
  1630. ! DEFS='$DEFS'
  1631. ! ac_prsub='$ac_prsub'
  1632. ! ac_vpsub='$ac_vpsub'
  1633.   extrasub='$extrasub'
  1634.   EOF
  1635.   cat >> config.status <<\EOF
  1636.   
  1637. ! ac_given_srcdir=$srcdir
  1638.   
  1639.   CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1640. ! for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1641.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1642. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1643. !   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  1644. !     # The file is in a subdirectory.
  1645. !     test ! -d "$ac_dir" && mkdir "$ac_dir"
  1646. !     ac_dir_suffix="/$ac_dir"
  1647. !   else
  1648. !     ac_dir_suffix=
  1649.     fi
  1650. !   # A "../" for each directory in $ac_dir_suffix.
  1651. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1652. !   case "$ac_given_srcdir" in
  1653. !   .)  srcdir=.
  1654. !       if test -z "$ac_dir_suffix"; then top_srcdir=.
  1655. !       else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
  1656. !   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1657. !   *) # Relative path.
  1658. !     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1659. !     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1660. !   esac
  1661. !   /bin/echo creating "$ac_file"
  1662. !   rm -f "$ac_file"
  1663. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  1664. !   case "$ac_file" in
  1665. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  1666. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  1667.     esac
  1668.     sed -e "
  1669. ! $ac_prsub
  1670. ! $ac_vpsub
  1671.   $extrasub
  1672.   s%@LN_S@%$LN_S%g
  1673.   s%@YACC@%$YACC%g
  1674. ***************
  1675. *** 764,776 ****
  1676.   s%@ALLOCA@%$ALLOCA%g
  1677.   s%@LIBS@%$LIBS%g
  1678.   s%@srcdir@%$srcdir%g
  1679.   s%@DEFS@%$DEFS%
  1680. ! " $top_srcdir/${file}.in >> $file
  1681.   fi; done
  1682.   
  1683.   
  1684.   exit 0
  1685.   EOF
  1686.   chmod +x config.status
  1687. ! ${CONFIG_SHELL-/bin/sh} config.status
  1688.   
  1689. --- 1041,1057 ----
  1690.   s%@ALLOCA@%$ALLOCA%g
  1691.   s%@LIBS@%$LIBS%g
  1692.   s%@srcdir@%$srcdir%g
  1693. + s%@top_srcdir@%$top_srcdir%g
  1694. + s%@prefix@%$prefix%g
  1695. + s%@exec_prefix@%$exec_prefix%g
  1696.   s%@DEFS@%$DEFS%
  1697. ! " $ac_given_srcdir/${ac_file}.in >> $ac_file
  1698.   fi; done
  1699.   
  1700.   
  1701.   exit 0
  1702.   EOF
  1703.   chmod +x config.status
  1704. ! # Some shells look in PATH for config.status without the "./".
  1705. ! test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} ./config.status
  1706.   
  1707.