home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 6 / FreshFish_September1994.bin / bbs / gnu / texinfo-3.1-diffs.lha / GNU / src / diffs / texinfo-3.1.diffs
Encoding:
Text File  |  1994-09-07  |  71.6 KB  |  2,460 lines

  1. diff -rc --new-file texinfo-3.1/INSTALL /gnu/src/amiga/texinfo-3.1/INSTALL
  2. *** texinfo-3.1/INSTALL    Wed Dec  9 01:32:49 1992
  3. --- /gnu/src/amiga/texinfo-3.1/INSTALL    Thu Feb 24 16:14:50 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 texinfo-3.1/INTRODUCTION /gnu/src/amiga/texinfo-3.1/INTRODUCTION
  24. *** texinfo-3.1/INTRODUCTION    Tue May 11 22:27:18 1993
  25. --- /gnu/src/amiga/texinfo-3.1/INTRODUCTION    Thu Feb 24 16:14:42 1994
  26. ***************
  27. *** 91,97 ****
  28.       `make install' in this distribution.)
  29.   
  30.     * Move the `texinfo.tex' file to an appropriate directory; the current
  31. !     directory will do.  (`/usr/local/lib/tex/inputs' might be a good place.
  32.       See ``Preparing to Use TeX'' in the Texinfo manual, for more
  33.       information.)
  34.   
  35. --- 91,97 ----
  36.       `make install' in this distribution.)
  37.   
  38.     * Move the `texinfo.tex' file to an appropriate directory; the current
  39. !     directory will do.  (`/gnu/lib/tex/inputs' might be a good place.
  40.       See ``Preparing to Use TeX'' in the Texinfo manual, for more
  41.       information.)
  42.   
  43. diff -rc --new-file texinfo-3.1/Makefile.in /gnu/src/amiga/texinfo-3.1/Makefile.in
  44. *** texinfo-3.1/Makefile.in    Sun May 23 10:43:09 1993
  45. --- /gnu/src/amiga/texinfo-3.1/Makefile.in    Sun Jul 10 10:33:20 1994
  46. ***************
  47. *** 41,50 ****
  48.   
  49.   SHELL = /bin/sh
  50.   
  51. ! CFLAGS = -g
  52. ! LDFLAGS = -g
  53.   
  54. ! prefix = /usr/local
  55.   exec_prefix = $(prefix)
  56.   bindir = $(exec_prefix)/bin
  57.   # Prefix for each installed program, normally empty or `g'.
  58. --- 41,50 ----
  59.   
  60.   SHELL = /bin/sh
  61.   
  62. ! CFLAGS = -O2
  63. ! LDFLAGS =
  64.   
  65. ! prefix = /gnu
  66.   exec_prefix = $(prefix)
  67.   bindir = $(exec_prefix)/bin
  68.   # Prefix for each installed program, normally empty or `g'.
  69. ***************
  70. *** 79,85 ****
  71.   all: sub-all texi.info
  72.   
  73.   install: all installdirs
  74. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  75.       d=$(srcdir); test -f ./texi.info && d=.; \
  76.       cd $$d; for f in texi.info* ; do $(INSTALL_DATA) $$f $(infodir)/$$f; done
  77.   
  78. --- 79,85 ----
  79.   all: sub-all texi.info
  80.   
  81.   install: all installdirs
  82. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  83.       d=$(srcdir); test -f ./texi.info && d=.; \
  84.       cd $$d; for f in texi.info* ; do $(INSTALL_DATA) $$f $(infodir)/$$f; done
  85.   
  86. ***************
  87. *** 87,93 ****
  88.       -sh $(srcdir)/util/mkinstalldirs $(bindir) $(datadir) $(libdir) $(infodir) $(mandir)
  89.   
  90.   uninstall:
  91. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  92.       rm -f $(infodir)/texi.info*
  93.   
  94.   Makefile: Makefile.in config.status
  95. --- 87,93 ----
  96.       -sh $(srcdir)/util/mkinstalldirs $(bindir) $(datadir) $(libdir) $(infodir) $(mandir)
  97.   
  98.   uninstall:
  99. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  100.       rm -f $(infodir)/texi.info*
  101.   
  102.   Makefile: Makefile.in config.status
  103. ***************
  104. *** 100,116 ****
  105.       cd $(srcdir); autoconf
  106.   
  107.   sub-all TAGS:
  108. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  109.   
  110.   clean mostlyclean:
  111. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  112.   
  113.   distclean: clean
  114. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  115.       rm -f Makefile config.status
  116.   
  117.   realclean: 
  118. !     for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) realclean; cd ..; done
  119.       rm -f TAGS texi.info* Makefile config.status configure
  120.   
  121.   texi.info:
  122. --- 100,116 ----
  123.       cd $(srcdir); autoconf
  124.   
  125.   sub-all TAGS:
  126. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  127.   
  128.   clean mostlyclean:
  129. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  130.   
  131.   distclean: clean
  132. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) $@; cd ..; done
  133.       rm -f Makefile config.status
  134.   
  135.   realclean: 
  136. !     @for dir in $(SUBDIRS); do echo making $@ in $$dir; cd $$dir; $(MAKE) $(MDEFINES) realclean; cd ..; done
  137.       rm -f TAGS texi.info* Makefile config.status configure
  138.   
  139.   texi.info:
  140. diff -rc --new-file texinfo-3.1/Product-Info /gnu/src/amiga/texinfo-3.1/Product-Info
  141. *** texinfo-3.1/Product-Info    Thu Jan  1 00:00:00 1970
  142. --- /gnu/src/amiga/texinfo-3.1/Product-Info    Tue Jul 12 17:48:10 1994
  143. ***************
  144. *** 0 ****
  145. --- 1,27 ----
  146. + .name
  147. + texinfo
  148. + .fullname
  149. + GNU documentation system
  150. + .type
  151. + Miscellaneous
  152. + .short
  153. + GNU documentation system
  154. + .description
  155. + Texinfo is a documentation system that uses a single source file to
  156. + produce both on-line information and printed output.  This means that
  157. + instead of writing two different documents, one for the on-line help
  158. + or other on-line information and the other for a typeset manual or
  159. + other printed work, you need write only one document.  When the work
  160. + is revised, you need revise only one document.  You can read the
  161. + on-line information, known as an "Info file", with an Info
  162. + documentation-reading program.
  163. + .version
  164. + 3.1
  165. + .author
  166. + Free Software Foundation
  167. + .requirements
  168. + Amiga binaries require ixemul.library.
  169. + .distribution
  170. + GNU Public License
  171. + .described-by
  172. + Fred Fish (fnf@amigalib.com)
  173. diff -rc --new-file texinfo-3.1/configure /gnu/src/amiga/texinfo-3.1/configure
  174. *** texinfo-3.1/configure    Sun May 23 10:29:42 1993
  175. --- /gnu/src/amiga/texinfo-3.1/configure    Tue Apr 26 12:11:25 1994
  176. ***************
  177. *** 1,140 ****
  178.   #!/bin/sh
  179.   # Guess values for system-dependent variables and create Makefiles.
  180. ! # Generated automatically using autoconf.
  181. ! # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  182.   
  183. ! # This program is free software; you can redistribute it and/or modify
  184. ! # it under the terms of the GNU General Public License as published by
  185. ! # the Free Software Foundation; either version 2, or (at your option)
  186.   # any later version.
  187.   
  188. ! # This program is distributed in the hope that it will be useful,
  189. ! # but WITHOUT ANY WARRANTY; without even the implied warranty of
  190. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  191. ! # GNU General Public License for more details.
  192.   
  193.   # You should have received a copy of the GNU General Public License
  194.   # along with this program; if not, write to the Free Software
  195.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  196.   
  197. ! # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  198. ! #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  199. ! # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  200. ! # --with-PACKAGE unless this script has special code to handle it.
  201.   
  202.   
  203. ! for arg
  204.   do
  205. -   # Handle --exec-prefix with a space before the argument.
  206. -   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  207. -   # Handle --host with a space before the argument.
  208. -   elif test x$next_host = xyes; then next_host=
  209. -   # Handle --prefix with a space before the argument.
  210. -   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  211. -   # Handle --srcdir with a space before the argument.
  212. -   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  213. -   else
  214. -     case $arg in
  215. -      # For backward compatibility, also recognize exact --exec_prefix.
  216. -      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  217. -     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  218. -      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  219. -     next_exec_prefix=yes ;;
  220. -      -gas | --gas | --ga | --g) ;;
  221. -      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  222. -      -host | --host | --hos | --ho | --h)
  223. -     next_host=yes ;;
  224. -      -nfp | --nfp | --nf) ;;
  225. -      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  226. -         no_create=1 ;;
  227. -      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  228. -     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  229. -      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  230. -     next_prefix=yes ;;
  231. -      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  232. -     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  233. -      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  234. -     next_srcdir=yes ;;
  235. -      -with-* | --with-*)
  236. -        package=`echo $arg|sed 's/-*with-//'`
  237. -        # Delete all the valid chars; see if any are left.
  238. -        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  239. -          echo "configure: $package: invalid package name" >&2; exit 1
  240. -        fi
  241. -        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  242.   
  243. !      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  244. !        verbose=yes ;;
  245.   
  246. !      *) ;;
  247.       esac
  248. !   fi
  249. ! done
  250.   
  251. ! trap 'rm -f conftest* core; exit 1' 1 3 15
  252.   
  253. ! # Needed for some versions of `tr' so that character classes in `[]' work.
  254. ! if test "${LANG+set}" = "set" ; then
  255. !    LANG=C
  256.   fi
  257.   
  258. ! rm -f conftest*
  259. ! compile='${CC-cc} $CFLAGS $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  260.   
  261.   # A filename unique to this package, relative to the directory that
  262.   # configure is in, which we can look for to find out if srcdir is correct.
  263. ! unique_file=texi.texi
  264.   
  265.   # Find the source files, if location was not specified.
  266.   if test -z "$srcdir"; then
  267. !   srcdirdefaulted=yes
  268.     # Try the directory containing this script, then `..'.
  269. !   prog=$0
  270. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  271. !   test "X$confdir" = "X$prog" && confdir=.
  272. !   srcdir=$confdir
  273. !   if test ! -r $srcdir/$unique_file; then
  274.       srcdir=..
  275.     fi
  276.   fi
  277. ! if test ! -r $srcdir/$unique_file; then
  278. !   if test x$srcdirdefaulted = xyes; then
  279. !     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  280.     else
  281. !     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  282.     fi
  283. -   exit 1
  284.   fi
  285. ! # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  286. ! # But we can't avoid them for `..', to make subdirectories work.
  287. ! case $srcdir in
  288. !   .|/*|~*) ;;
  289. !   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  290. ! esac
  291.   
  292.   if test -z "$CC"; then
  293.     # Extract the first word of `gcc', so it can be a program name with args.
  294. !   set dummy gcc; word=$2
  295. !   echo checking for $word
  296. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  297. !   for dir in $PATH; do
  298. !     test -z "$dir" && dir=.
  299. !     if test -f $dir/$word; then
  300.         CC="gcc"
  301.         break
  302.       fi
  303.     done
  304. !   IFS="$saveifs"
  305.   fi
  306.   test -z "$CC" && CC="cc"
  307. ! test -n "$CC" -a -n "$verbose" && echo "    setting CC to $CC"
  308.   
  309.   # Find out if we are using GNU C, under whatever name.
  310.   cat > conftest.c <<EOF
  311. --- 1,335 ----
  312.   #!/bin/sh
  313.   # Guess values for system-dependent variables and create Makefiles.
  314. ! # Generated automatically using autoconf version 1.9 
  315. ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  316.   
  317. ! # This configure script is free software; you can redistribute it and/or
  318. ! # modify it under the terms of the GNU General Public License as published
  319. ! # by the Free Software Foundation; either version 2, or (at your option)
  320.   # any later version.
  321.   
  322. ! # This script is distributed in the hope that it will be useful, but
  323. ! # WITHOUT ANY WARRANTY; without even the implied warranty of
  324. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  325. ! # Public License for more details.
  326.   
  327.   # You should have received a copy of the GNU General Public License
  328.   # along with this program; if not, write to the Free Software
  329.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  330.   
  331. ! # Save the original args to write them into config.status later.
  332. ! configure_args="$*"
  333.   
  334. + # Only options that might do something get documented.
  335. + ac_usage="Usage: configure [options] [host]
  336. + Options: [defaults in brackets after descriptions]
  337. + --build=BUILD        configure for building on BUILD [BUILD=HOST]
  338. + --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  339. + --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  340. + --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  341. + --help            print this message
  342. + --host=HOST        configure for HOST [guessed]
  343. + --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  344. + --quiet, --silent    do not print \`checking for...' messages
  345. + --srcdir=DIR        find the sources in DIR [configure dir or ..]
  346. + --target=TARGET        configure for TARGET [TARGET=HOST]
  347. + --verbose        print results of checks
  348. + --version        print the version of autoconf that created configure
  349. + --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  350. + --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  351. + --x-includes=DIR    X include files are in DIR
  352. + --x-libraries=DIR    X library files are in DIR"
  353. + # Initialize some variables set by options.
  354. + # The variables have the same names as the options, with
  355. + # dashes changed to underlines.
  356. + build=NONE
  357. + exec_prefix=
  358. + host=NONE
  359. + no_create=
  360. + nonopt=NONE
  361. + norecursion=
  362. + prefix=
  363. + program_prefix=
  364. + program_suffix=
  365. + program_transform_name=
  366. + silent=
  367. + srcdir=
  368. + target=NONE
  369. + verbose=
  370. + x_includes=
  371. + x_libraries=
  372.   
  373. ! ac_prev=
  374. ! for ac_option
  375.   do
  376.   
  377. !   # If the previous option needs an argument, assign it.
  378. !   if test -n "$ac_prev"; then
  379. !     eval "$ac_prev=\$ac_option"
  380. !     ac_prev=
  381. !     continue
  382. !   fi
  383. !   # Accept (but ignore some of) the important Cygnus configure
  384. !   # options, so we can diagnose typos.
  385. !   case "$ac_option" in
  386. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  387. !   *) ac_optarg= ;;
  388. !   esac
  389. !   case "$ac_option" in
  390. !   -build | --build | --buil | --bui | --bu | --b)
  391. !     ac_prev=build ;;
  392. !   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  393. !     build="$ac_optarg" ;;
  394. !   -disable-* | --disable-*)
  395. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  396. !     # Reject names that aren't valid shell variable names.
  397. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  398. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  399. !     fi
  400. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  401. !     eval "enable_${ac_feature}=no" ;;
  402. !   -enable-* | --enable-*)
  403. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  404. !     # Reject names that aren't valid shell variable names.
  405. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  406. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  407. !     fi
  408. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  409. !     case "$ac_option" in
  410. !       *=*) ;;
  411. !       *) ac_optarg=yes ;;
  412. !     esac
  413. !     eval "enable_${ac_feature}='$ac_optarg'" ;;
  414.   
  415. !   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  416. !   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  417. !   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  418. !   | --exec | --exe | --ex)
  419. !     ac_prev=exec_prefix ;;
  420. !   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  421. !   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  422. !   | --exec=* | --exe=* | --ex=*)
  423. !     exec_prefix="$ac_optarg" ;;
  424. !   -gas | --gas | --ga | --g)
  425. !     with_gas=yes ;; # Obsolete; use --with-gas.
  426. !   -help | --help | --hel | --he)
  427. !     cat << EOF
  428. ! $ac_usage
  429. ! EOF
  430. !     exit 0 ;;
  431. !   -host | --host | --hos | --ho)
  432. !     ac_prev=host ;;
  433. !   -host=* | --host=* | --hos=* | --ho=*)
  434. !     host="$ac_optarg" ;;
  435. !   -nfp | --nfp | --nf)
  436. !     with_fp=no ;; # Obsolete; use --without-fp.
  437. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  438. !   | --no-cr | --no-c)
  439. !     no_create=yes ;;
  440. !   -norecursion | --norecursion | --norecursio | --norecursi \
  441. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  442. !     norecursion=yes ;;
  443. !   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  444. !     ac_prev=prefix ;;
  445. !   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  446. !     prefix="$ac_optarg" ;;
  447. !   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  448. !   | --program-pre | --program-pr | --program-p)
  449. !     ac_prev=program_prefix ;;
  450. !   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  451. !   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  452. !     program_prefix="$ac_optarg" ;;
  453. !   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  454. !   | --program-suf | --program-su | --program-s)
  455. !     ac_prev=program_suffix ;;
  456. !   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  457. !   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  458. !     program_suffix="$ac_optarg" ;;
  459. !   -program-transform-name | --program-transform-name \
  460. !   | --program-transform-nam | --program-transform-na \
  461. !   | --program-transform-n | --program-transform- \
  462. !   | --program-transform | --program-transfor \
  463. !   | --program-transfo | --program-transf \
  464. !   | --program-trans | --program-tran \
  465. !   | --progr-tra | --program-tr | --program-t)
  466. !     ac_prev=program_transform_name ;;
  467. !   -program-transform-name=* | --program-transform-name=* \
  468. !   | --program-transform-nam=* | --program-transform-na=* \
  469. !   | --program-transform-n=* | --program-transform-=* \
  470. !   | --program-transform=* | --program-transfor=* \
  471. !   | --program-transfo=* | --program-transf=* \
  472. !   | --program-trans=* | --program-tran=* \
  473. !   | --progr-tra=* | --program-tr=* | --program-t=*)
  474. !     program_transform_name="$ac_optarg" ;;
  475. !   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  476. !   | -silent | --silent | --silen | --sile | --sil)
  477. !     silent=yes ;;
  478. !   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  479. !     ac_prev=srcdir ;;
  480. !   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  481. !     srcdir="$ac_optarg" ;;
  482. !   -target | --target | --targe | --targ | --tar | --ta | --t)
  483. !     ac_prev=target ;;
  484. !   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  485. !     target="$ac_optarg" ;;
  486. !   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  487. !     verbose=yes ;;
  488. !   -version | --version | --versio | --versi | --vers)
  489. !     /bin/echo "configure generated by autoconf version 1.9"
  490. !     exit 0 ;;
  491. !   -with-* | --with-*)
  492. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  493. !     # Reject names that aren't valid shell variable names.
  494. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  495. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  496. !     fi
  497. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  498. !     case "$ac_option" in
  499. !       *=*) ;;
  500. !       *) ac_optarg=yes ;;
  501.       esac
  502. !     eval "with_${ac_package}='$ac_optarg'" ;;
  503. !   -without-* | --without-*)
  504. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  505. !     # Reject names that aren't valid shell variable names.
  506. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  507. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  508. !     fi
  509. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  510. !     eval "with_${ac_package}=no" ;;
  511.   
  512. !   --x) with_x=yes ;; # Obsolete; use --with-x.
  513.   
  514. !   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  515. !   | --x-incl | --x-inc | --x-in | --x-i)
  516. !     ac_prev=x_includes ;;
  517. !   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  518. !   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  519. !     x_includes="$ac_optarg" ;;
  520. !   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  521. !   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  522. !     ac_prev=x_libraries ;;
  523. !   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  524. !   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  525. !     x_libraries="$ac_optarg" ;;
  526. !   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  527. !     ;;
  528. !   *) 
  529. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  530. !       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  531. !     fi
  532. !     if test "x$nonopt" != xNONE; then
  533. !       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  534. !     fi
  535. !     nonopt="$ac_option"
  536. !     ;;
  537. !   esac
  538. ! done
  539. ! if test -n "$ac_prev"; then
  540. !   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  541.   fi
  542.   
  543. ! trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  544. ! trap 'rm -fr confdefs* $ac_clean_files' 0
  545. ! # Save the original args if we used an alternate arg parser.
  546. ! ac_configure_temp="${configure_args-$*}"
  547. ! # Strip out --no-create and --norecursion so they don't pile up.
  548. ! configure_args=
  549. ! for ac_arg in $ac_configure_temp; do
  550. !   case "$ac_arg" in
  551. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  552. !   | --no-cr | --no-c) ;;
  553. !   -norecursion | --norecursion | --norecursio | --norecursi \
  554. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  555. !   *) configure_args="$configure_args $ac_arg" ;;
  556. !   esac
  557. ! done
  558. ! # NLS nuisances.
  559. ! # These must not be set unconditionally because not all systems understand
  560. ! # e.g. LANG=C (notably SCO).
  561. ! if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  562. ! if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  563. ! # confdefs.h avoids OS command line length limits that DEFS can exceed.
  564. ! rm -rf conftest* confdefs.h
  565. ! # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  566. ! /bin/echo > confdefs.h
  567.   
  568.   # A filename unique to this package, relative to the directory that
  569.   # configure is in, which we can look for to find out if srcdir is correct.
  570. ! ac_unique_file=texi.texi
  571.   
  572.   # Find the source files, if location was not specified.
  573.   if test -z "$srcdir"; then
  574. !   ac_srcdir_defaulted=yes
  575.     # Try the directory containing this script, then `..'.
  576. !   ac_prog=$0
  577. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  578. !   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  579. !   srcdir=$ac_confdir
  580. !   if test ! -r $srcdir/$ac_unique_file; then
  581.       srcdir=..
  582.     fi
  583.   fi
  584. ! if test ! -r $srcdir/$ac_unique_file; then
  585. !   if test x$ac_srcdir_defaulted = xyes; then
  586. !     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  587.     else
  588. !     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  589.     fi
  590.   fi
  591. ! ac_ext=c
  592. ! ac_cpp='${CPP} $CFLAGS'
  593. ! ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  594.   
  595.   if test -z "$CC"; then
  596.     # Extract the first word of `gcc', so it can be a program name with args.
  597. !   set ac_dummy gcc; ac_word=$2
  598. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  599. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  600. !   for ac_dir in $PATH; do
  601. !     test -z "$ac_dir" && ac_dir=.
  602. !     if test -f $ac_dir/$ac_word; then
  603.         CC="gcc"
  604.         break
  605.       fi
  606.     done
  607. !   IFS="$ac_save_ifs"
  608.   fi
  609.   test -z "$CC" && CC="cc"
  610. ! test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  611.   
  612.   # Find out if we are using GNU C, under whatever name.
  613.   cat > conftest.c <<EOF
  614. ***************
  615. *** 148,197 ****
  616.   fi
  617.   rm -f conftest*
  618.   
  619. ! echo checking how to run the C preprocessor
  620.   if test -z "$CPP"; then
  621. !   CPP='${CC-cc} -E'
  622. !   cat > conftest.c <<EOF
  623.   #include <stdio.h>
  624.   EOF
  625. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  626. ! if test -z "$err"; then
  627.     :
  628.   else
  629.     CPP=/lib/cpp
  630.   fi
  631.   rm -f conftest*
  632.   fi
  633.   
  634.   if test -n "$GCC"; then
  635. !   echo checking whether -traditional is needed
  636. !   pattern="Autoconf.*'x'"
  637. !   prog='#include <sgtty.h>
  638.   Autoconf TIOCGETP'
  639. !   cat > conftest.c <<EOF
  640. ! $prog
  641.   EOF
  642. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  643. ! if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  644. !   need_trad=1
  645.   fi
  646.   rm -f conftest*
  647.   
  648.   
  649. !   if test -z "$need_trad"; then
  650. !     prog='#include <termio.h>
  651.   Autoconf TCGETA'
  652. !     cat > conftest.c <<EOF
  653. ! $prog
  654. ! EOF
  655. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  656. ! if egrep "$pattern" conftest.out >/dev/null 2>&1; then
  657. !   need_trad=1
  658.   fi
  659.   rm -f conftest*
  660.   
  661.     fi
  662. !   test -n "$need_trad" && CC="$CC -traditional"
  663.   fi
  664.   
  665.   # Make sure to not get the incompatible SysV /etc/install and
  666. --- 343,422 ----
  667.   fi
  668.   rm -f conftest*
  669.   
  670. ! test -n "$silent" || /bin/echo "checking how to run the C preprocessor"
  671.   if test -z "$CPP"; then
  672. !   # This must be in double quotes, not single quotes, because CPP may get
  673. !   # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  674. !   # make.  It must be expanded now.
  675. !   CPP="${CC-cc} -E"
  676. !   cat > conftest.${ac_ext} <<EOF
  677. ! #include "confdefs.h"
  678. ! #include <stdio.h>
  679. ! Syntax Error
  680. ! EOF
  681. ! # Some shells (Coherent) do redirections in the wrong order, so need
  682. ! # the parens.
  683. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  684. ! if test -z "$ac_err"; then
  685. !   :
  686. ! else
  687. !   rm -rf conftest*
  688. !   CPP="${CC-cc} -E -traditional-cpp"
  689. !   cat > conftest.${ac_ext} <<EOF
  690. ! #include "confdefs.h"
  691.   #include <stdio.h>
  692. + Syntax Error
  693.   EOF
  694. ! # Some shells (Coherent) do redirections in the wrong order, so need
  695. ! # the parens.
  696. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  697. ! if test -z "$ac_err"; then
  698.     :
  699.   else
  700. +   rm -rf conftest*
  701.     CPP=/lib/cpp
  702.   fi
  703.   rm -f conftest*
  704.   fi
  705. + rm -f conftest*
  706. + fi
  707. + test -n "$verbose" && /bin/echo "    setting CPP to $CPP"
  708.   
  709.   if test -n "$GCC"; then
  710. !   test -n "$silent" || /bin/echo "checking whether -traditional is needed"
  711. !   ac_pattern="Autoconf.*'x'"
  712. !   ac_prog='#include <sgtty.h>
  713.   Autoconf TIOCGETP'
  714. !   cat > conftest.${ac_ext} <<EOF
  715. ! #include "confdefs.h"
  716. ! $ac_prog
  717.   EOF
  718. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  719. ! if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  720. !   rm -rf conftest*
  721. !   ac_need_trad=1
  722.   fi
  723.   rm -f conftest*
  724.   
  725.   
  726. !   if test -z "$ac_need_trad"; then
  727. !     ac_prog='#include <termio.h>
  728.   Autoconf TCGETA'
  729. !     cat > conftest.${ac_ext} <<EOF
  730. ! #include "confdefs.h"
  731. ! $ac_prog
  732. ! EOF
  733. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  734. ! if egrep "$ac_pattern" conftest.out >/dev/null 2>&1; then
  735. !   rm -rf conftest*
  736. !   ac_need_trad=1
  737.   fi
  738.   rm -f conftest*
  739.   
  740.     fi
  741. !   test -n "$ac_need_trad" && CC="$CC -traditional"
  742.   fi
  743.   
  744.   # Make sure to not get the incompatible SysV /etc/install and
  745. ***************
  746. *** 199,264 ****
  747.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  748.   # or the AFS install, which mishandles nonexistent args, or
  749.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  750. ! # `staff'.  On most BSDish systems install is in /usr/bin, not /usr/ucb
  751. ! # anyway.  Sigh.
  752.   if test "z${INSTALL}" = "z" ; then
  753. !   echo checking for install
  754. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  755. !   for dir in $PATH; do
  756. !     test -z "$dir" && dir=.
  757. !     case $dir in
  758. !     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  759.       *)
  760. !       if test -f $dir/installbsd; then
  761. !     INSTALL="$dir/installbsd -c" # OSF1
  762. !     INSTALL_PROGRAM='$(INSTALL)'
  763. !     INSTALL_DATA='$(INSTALL) -m 644'
  764. !     break
  765. !       fi
  766. !       if test -f $dir/install; then
  767. !     if grep dspmsg $dir/install >/dev/null 2>&1; then
  768. !       : # AIX
  769. !     else
  770. !       INSTALL="$dir/install -c"
  771. !       INSTALL_PROGRAM='$(INSTALL)'
  772. !       INSTALL_DATA='$(INSTALL) -m 644'
  773. !       break
  774.       fi
  775. !       fi
  776.         ;;
  777.       esac
  778.     done
  779. !   IFS="$saveifs"
  780.   fi
  781. ! INSTALL=${INSTALL-cp}
  782. ! INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  783. ! INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  784.   
  785.   if test -z "$RANLIB"; then
  786.     # Extract the first word of `ranlib', so it can be a program name with args.
  787. !   set dummy ranlib; word=$2
  788. !   echo checking for $word
  789. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  790. !   for dir in $PATH; do
  791. !     test -z "$dir" && dir=.
  792. !     if test -f $dir/$word; then
  793.         RANLIB="ranlib"
  794.         break
  795.       fi
  796.     done
  797. !   IFS="$saveifs"
  798.   fi
  799.   test -z "$RANLIB" && RANLIB=":"
  800. ! test -n "$RANLIB" -a -n "$verbose" && echo "    setting RANLIB to $RANLIB"
  801.   
  802. ! echo checking for POSIXized ISC
  803. ! if test -d /etc/conf/kconfig.d &&
  804. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  805.   then
  806.     ISC=1 # If later tests want to check for ISC.
  807. !   {
  808.   test -n "$verbose" && \
  809. ! echo '    defining' _POSIX_SOURCE
  810.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  811.   }
  812.   
  813. --- 424,512 ----
  814.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  815.   # or the AFS install, which mishandles nonexistent args, or
  816.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  817. ! # `staff', or /sbin/install on IRIX which has incompatible command-line
  818. ! # syntax.  Sigh.
  819. ! #
  820. ! #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  821. ! #     anyway.
  822. ! # This turns out not to be true, so the mere pathname isn't an indication
  823. ! # of whether the program works.  What we really need is a set of tests for
  824. ! # the install program to see if it actually works in all the required ways.
  825. ! #
  826. ! # Avoid using ./install, which might have been erroneously created
  827. ! # by make from ./install.sh.
  828.   if test "z${INSTALL}" = "z" ; then
  829. !   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  830. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  831. !   for ac_dir in $PATH; do
  832. !     case "$ac_dir" in
  833. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  834.       *)
  835. !       # OSF1 and SCO ODT 3.0 have their own names for install.
  836. !       for ac_prog in installbsd scoinst install; do
  837. !         if test -f $ac_dir/$ac_prog; then
  838. !       if test $ac_prog = install &&
  839. !             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  840. !         # AIX install.  It has an incompatible calling convention.
  841. !         # OSF/1 installbsd also uses dspmsg, but is usable.
  842. !         :
  843. !       else
  844. !         INSTALL="$ac_dir/$ac_prog -c"
  845. !         INSTALL_PROGRAM='${INSTALL}'
  846. !         INSTALL_DATA='${INSTALL} -m 644'
  847. !         break 2
  848. !       fi
  849.       fi
  850. !       done
  851.         ;;
  852.       esac
  853.     done
  854. !   IFS="$ac_save_ifs"
  855. ! fi
  856. ! if test -z "$INSTALL"; then
  857. !   if test -f ${srcdir}/install.sh; then
  858. !     # As a last resort, use the slow shell script.
  859. !     INSTALL='@top_srcdir@/install.sh -c'
  860. !   else
  861. !     /bin/echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  862. !     INSTALL=cp
  863. !   fi
  864.   fi
  865. ! test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  866. ! # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  867. ! # It thinks the first close brace ends the variable substitution.
  868. ! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  869. ! test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  870. ! test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  871. ! test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  872.   
  873.   if test -z "$RANLIB"; then
  874.     # Extract the first word of `ranlib', so it can be a program name with args.
  875. !   set ac_dummy ranlib; ac_word=$2
  876. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  877. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  878. !   for ac_dir in $PATH; do
  879. !     test -z "$ac_dir" && ac_dir=.
  880. !     if test -f $ac_dir/$ac_word; then
  881.         RANLIB="ranlib"
  882.         break
  883.       fi
  884.     done
  885. !   IFS="$ac_save_ifs"
  886.   fi
  887.   test -z "$RANLIB" && RANLIB=":"
  888. ! test -n "$RANLIB" && test -n "$verbose" && /bin/echo "    setting RANLIB to $RANLIB"
  889.   
  890. ! test -n "$silent" || /bin/echo "checking for POSIXized ISC"
  891. ! if test -d /gnu/etc/conf/kconfig.d &&
  892. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  893.   then
  894.     ISC=1 # If later tests want to check for ISC.
  895. !   
  896. ! {
  897.   test -n "$verbose" && \
  898. ! /bin/echo "    defining _POSIX_SOURCE"
  899. ! /bin/echo "#define" _POSIX_SOURCE "1" >> confdefs.h
  900.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  901.   }
  902.   
  903. ***************
  904. *** 269,307 ****
  905.     fi
  906.   fi
  907.   
  908. ! echo checking for minix/config.h
  909. ! cat > conftest.c <<EOF
  910.   #include <minix/config.h>
  911.   EOF
  912. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  913. ! if test -z "$err"; then
  914.     MINIX=1
  915.   fi
  916.   rm -f conftest*
  917.   
  918.   # The Minix shell can't assign to the same variable on the same line!
  919.   if test -n "$MINIX"; then
  920. !   {
  921.   test -n "$verbose" && \
  922. ! echo '    defining' _POSIX_SOURCE
  923.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  924.   }
  925.   
  926. !   {
  927.   test -n "$verbose" && \
  928. ! echo '    defining' _POSIX_1_SOURCE to be '2'
  929.   DEFS="$DEFS -D_POSIX_1_SOURCE=2"
  930.   }
  931.   
  932. !   {
  933.   test -n "$verbose" && \
  934. ! echo '    defining' _MINIX
  935.   DEFS="$DEFS -D_MINIX=1"
  936.   }
  937.   
  938.   fi
  939.   
  940. ! prog='/* Ultrix mips cc rejects this.  */
  941.   typedef int charset[2]; const charset x;
  942.   /* SunOS 4.1.1 cc rejects this.  */
  943.   char const *const *ccp;
  944. --- 517,566 ----
  945.     fi
  946.   fi
  947.   
  948. ! test -n "$silent" || /bin/echo "checking for minix/config.h"
  949. ! cat > conftest.${ac_ext} <<EOF
  950. ! #include "confdefs.h"
  951.   #include <minix/config.h>
  952.   EOF
  953. ! # Some shells (Coherent) do redirections in the wrong order, so need
  954. ! # the parens.
  955. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  956. ! if test -z "$ac_err"; then
  957. !   rm -rf conftest*
  958.     MINIX=1
  959.   fi
  960.   rm -f conftest*
  961.   
  962.   # The Minix shell can't assign to the same variable on the same line!
  963.   if test -n "$MINIX"; then
  964. !   
  965. ! {
  966.   test -n "$verbose" && \
  967. ! /bin/echo "    defining _POSIX_SOURCE"
  968. ! /bin/echo "#define" _POSIX_SOURCE "1" >> confdefs.h
  969.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  970.   }
  971.   
  972. !   
  973. ! {
  974.   test -n "$verbose" && \
  975. ! /bin/echo "    defining" _POSIX_1_SOURCE to be "2"
  976. ! /bin/echo "#define" _POSIX_1_SOURCE "2" >> confdefs.h
  977.   DEFS="$DEFS -D_POSIX_1_SOURCE=2"
  978.   }
  979.   
  980. !   
  981. ! {
  982.   test -n "$verbose" && \
  983. ! /bin/echo "    defining _MINIX"
  984. ! /bin/echo "#define" _MINIX "1" >> confdefs.h
  985.   DEFS="$DEFS -D_MINIX=1"
  986.   }
  987.   
  988.   fi
  989.   
  990. ! ac_prog='/* Ultrix mips cc rejects this.  */
  991.   typedef int charset[2]; const charset x;
  992.   /* SunOS 4.1.1 cc rejects this.  */
  993.   char const *const *ccp;
  994. ***************
  995. *** 310,316 ****
  996.      It does not let you subtract one const X* pointer from another in an arm
  997.      of an if-expression whose if-part is not a constant expression */
  998.   const char *g = "string";
  999. ! p = &g + (g ? g-g : 0);
  1000.   /* HPUX 7.0 cc rejects these. */
  1001.   ++ccp;
  1002.   p = (char**) ccp;
  1003. --- 569,575 ----
  1004.      It does not let you subtract one const X* pointer from another in an arm
  1005.      of an if-expression whose if-part is not a constant expression */
  1006.   const char *g = "string";
  1007. ! ccp = &g + (g ? g-g : 0);
  1008.   /* HPUX 7.0 cc rejects these. */
  1009.   ++ccp;
  1010.   p = (char**) ccp;
  1011. ***************
  1012. *** 335,374 ****
  1013.        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  1014.     struct s { int j; const int *ap[3]; };
  1015.     struct s *b; b->j = 5;
  1016.   }'
  1017. ! echo checking for working const
  1018. ! cat > conftest.c <<EOF
  1019.   
  1020. ! int main() { exit(0); }
  1021. ! int t() { $prog }
  1022.   EOF
  1023. ! if eval $compile; then
  1024.     :
  1025.   else
  1026. !   {
  1027.   test -n "$verbose" && \
  1028. ! echo '    defining' const to be 'empty'
  1029.   DEFS="$DEFS -Dconst="
  1030.   }
  1031.   
  1032.   fi
  1033.   rm -f conftest*
  1034.   
  1035. ! echo checking for ANSI C header files
  1036. ! cat > conftest.c <<EOF
  1037.   #include <stdlib.h>
  1038.   #include <stdarg.h>
  1039.   #include <string.h>
  1040.   #include <float.h>
  1041.   EOF
  1042. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1043. ! if test -z "$err"; then
  1044.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1045. ! echo '#include <string.h>' > conftest.c
  1046. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  1047.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  1048.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1049. ! cat > conftest.c <<EOF
  1050.   #include <ctype.h>
  1051.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1052.   #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  1053. --- 594,647 ----
  1054.        "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
  1055.     struct s { int j; const int *ap[3]; };
  1056.     struct s *b; b->j = 5;
  1057. + }
  1058. + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
  1059. +   const int foo = 10;
  1060.   }'
  1061. ! test -n "$silent" || /bin/echo "checking for lack of working const"
  1062. ! cat > conftest.${ac_ext} <<EOF
  1063. ! #include "confdefs.h"
  1064.   
  1065. ! int main() { return 0; }
  1066. ! int t() { $ac_prog; return 0; }
  1067.   EOF
  1068. ! if eval $ac_compile; then
  1069.     :
  1070.   else
  1071. !   rm -rf conftest*
  1072. !   
  1073. ! {
  1074.   test -n "$verbose" && \
  1075. ! /bin/echo "    defining" const to be empty
  1076. ! /bin/echo "#define" const "" >> confdefs.h
  1077.   DEFS="$DEFS -Dconst="
  1078.   }
  1079.   
  1080.   fi
  1081.   rm -f conftest*
  1082.   
  1083. ! test -n "$silent" || /bin/echo "checking for ANSI C header files"
  1084. ! cat > conftest.${ac_ext} <<EOF
  1085. ! #include "confdefs.h"
  1086.   #include <stdlib.h>
  1087.   #include <stdarg.h>
  1088.   #include <string.h>
  1089.   #include <float.h>
  1090.   EOF
  1091. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1092. ! # the parens.
  1093. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1094. ! if test -z "$ac_err"; then
  1095. !   rm -rf conftest*
  1096.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1097. ! /bin/echo '#include "confdefs.h"
  1098. ! #include <string.h>' > conftest.${ac_ext}
  1099. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1100.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  1101. +   rm -rf conftest*
  1102.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1103. ! cat > conftest.${ac_ext} <<EOF
  1104. ! #include "confdefs.h"
  1105.   #include <ctype.h>
  1106.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1107.   #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  1108. ***************
  1109. *** 378,508 ****
  1110.   exit (0); }
  1111.   
  1112.   EOF
  1113. ! eval $compile
  1114.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1115. !   {
  1116.   test -n "$verbose" && \
  1117. ! echo '    defining' STDC_HEADERS
  1118.   DEFS="$DEFS -DSTDC_HEADERS=1"
  1119.   }
  1120.   
  1121.   fi
  1122.   rm -f conftest*
  1123.   fi
  1124.   rm -f conftest*
  1125.   
  1126.   fi
  1127.   rm -f conftest*
  1128.   
  1129. ! for hdr in unistd.h termio.h string.h varargs.h sys/time.h sys/fcntl.h sys/ttold.h sys/ptem.h
  1130.   do
  1131. ! trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  1132. ! echo checking for ${hdr}
  1133. ! cat > conftest.c <<EOF
  1134. ! #include <${hdr}>
  1135. ! EOF
  1136. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1137. ! if test -z "$err"; then
  1138. !   {
  1139.   test -n "$verbose" && \
  1140. ! echo '    defining' ${trhdr}
  1141. ! DEFS="$DEFS -D${trhdr}=1"
  1142.   }
  1143.   
  1144.   fi
  1145.   rm -f conftest*
  1146.   done
  1147.   
  1148. ! for func in setvbuf getcwd bzero rindex vfprintf vsprintf
  1149.   do
  1150. ! trfunc=HAVE_`echo $func | tr '[a-z]' '[A-Z]'`
  1151. ! echo checking for ${func}
  1152. ! cat > conftest.c <<EOF
  1153.   #include <ctype.h>
  1154. ! int main() { exit(0); }
  1155.   int t() { 
  1156.   /* The GNU C library defines this for functions which it implements
  1157.       to always fail with ENOSYS.  Some functions are actually named
  1158.       something starting with __ and the normal name is an alias.  */
  1159. ! #if defined (__stub_${func}) || defined (__stub___${func})
  1160.   choke me
  1161.   #else
  1162.   /* Override any gcc2 internal prototype to avoid an error.  */
  1163. ! extern char ${func}(); ${func}();
  1164.   #endif
  1165. !  }
  1166.   EOF
  1167. ! if eval $compile; then
  1168.     {
  1169.   test -n "$verbose" && \
  1170. ! echo '    defining' ${trfunc}
  1171. ! DEFS="$DEFS -D${trfunc}=1"
  1172.   }
  1173.   
  1174.   fi
  1175.   rm -f conftest*
  1176.   done
  1177.   
  1178. ! echo checking for struct tm in time.h
  1179. ! cat > conftest.c <<EOF
  1180.   #include <sys/types.h>
  1181.   #include <time.h>
  1182. ! int main() { exit(0); }
  1183. ! int t() { struct tm *tp; }
  1184.   EOF
  1185. ! if eval $compile; then
  1186.     :
  1187.   else
  1188. !   {
  1189.   test -n "$verbose" && \
  1190. ! echo '    defining' TM_IN_SYS_TIME
  1191.   DEFS="$DEFS -DTM_IN_SYS_TIME=1"
  1192.   }
  1193.   
  1194.   fi
  1195.   rm -f conftest*
  1196.   
  1197. ! cat > conftest.c <<EOF
  1198.   #include <stdio.h>
  1199.   main () {
  1200. !   /* If setvbuf has the reversed format, exit 0. */
  1201. !   if (setvbuf(stdout, _IOLBF, (char *) 0, BUFSIZ) != 0)/* The reversed way.  */
  1202.       exit(1);
  1203.     putc('\r', stdout);
  1204.     exit(0);            /* Non-reversed systems segv here.  */
  1205.   }
  1206.   EOF
  1207. ! eval $compile
  1208.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1209. !   {
  1210.   test -n "$verbose" && \
  1211. ! echo '    defining' SETVBUF_REVERSED
  1212.   DEFS="$DEFS -DSETVBUF_REVERSED=1"
  1213.   }
  1214.   
  1215.   fi
  1216. ! rm -f conftest*
  1217.   rm -f core
  1218.   
  1219.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1220.   # for constant arguments.  Useless!
  1221. ! echo checking for working alloca.h
  1222. ! cat > conftest.c <<EOF
  1223.   #include <alloca.h>
  1224. ! int main() { exit(0); }
  1225. ! int t() { char *p = alloca(2 * sizeof(int)); }
  1226.   EOF
  1227. ! if eval $compile; then
  1228. !   {
  1229.   test -n "$verbose" && \
  1230. ! echo '    defining' HAVE_ALLOCA_H
  1231.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  1232.   }
  1233.   
  1234.   fi
  1235.   rm -f conftest*
  1236.   
  1237. ! decl="#ifdef __GNUC__
  1238.   #define alloca __builtin_alloca
  1239.   #else
  1240.   #if HAVE_ALLOCA_H
  1241. --- 651,830 ----
  1242.   exit (0); }
  1243.   
  1244.   EOF
  1245. ! eval $ac_compile
  1246.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1247. !   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1248. ! /bin/echo '#include "confdefs.h"
  1249. ! #include <stdlib.h>' > conftest.${ac_ext}
  1250. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1251. ! if egrep "free" conftest.out >/dev/null 2>&1; then
  1252. !   rm -rf conftest*
  1253. !   
  1254. ! {
  1255.   test -n "$verbose" && \
  1256. ! /bin/echo "    defining STDC_HEADERS"
  1257. ! /bin/echo "#define" STDC_HEADERS "1" >> confdefs.h
  1258.   DEFS="$DEFS -DSTDC_HEADERS=1"
  1259.   }
  1260.   
  1261.   fi
  1262.   rm -f conftest*
  1263. + fi
  1264. + rm -fr conftest*
  1265.   fi
  1266.   rm -f conftest*
  1267.   
  1268.   fi
  1269.   rm -f conftest*
  1270.   
  1271. ! for ac_hdr in unistd.h termio.h string.h varargs.h sys/time.h sys/fcntl.h sys/ttold.h sys/ptem.h
  1272.   do
  1273. ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  1274. ! test -n "$silent" || /bin/echo "checking for ${ac_hdr}"
  1275. ! cat > conftest.${ac_ext} <<EOF
  1276. ! #include "confdefs.h"
  1277. ! #include <${ac_hdr}>
  1278. ! EOF
  1279. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1280. ! # the parens.
  1281. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1282. ! if test -z "$ac_err"; then
  1283. !   rm -rf conftest*
  1284. !   
  1285. ! {
  1286.   test -n "$verbose" && \
  1287. ! /bin/echo "    defining ${ac_tr_hdr}"
  1288. ! /bin/echo "#define" ${ac_tr_hdr} "1" >> confdefs.h
  1289. ! DEFS="$DEFS -D${ac_tr_hdr}=1"
  1290.   }
  1291.   
  1292.   fi
  1293.   rm -f conftest*
  1294.   done
  1295.   
  1296. ! for ac_func in setvbuf getcwd bzero rindex vfprintf vsprintf
  1297.   do
  1298. ! ac_tr_func=HAVE_`/bin/echo $ac_func | tr '[a-z]' '[A-Z]'`
  1299. ! test -n "$silent" || /bin/echo "checking for ${ac_func}"
  1300. ! cat > conftest.${ac_ext} <<EOF
  1301. ! #include "confdefs.h"
  1302.   #include <ctype.h>
  1303. ! int main() { return 0; }
  1304.   int t() { 
  1305.   /* The GNU C library defines this for functions which it implements
  1306.       to always fail with ENOSYS.  Some functions are actually named
  1307.       something starting with __ and the normal name is an alias.  */
  1308. ! #if defined (__stub_${ac_func}) || defined (__stub___${ac_func})
  1309.   choke me
  1310.   #else
  1311.   /* Override any gcc2 internal prototype to avoid an error.  */
  1312. ! extern char ${ac_func}(); ${ac_func}();
  1313.   #endif
  1314. ! ; return 0; }
  1315.   EOF
  1316. ! if eval $ac_compile; then
  1317. !   rm -rf conftest*
  1318.     {
  1319.   test -n "$verbose" && \
  1320. ! /bin/echo "    defining ${ac_tr_func}"
  1321. ! /bin/echo "#define" ${ac_tr_func} "1" >> confdefs.h
  1322. ! DEFS="$DEFS -D${ac_tr_func}=1"
  1323.   }
  1324.   
  1325.   fi
  1326.   rm -f conftest*
  1327.   done
  1328.   
  1329. ! test -n "$silent" || /bin/echo "checking for struct tm in time.h"
  1330. ! cat > conftest.${ac_ext} <<EOF
  1331. ! #include "confdefs.h"
  1332.   #include <sys/types.h>
  1333.   #include <time.h>
  1334. ! int main() { return 0; }
  1335. ! int t() { struct tm *tp; tp->tm_sec;; return 0; }
  1336.   EOF
  1337. ! if eval $ac_compile; then
  1338.     :
  1339.   else
  1340. !   rm -rf conftest*
  1341. !   
  1342. ! {
  1343.   test -n "$verbose" && \
  1344. ! /bin/echo "    defining TM_IN_SYS_TIME"
  1345. ! /bin/echo "#define" TM_IN_SYS_TIME "1" >> confdefs.h
  1346.   DEFS="$DEFS -DTM_IN_SYS_TIME=1"
  1347.   }
  1348.   
  1349.   fi
  1350.   rm -f conftest*
  1351.   
  1352. ! cat > conftest.${ac_ext} <<EOF
  1353. ! #include "confdefs.h"
  1354.   #include <stdio.h>
  1355. + /* If setvbuf has the reversed format, exit 0. */
  1356.   main () {
  1357. ! #ifdef __amigados__
  1358. !   /* AmigaDOS is a non-reversed system.  Instead of the test program
  1359. !      getting a segfault (no memory protection), it causes enforcer hits
  1360. !      or other nastiness, so don't run the test program, just exit with
  1361. !      status 1 to indicate that it is non-reversed.  -fnf */
  1362. !   exit(1);
  1363. ! #endif
  1364. !   /* This call has the arguments reversed.
  1365. !      A reversed system may check and see that the address of main
  1366. !      is not _IOLBF, _IONBF, or _IOFBF, and return nonzero.  */
  1367. !   if (setvbuf(stdout, _IOLBF, (char *) main, BUFSIZ) != 0)
  1368.       exit(1);
  1369.     putc('\r', stdout);
  1370.     exit(0);            /* Non-reversed systems segv here.  */
  1371.   }
  1372.   EOF
  1373. ! eval $ac_compile
  1374.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1375. !   
  1376. ! {
  1377.   test -n "$verbose" && \
  1378. ! /bin/echo "    defining SETVBUF_REVERSED"
  1379. ! /bin/echo "#define" SETVBUF_REVERSED "1" >> confdefs.h
  1380.   DEFS="$DEFS -DSETVBUF_REVERSED=1"
  1381.   }
  1382.   
  1383.   fi
  1384. ! rm -fr conftest*
  1385.   rm -f core
  1386.   
  1387.   # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
  1388.   # for constant arguments.  Useless!
  1389. ! test -n "$silent" || /bin/echo "checking for working alloca.h"
  1390. ! cat > conftest.${ac_ext} <<EOF
  1391. ! #include "confdefs.h"
  1392.   #include <alloca.h>
  1393. ! int main() { return 0; }
  1394. ! int t() { char *p = alloca(2 * sizeof(int));; return 0; }
  1395.   EOF
  1396. ! if eval $ac_compile; then
  1397. !   rm -rf conftest*
  1398. !   
  1399. ! {
  1400.   test -n "$verbose" && \
  1401. ! /bin/echo "    defining HAVE_ALLOCA_H"
  1402. ! /bin/echo "#define" HAVE_ALLOCA_H "1" >> confdefs.h
  1403.   DEFS="$DEFS -DHAVE_ALLOCA_H=1"
  1404.   }
  1405.   
  1406.   fi
  1407.   rm -f conftest*
  1408.   
  1409. ! ac_decl="#ifdef __GNUC__
  1410.   #define alloca __builtin_alloca
  1411.   #else
  1412.   #if HAVE_ALLOCA_H
  1413. ***************
  1414. *** 516,532 ****
  1415.   #endif
  1416.   #endif
  1417.   "
  1418. ! echo checking for alloca
  1419. ! cat > conftest.c <<EOF
  1420. ! $decl
  1421. ! int main() { exit(0); }
  1422. ! int t() { char *p = (char *) alloca(1); }
  1423. ! EOF
  1424. ! if eval $compile; then
  1425. !   :
  1426.   else
  1427. !   alloca_missing=1
  1428. ! cat > conftest.c <<EOF
  1429.   
  1430.   #if defined(CRAY) && ! defined(CRAY2)
  1431.   winnitude
  1432. --- 838,866 ----
  1433.   #endif
  1434.   #endif
  1435.   "
  1436. ! test -n "$silent" || /bin/echo "checking for alloca"
  1437. ! cat > conftest.${ac_ext} <<EOF
  1438. ! #include "confdefs.h"
  1439. ! $ac_decl
  1440. ! int main() { return 0; }
  1441. ! int t() { char *p = (char *) alloca(1);; return 0; }
  1442. ! EOF
  1443. ! if eval $ac_compile; then
  1444. !   rm -rf conftest*
  1445. !   
  1446. ! {
  1447. ! test -n "$verbose" && \
  1448. ! /bin/echo "    defining HAVE_ALLOCA"
  1449. ! /bin/echo "#define" HAVE_ALLOCA "1" >> confdefs.h
  1450. ! DEFS="$DEFS -DHAVE_ALLOCA=1"
  1451. ! }
  1452.   else
  1453. !   rm -rf conftest*
  1454. !   ac_alloca_missing=1
  1455. ! cat > conftest.${ac_ext} <<EOF
  1456. ! #include "confdefs.h"
  1457.   
  1458.   #if defined(CRAY) && ! defined(CRAY2)
  1459.   winnitude
  1460. ***************
  1461. *** 535,546 ****
  1462.   #endif
  1463.   
  1464.   EOF
  1465. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  1466.   if egrep "winnitude" conftest.out >/dev/null 2>&1; then
  1467. !   echo checking for _getb67
  1468. ! cat > conftest.c <<EOF
  1469.   #include <ctype.h>
  1470. ! int main() { exit(0); }
  1471.   int t() { 
  1472.   /* The GNU C library defines this for functions which it implements
  1473.       to always fail with ENOSYS.  Some functions are actually named
  1474. --- 869,882 ----
  1475.   #endif
  1476.   
  1477.   EOF
  1478. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1479.   if egrep "winnitude" conftest.out >/dev/null 2>&1; then
  1480. !   rm -rf conftest*
  1481. !   test -n "$silent" || /bin/echo "checking for _getb67"
  1482. ! cat > conftest.${ac_ext} <<EOF
  1483. ! #include "confdefs.h"
  1484.   #include <ctype.h>
  1485. ! int main() { return 0; }
  1486.   int t() { 
  1487.   /* The GNU C library defines this for functions which it implements
  1488.       to always fail with ENOSYS.  Some functions are actually named
  1489. ***************
  1490. *** 551,570 ****
  1491.   /* Override any gcc2 internal prototype to avoid an error.  */
  1492.   extern char _getb67(); _getb67();
  1493.   #endif
  1494. !  }
  1495.   EOF
  1496. ! if eval $compile; then
  1497.     {
  1498.   test -n "$verbose" && \
  1499. ! echo '    defining' CRAY_STACKSEG_END to be '_getb67'
  1500.   DEFS="$DEFS -DCRAY_STACKSEG_END=_getb67"
  1501.   }
  1502.   
  1503.   else
  1504. !   echo checking for GETB67
  1505. ! cat > conftest.c <<EOF
  1506.   #include <ctype.h>
  1507. ! int main() { exit(0); }
  1508.   int t() { 
  1509.   /* The GNU C library defines this for functions which it implements
  1510.       to always fail with ENOSYS.  Some functions are actually named
  1511. --- 887,911 ----
  1512.   /* Override any gcc2 internal prototype to avoid an error.  */
  1513.   extern char _getb67(); _getb67();
  1514.   #endif
  1515. ! ; return 0; }
  1516.   EOF
  1517. ! if eval $ac_compile; then
  1518. !   rm -rf conftest*
  1519.     {
  1520.   test -n "$verbose" && \
  1521. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "_getb67"
  1522. ! /bin/echo "#define" CRAY_STACKSEG_END "_getb67" >> confdefs.h
  1523.   DEFS="$DEFS -DCRAY_STACKSEG_END=_getb67"
  1524.   }
  1525.   
  1526.   else
  1527. !   rm -rf conftest*
  1528. !   test -n "$silent" || /bin/echo "checking for GETB67"
  1529. ! cat > conftest.${ac_ext} <<EOF
  1530. ! #include "confdefs.h"
  1531.   #include <ctype.h>
  1532. ! int main() { return 0; }
  1533.   int t() { 
  1534.   /* The GNU C library defines this for functions which it implements
  1535.       to always fail with ENOSYS.  Some functions are actually named
  1536. ***************
  1537. *** 575,594 ****
  1538.   /* Override any gcc2 internal prototype to avoid an error.  */
  1539.   extern char GETB67(); GETB67();
  1540.   #endif
  1541. !  }
  1542.   EOF
  1543. ! if eval $compile; then
  1544.     {
  1545.   test -n "$verbose" && \
  1546. ! echo '    defining' CRAY_STACKSEG_END to be 'GETB67'
  1547.   DEFS="$DEFS -DCRAY_STACKSEG_END=GETB67"
  1548.   }
  1549.   
  1550.   else
  1551. !   echo checking for getb67
  1552. ! cat > conftest.c <<EOF
  1553.   #include <ctype.h>
  1554. ! int main() { exit(0); }
  1555.   int t() { 
  1556.   /* The GNU C library defines this for functions which it implements
  1557.       to always fail with ENOSYS.  Some functions are actually named
  1558. --- 916,940 ----
  1559.   /* Override any gcc2 internal prototype to avoid an error.  */
  1560.   extern char GETB67(); GETB67();
  1561.   #endif
  1562. ! ; return 0; }
  1563.   EOF
  1564. ! if eval $ac_compile; then
  1565. !   rm -rf conftest*
  1566.     {
  1567.   test -n "$verbose" && \
  1568. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "GETB67"
  1569. ! /bin/echo "#define" CRAY_STACKSEG_END "GETB67" >> confdefs.h
  1570.   DEFS="$DEFS -DCRAY_STACKSEG_END=GETB67"
  1571.   }
  1572.   
  1573.   else
  1574. !   rm -rf conftest*
  1575. !   test -n "$silent" || /bin/echo "checking for getb67"
  1576. ! cat > conftest.${ac_ext} <<EOF
  1577. ! #include "confdefs.h"
  1578.   #include <ctype.h>
  1579. ! int main() { return 0; }
  1580.   int t() { 
  1581.   /* The GNU C library defines this for functions which it implements
  1582.       to always fail with ENOSYS.  Some functions are actually named
  1583. ***************
  1584. *** 599,613 ****
  1585.   /* Override any gcc2 internal prototype to avoid an error.  */
  1586.   extern char getb67(); getb67();
  1587.   #endif
  1588. !  }
  1589.   EOF
  1590. ! if eval $compile; then
  1591.     {
  1592.   test -n "$verbose" && \
  1593. ! echo '    defining' CRAY_STACKSEG_END to be 'getb67'
  1594.   DEFS="$DEFS -DCRAY_STACKSEG_END=getb67"
  1595.   }
  1596.   
  1597.   fi
  1598.   rm -f conftest*
  1599.   
  1600. --- 945,962 ----
  1601.   /* Override any gcc2 internal prototype to avoid an error.  */
  1602.   extern char getb67(); getb67();
  1603.   #endif
  1604. ! ; return 0; }
  1605.   EOF
  1606. ! if eval $ac_compile; then
  1607. !   rm -rf conftest*
  1608.     {
  1609.   test -n "$verbose" && \
  1610. ! /bin/echo "    defining" CRAY_STACKSEG_END to be "getb67"
  1611. ! /bin/echo "#define" CRAY_STACKSEG_END "getb67" >> confdefs.h
  1612.   DEFS="$DEFS -DCRAY_STACKSEG_END=getb67"
  1613.   }
  1614.   
  1615.   fi
  1616.   rm -f conftest*
  1617.   
  1618. ***************
  1619. *** 617,622 ****
  1620. --- 966,972 ----
  1621.   fi
  1622.   rm -f conftest*
  1623.   
  1624.   fi
  1625.   rm -f conftest*
  1626.   
  1627. ***************
  1628. *** 624,660 ****
  1629.   fi
  1630.   rm -f conftest*
  1631.   
  1632. ! if test -n "$alloca_missing"; then
  1633.     # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  1634.     # that cause trouble.  Some versions do not even contain alloca or
  1635.     # contain a buggy version.  If you still want to use their alloca,
  1636.     # use ar to extract alloca.o from them instead of compiling alloca.c.
  1637.     ALLOCA=alloca.o
  1638.   
  1639. !   echo 'checking stack direction for C alloca'
  1640. !   echo checking whether cross-compiling
  1641.   # If we cannot run a trivial program, we must be cross compiling.
  1642. ! cat > conftest.c <<EOF
  1643.   main(){exit(0);}
  1644.   EOF
  1645. ! eval $compile
  1646.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1647.     :
  1648.   else
  1649.     cross_compiling=1
  1650.   fi
  1651. ! rm -f conftest*
  1652.   
  1653.   if test -n "$cross_compiling"
  1654.   then
  1655. !   {
  1656.   test -n "$verbose" && \
  1657. ! echo '    defining' STACK_DIRECTION to be '0'
  1658.   DEFS="$DEFS -DSTACK_DIRECTION=0"
  1659.   }
  1660.   
  1661.   else
  1662. ! cat > conftest.c <<EOF
  1663.   find_stack_direction ()
  1664.   {
  1665.     static char *addr = 0;
  1666. --- 974,1022 ----
  1667.   fi
  1668.   rm -f conftest*
  1669.   
  1670. ! if test -n "$ac_alloca_missing"; then
  1671.     # The SVR3 libPW and SVR4 libucb both contain incompatible functions
  1672.     # that cause trouble.  Some versions do not even contain alloca or
  1673.     # contain a buggy version.  If you still want to use their alloca,
  1674.     # use ar to extract alloca.o from them instead of compiling alloca.c.
  1675.     ALLOCA=alloca.o
  1676. +   
  1677. + {
  1678. + test -n "$verbose" && \
  1679. + /bin/echo "    defining C_ALLOCA"
  1680. + /bin/echo "#define" C_ALLOCA "1" >> confdefs.h
  1681. + DEFS="$DEFS -DC_ALLOCA=1"
  1682. + }
  1683.   
  1684. !   test -n "$silent" || /bin/echo "checking stack direction for C alloca"
  1685. !   test -n "$silent" || /bin/echo "checking whether cross-compiling"
  1686.   # If we cannot run a trivial program, we must be cross compiling.
  1687. ! cat > conftest.${ac_ext} <<EOF
  1688. ! #include "confdefs.h"
  1689.   main(){exit(0);}
  1690.   EOF
  1691. ! eval $ac_compile
  1692.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1693.     :
  1694.   else
  1695.     cross_compiling=1
  1696.   fi
  1697. ! rm -fr conftest*
  1698.   
  1699.   if test -n "$cross_compiling"
  1700.   then
  1701. !   
  1702. ! {
  1703.   test -n "$verbose" && \
  1704. ! /bin/echo "    defining" STACK_DIRECTION to be "0"
  1705. ! /bin/echo "#define" STACK_DIRECTION "0" >> confdefs.h
  1706.   DEFS="$DEFS -DSTACK_DIRECTION=0"
  1707.   }
  1708.   
  1709.   else
  1710. ! cat > conftest.${ac_ext} <<EOF
  1711. ! #include "confdefs.h"
  1712.   find_stack_direction ()
  1713.   {
  1714.     static char *addr = 0;
  1715. ***************
  1716. *** 672,714 ****
  1717.     exit (find_stack_direction() < 0);
  1718.   }
  1719.   EOF
  1720. ! eval $compile
  1721.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1722. !   {
  1723.   test -n "$verbose" && \
  1724. ! echo '    defining' STACK_DIRECTION to be '1'
  1725.   DEFS="$DEFS -DSTACK_DIRECTION=1"
  1726.   }
  1727.   
  1728.   else
  1729. !   {
  1730.   test -n "$verbose" && \
  1731. ! echo '    defining' STACK_DIRECTION to be '-1'
  1732.   DEFS="$DEFS -DSTACK_DIRECTION=-1"
  1733.   }
  1734.   
  1735.   fi
  1736.   fi
  1737. ! rm -f conftest*
  1738.   fi
  1739.   
  1740.   TERMLIBS=""
  1741.   for termlib in termcap terminfo curses termlib ; do
  1742. !    LIBS_save="${LIBS}"
  1743.   LIBS="${LIBS} -l${termlib}"
  1744. ! have_lib=""
  1745. ! echo checking for -l${termlib}
  1746. ! cat > conftest.c <<EOF
  1747.   
  1748. ! int main() { exit(0); }
  1749. ! int t() { main(); }
  1750.   EOF
  1751. ! if eval $compile; then
  1752. !   have_lib="1"
  1753.   fi
  1754.   rm -f conftest*
  1755. ! LIBS="${LIBS_save}"
  1756. ! if test -n "${have_lib}"; then
  1757.      :; TERMLIBS="${TERMLIBS} -l${termlib}"
  1758.   else
  1759.      :; 
  1760. --- 1034,1084 ----
  1761.     exit (find_stack_direction() < 0);
  1762.   }
  1763.   EOF
  1764. ! eval $ac_compile
  1765.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1766. !   
  1767. ! {
  1768.   test -n "$verbose" && \
  1769. ! /bin/echo "    defining" STACK_DIRECTION to be "1"
  1770. ! /bin/echo "#define" STACK_DIRECTION "1" >> confdefs.h
  1771.   DEFS="$DEFS -DSTACK_DIRECTION=1"
  1772.   }
  1773.   
  1774.   else
  1775. !   
  1776. ! {
  1777.   test -n "$verbose" && \
  1778. ! /bin/echo "    defining" STACK_DIRECTION to be "-1"
  1779. ! /bin/echo "#define" STACK_DIRECTION "-1" >> confdefs.h
  1780.   DEFS="$DEFS -DSTACK_DIRECTION=-1"
  1781.   }
  1782.   
  1783.   fi
  1784.   fi
  1785. ! rm -fr conftest*
  1786.   fi
  1787.   
  1788.   TERMLIBS=""
  1789.   for termlib in termcap terminfo curses termlib ; do
  1790. !    ac_save_LIBS="${LIBS}"
  1791.   LIBS="${LIBS} -l${termlib}"
  1792. ! ac_have_lib=""
  1793. ! test -n "$silent" || /bin/echo "checking for -l${termlib}"
  1794. ! cat > conftest.${ac_ext} <<EOF
  1795. ! #include "confdefs.h"
  1796.   
  1797. ! int main() { return 0; }
  1798. ! int t() { main();; return 0; }
  1799.   EOF
  1800. ! if eval $ac_compile; then
  1801. !   rm -rf conftest*
  1802. !   ac_have_lib="1"
  1803.   fi
  1804.   rm -f conftest*
  1805. ! LIBS="${ac_save_LIBS}"
  1806. ! if test -n "${ac_have_lib}"; then
  1807.      :; TERMLIBS="${TERMLIBS} -l${termlib}"
  1808.   else
  1809.      :; 
  1810. ***************
  1811. *** 719,737 ****
  1812.      esac
  1813.   done
  1814.   
  1815.   if test -n "$prefix"; then
  1816. !   test -z "$exec_prefix" && exec_prefix='${prefix}'
  1817. !   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1818.   fi
  1819.   if test -n "$exec_prefix"; then
  1820. !   prsub="$prsub
  1821. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  1822. ! exec_prefix\\1=\\2$exec_prefix%"
  1823.   fi
  1824. ! DEFS="`echo \"$DEFS\" | sed 's%[&\\\]%\\\&%g'`"
  1825.   
  1826. ! trap 'rm -f config.status; exit 1' 1 3 15
  1827. ! echo creating config.status
  1828.   rm -f config.status
  1829.   cat > config.status <<EOF
  1830.   #!/bin/sh
  1831. --- 1089,1121 ----
  1832.      esac
  1833.   done
  1834.   
  1835. + # Set default prefixes.
  1836.   if test -n "$prefix"; then
  1837. !   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  1838. !   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1839.   fi
  1840.   if test -n "$exec_prefix"; then
  1841. !   ac_prsub="$ac_prsub
  1842. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  1843.   fi
  1844. ! # Any assignment to VPATH causes Sun make to only execute
  1845. ! # the first set of double-colon rules, so remove it if not needed.
  1846. ! # If there is a colon in the path, we need to keep it.
  1847. ! if test "x$srcdir" = x.; then
  1848. !   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  1849. ! fi
  1850. ! # Quote sed substitution magic chars in DEFS.
  1851. ! cat >conftest.def <<EOF
  1852. ! $DEFS
  1853. ! EOF
  1854. ! ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1855. ! DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  1856. ! rm -f conftest.def
  1857. ! # Substitute for predefined variables.
  1858.   
  1859. ! trap 'rm -f config.status; exit 1' 1 2 15
  1860. ! /bin/echo creating config.status
  1861.   rm -f config.status
  1862.   cat > config.status <<EOF
  1863.   #!/bin/sh
  1864. ***************
  1865. *** 740,757 ****
  1866.   # This directory was configured as follows,
  1867.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1868.   #
  1869. ! # $0 $*
  1870.   
  1871. ! for arg
  1872.   do
  1873. !   case "\$arg" in
  1874. !     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1875. !     exec /bin/sh $0 $* ;;
  1876. !     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  1877.     esac
  1878.   done
  1879.   
  1880. ! trap 'rm -f Makefile libtxi/Makefile makeinfo/Makefile info/Makefile util/Makefile; exit 1' 1 3 15
  1881.   CC='$CC'
  1882.   CPP='$CPP'
  1883.   INSTALL='$INSTALL'
  1884. --- 1124,1148 ----
  1885.   # This directory was configured as follows,
  1886.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1887.   #
  1888. ! # $0 $configure_args
  1889.   
  1890. ! ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  1891. ! for ac_option
  1892.   do
  1893. !   case "\$ac_option" in
  1894. !   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1895. !     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1896. !     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1897. !   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1898. !     /bin/echo "config.status generated by autoconf version 1.9"
  1899. !     exit 0 ;;
  1900. !   -help | --help | --hel | --he | --h)
  1901. !     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  1902. !   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  1903.     esac
  1904.   done
  1905.   
  1906. ! trap 'rm -f Makefile libtxi/Makefile makeinfo/Makefile info/Makefile util/Makefile; exit 1' 1 2 15
  1907.   CC='$CC'
  1908.   CPP='$CPP'
  1909.   INSTALL='$INSTALL'
  1910. ***************
  1911. *** 762,792 ****
  1912.   TERMLIBS='$TERMLIBS'
  1913.   LIBS='$LIBS'
  1914.   srcdir='$srcdir'
  1915. ! DEFS='$DEFS'
  1916.   prefix='$prefix'
  1917.   exec_prefix='$exec_prefix'
  1918. ! prsub='$prsub'
  1919.   EOF
  1920.   cat >> config.status <<\EOF
  1921.   
  1922. ! top_srcdir=$srcdir
  1923. ! # Allow make-time overrides of the generated file list.
  1924. ! test -n "$gen_files" || gen_files="Makefile libtxi/Makefile makeinfo/Makefile info/Makefile util/Makefile"
  1925.   
  1926. ! for file in .. $gen_files; do if [ "x$file" != "x.." ]; then
  1927. !   srcdir=$top_srcdir
  1928.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1929. !   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  1930. !   if test "$dir" != "$file"; then
  1931. !     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  1932. !     test ! -d $dir && mkdir $dir
  1933.     fi
  1934. !   echo creating $file
  1935. !   rm -f $file
  1936. !   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  1937.     sed -e "
  1938. ! $prsub
  1939.   s%@CC@%$CC%g
  1940.   s%@CPP@%$CPP%g
  1941.   s%@INSTALL@%$INSTALL%g
  1942. --- 1153,1203 ----
  1943.   TERMLIBS='$TERMLIBS'
  1944.   LIBS='$LIBS'
  1945.   srcdir='$srcdir'
  1946. ! top_srcdir='$top_srcdir'
  1947.   prefix='$prefix'
  1948.   exec_prefix='$exec_prefix'
  1949. ! DEFS='$DEFS'
  1950. ! ac_prsub='$ac_prsub'
  1951. ! ac_vpsub='$ac_vpsub'
  1952. ! extrasub='$extrasub'
  1953.   EOF
  1954.   cat >> config.status <<\EOF
  1955.   
  1956. ! ac_given_srcdir=$srcdir
  1957.   
  1958. ! CONFIG_FILES=${CONFIG_FILES-"Makefile libtxi/Makefile makeinfo/Makefile info/Makefile util/Makefile"}
  1959. ! for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1960.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1961. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1962. !   if test "$ac_dir" != "$ac_file"; then
  1963. !     # The file is in a subdirectory.
  1964. !     test ! -d "$ac_dir" && mkdir "$ac_dir"
  1965. !     ac_dir_suffix="/$ac_dir"
  1966. !   else
  1967. !     ac_dir_suffix=
  1968.     fi
  1969. !   # A "../" for each directory in $ac_dir_suffix.
  1970. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1971. !   case "$ac_given_srcdir" in
  1972. !   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  1973. !   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1974. !   *) # Relative path.
  1975. !     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1976. !     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  1977. !   esac
  1978. !   /bin/echo creating "$ac_file"
  1979. !   rm -f "$ac_file"
  1980. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  1981. !   case "$ac_file" in
  1982. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  1983. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  1984. !   esac
  1985.     sed -e "
  1986. ! $ac_prsub
  1987. ! $ac_vpsub
  1988. ! $extrasub
  1989.   s%@CC@%$CC%g
  1990.   s%@CPP@%$CPP%g
  1991.   s%@INSTALL@%$INSTALL%g
  1992. ***************
  1993. *** 797,808 ****
  1994.   s%@TERMLIBS@%$TERMLIBS%g
  1995.   s%@LIBS@%$LIBS%g
  1996.   s%@srcdir@%$srcdir%g
  1997.   s%@DEFS@%$DEFS%
  1998. ! " $top_srcdir/${file}.in >> $file
  1999.   fi; done
  2000.   
  2001.   exit 0
  2002.   EOF
  2003.   chmod +x config.status
  2004. ! test -n "$no_create" || ./config.status
  2005.   
  2006. --- 1208,1223 ----
  2007.   s%@TERMLIBS@%$TERMLIBS%g
  2008.   s%@LIBS@%$LIBS%g
  2009.   s%@srcdir@%$srcdir%g
  2010. + s%@top_srcdir@%$top_srcdir%g
  2011. + s%@prefix@%$prefix%g
  2012. + s%@exec_prefix@%$exec_prefix%g
  2013.   s%@DEFS@%$DEFS%
  2014. ! " $ac_given_srcdir/${ac_file}.in >> $ac_file
  2015.   fi; done
  2016.   
  2017.   exit 0
  2018.   EOF
  2019.   chmod +x config.status
  2020. ! test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  2021.   
  2022. diff -rc --new-file texinfo-3.1/info/Makefile.in /gnu/src/amiga/texinfo-3.1/info/Makefile.in
  2023. *** texinfo-3.1/info/Makefile.in    Sun May 23 03:05:14 1993
  2024. --- /gnu/src/amiga/texinfo-3.1/info/Makefile.in    Thu Feb 24 16:20:21 1994
  2025. ***************
  2026. *** 45,54 ****
  2027.   
  2028.   SHELL = /bin/sh
  2029.   
  2030. ! CFLAGS = -g
  2031. ! LDFLAGS = -g
  2032.   
  2033. ! prefix = /usr/local
  2034.   exec_prefix = $(prefix)
  2035.   bindir = $(exec_prefix)/bin
  2036.   # Prefix for each installed program, normally empty or `g'.
  2037. --- 45,54 ----
  2038.   
  2039.   SHELL = /bin/sh
  2040.   
  2041. ! CFLAGS = -O2
  2042. ! LDFLAGS =
  2043.   
  2044. ! prefix = /gnu
  2045.   exec_prefix = $(prefix)
  2046.   bindir = $(exec_prefix)/bin
  2047.   # Prefix for each installed program, normally empty or `g'.
  2048. diff -rc --new-file texinfo-3.1/info/filesys.h /gnu/src/amiga/texinfo-3.1/info/filesys.h
  2049. *** texinfo-3.1/info/filesys.h    Tue May 11 20:18:38 1993
  2050. --- /gnu/src/amiga/texinfo-3.1/info/filesys.h    Thu Feb 24 16:20:05 1994
  2051. ***************
  2052. *** 70,76 ****
  2053.   
  2054.   /* The default value of INFOPATH. */
  2055.   #if !defined (DEFAULT_INFOPATH)
  2056. ! #  define DEFAULT_INFOPATH "/usr/gnu/info:/local/gnu/info:/usr/gnu/lib/info:/usr/gnu/lib/emacs/info:/usr/local/gnu/info:/usr/local/gnu/lib/info:/usr/local/gnu/lib/emacs/info:/usr/local/lib/info:/usr/local/lib/emacs/info:/usr/local/emacs/info:."
  2057.   #endif /* !DEFAULT_INFOPATH */
  2058.   
  2059.   #if !defined (S_ISREG) && defined (S_IFREG)
  2060. --- 70,76 ----
  2061.   
  2062.   /* The default value of INFOPATH. */
  2063.   #if !defined (DEFAULT_INFOPATH)
  2064. ! #  define DEFAULT_INFOPATH "/gnu/info:/local/info:/gnu/lib/emacs/info:/local/lib/emacs/info:."
  2065.   #endif /* !DEFAULT_INFOPATH */
  2066.   
  2067.   #if !defined (S_ISREG) && defined (S_IFREG)
  2068. diff -rc --new-file texinfo-3.1/info/nodemenu.c /gnu/src/amiga/texinfo-3.1/info/nodemenu.c
  2069. *** texinfo-3.1/info/nodemenu.c    Mon Feb  1 18:47:48 1993
  2070. --- /gnu/src/amiga/texinfo-3.1/info/nodemenu.c    Thu Feb 24 16:17:54 1994
  2071. ***************
  2072. *** 39,47 ****
  2073.   * Menu:
  2074.     (File)Node                        Lines   Size   Containing File
  2075.     ----------                        -----   ----   ---------------
  2076. ! * (emacs)Buffers::                  48      2230   /usr/gnu/info/emacs/emacs-1
  2077. ! * (autoconf)Writing configure.in::  123     58789  /usr/gnu/info/autoconf/autoconf-1
  2078. ! * (dir)Top::                40      589    /usr/gnu/info/dir
  2079.   */
  2080.   static char *
  2081.   format_node_info (node)
  2082. --- 39,47 ----
  2083.   * Menu:
  2084.     (File)Node                        Lines   Size   Containing File
  2085.     ----------                        -----   ----   ---------------
  2086. ! * (emacs)Buffers::                  48      2230   /gnu/info/emacs/emacs-1
  2087. ! * (autoconf)Writing configure.in::  123     58789  /gnu/info/autoconf/autoconf-1
  2088. ! * (dir)Top::                40      589    /gnu/info/dir
  2089.   */
  2090.   static char *
  2091.   format_node_info (node)
  2092. diff -rc --new-file texinfo-3.1/info/nodes.h /gnu/src/amiga/texinfo-3.1/info/nodes.h
  2093. *** texinfo-3.1/info/nodes.h    Mon Feb  8 22:48:16 1993
  2094. --- /gnu/src/amiga/texinfo-3.1/info/nodes.h    Thu Feb 24 16:21:24 1994
  2095. ***************
  2096. *** 38,44 ****
  2097.      be passed to free ().  Note that NODE->parent is non-null if this
  2098.      node's file is a subfile.  In that case, NODE->parent is the logical
  2099.      name of the file containing this node.  Both names are given as full
  2100. !    paths, so you might have: node->filename = "/usr/gnu/info/emacs-1",
  2101.      with node->parent = "/usr/gnu/info/emacs". */
  2102.   typedef struct {
  2103.     char *filename;        /* The physical file containing this node. */
  2104. --- 38,44 ----
  2105.      be passed to free ().  Note that NODE->parent is non-null if this
  2106.      node's file is a subfile.  In that case, NODE->parent is the logical
  2107.      name of the file containing this node.  Both names are given as full
  2108. !    paths, so you might have: node->filename = "/gnu/info/emacs-1",
  2109.      with node->parent = "/usr/gnu/info/emacs". */
  2110.   typedef struct {
  2111.     char *filename;        /* The physical file containing this node. */
  2112. diff -rc --new-file texinfo-3.1/info/tilde.c /gnu/src/amiga/texinfo-3.1/info/tilde.c
  2113. *** texinfo-3.1/info/tilde.c    Mon Feb  1 18:40:20 1993
  2114. --- /gnu/src/amiga/texinfo-3.1/info/tilde.c    Thu Feb 24 17:17:55 1994
  2115. ***************
  2116. *** 225,231 ****
  2117.            the password database. */
  2118.         if (!temp_home)
  2119.           {
  2120. !           extern struct passwd *getpwuid ();
  2121.             struct passwd *entry;
  2122.   
  2123.             entry = getpwuid (getuid ());
  2124. --- 225,231 ----
  2125.            the password database. */
  2126.         if (!temp_home)
  2127.           {
  2128. !           /* extern struct passwd *getpwuid (); */
  2129.             struct passwd *entry;
  2130.   
  2131.             entry = getpwuid (getuid ());
  2132. diff -rc --new-file texinfo-3.1/libtxi/Makefile.in /gnu/src/amiga/texinfo-3.1/libtxi/Makefile.in
  2133. *** texinfo-3.1/libtxi/Makefile.in    Fri May 21 18:31:58 1993
  2134. --- /gnu/src/amiga/texinfo-3.1/libtxi/Makefile.in    Thu Feb 24 16:17:16 1994
  2135. ***************
  2136. *** 42,51 ****
  2137.   
  2138.   SHELL = /bin/sh
  2139.   
  2140. ! CFLAGS = -g
  2141. ! LDFLAGS = -g
  2142.   
  2143. ! prefix = /usr/local
  2144.   exec_prefix = $(prefix)
  2145.   bindir = $(exec_prefix)/bin
  2146.   # Prefix for each installed program, normally empty or `g'.
  2147. --- 42,51 ----
  2148.   
  2149.   SHELL = /bin/sh
  2150.   
  2151. ! CFLAGS = -O2
  2152. ! LDFLAGS =
  2153.   
  2154. ! prefix = /gnu
  2155.   exec_prefix = $(prefix)
  2156.   bindir = $(exec_prefix)/bin
  2157.   # Prefix for each installed program, normally empty or `g'.
  2158. diff -rc --new-file texinfo-3.1/makeinfo/Makefile.in /gnu/src/amiga/texinfo-3.1/makeinfo/Makefile.in
  2159. *** texinfo-3.1/makeinfo/Makefile.in    Fri May 21 18:30:18 1993
  2160. --- /gnu/src/amiga/texinfo-3.1/makeinfo/Makefile.in    Thu Feb 24 16:20:34 1994
  2161. ***************
  2162. *** 39,48 ****
  2163.   
  2164.   SHELL = /bin/sh
  2165.   
  2166. ! CFLAGS = -g
  2167. ! LDFLAGS = -g
  2168.   
  2169. ! prefix = /usr/local
  2170.   exec_prefix = $(prefix)
  2171.   bindir = $(exec_prefix)/bin
  2172.   # Prefix for each installed program, normally empty or `g'.
  2173. --- 39,48 ----
  2174.   
  2175.   SHELL = /bin/sh
  2176.   
  2177. ! CFLAGS = -O2
  2178. ! LDFLAGS =
  2179.   
  2180. ! prefix = /gnu
  2181.   exec_prefix = $(prefix)
  2182.   bindir = $(exec_prefix)/bin
  2183.   # Prefix for each installed program, normally empty or `g'.
  2184. diff -rc --new-file texinfo-3.1/texi.texi /gnu/src/amiga/texinfo-3.1/texi.texi
  2185. *** texinfo-3.1/texi.texi    Fri May 21 20:56:56 1993
  2186. --- /gnu/src/amiga/texinfo-3.1/texi.texi    Thu Feb 24 16:16:17 1994
  2187. ***************
  2188. *** 821,831 ****
  2189.   info}.)@refill
  2190.   
  2191.   @c !!! dir file may be located in one of many places:
  2192. ! @c     /usr/local/emacs/info            mentioned in info.c DEFAULT_INFOPATH
  2193. ! @c     /usr/local/lib/emacs/info        mentioned in info.c DEFAULT_INFOPATH
  2194. ! @c     /usr/gnu/info                    mentioned in info.c DEFAULT_INFOPATH
  2195. ! @c     /usr/local/info
  2196. ! @c     /usr/local/lib/info 
  2197.   The @file{dir} file in the @file{info} directory serves as the
  2198.   departure point for the whole Info system.  From it, you can reach the
  2199.   `Top' nodes of each of the documents in a complete Info system.@refill
  2200. --- 821,828 ----
  2201.   info}.)@refill
  2202.   
  2203.   @c !!! dir file may be located in one of many places:
  2204. ! @c     /gnu/lib/emacs/info        mentioned in info.c DEFAULT_INFOPATH
  2205. ! @c     /gnu/lib/info              mentioned in info.c DEFAULT_INFOPATH
  2206.   The @file{dir} file in the @file{info} directory serves as the
  2207.   departure point for the whole Info system.  From it, you can reach the
  2208.   `Top' nodes of each of the documents in a complete Info system.@refill
  2209. ***************
  2210. *** 6408,6414 ****
  2211.   
  2212.   @example
  2213.   The @@file@{.el@} files are in 
  2214. ! the @@file@{/usr/local/emacs/lisp@} directory.
  2215.   @end example
  2216.   
  2217.   @noindent
  2218. --- 6405,6411 ----
  2219.   
  2220.   @example
  2221.   The @@file@{.el@} files are in 
  2222. ! the @@file@{/gnu/emacs/lisp@} directory.
  2223.   @end example
  2224.   
  2225.   @noindent
  2226. ***************
  2227. *** 6416,6422 ****
  2228.   
  2229.   @quotation
  2230.   The @file{.el} files are in 
  2231. ! the @file{/usr/local/emacs/lisp} directory.
  2232.   @end quotation
  2233.   
  2234.   @node dfn, cite, file, Indicating
  2235. --- 6413,6419 ----
  2236.   
  2237.   @quotation
  2238.   The @file{.el} files are in 
  2239. ! the @file{/gnu/emacs/lisp} directory.
  2240.   @end quotation
  2241.   
  2242.   @node dfn, cite, file, Indicating
  2243. ***************
  2244. *** 7227,7233 ****
  2245.   @@example
  2246.   @@cartouche
  2247.   % pwd
  2248. ! /usr/local/lib/emacs/info
  2249.   @@end cartouche
  2250.   @@end example
  2251.   @end group
  2252. --- 7224,7230 ----
  2253.   @@example
  2254.   @@cartouche
  2255.   % pwd
  2256. ! /gnu/lib/emacs/info
  2257.   @@end cartouche
  2258.   @@end example
  2259.   @end group
  2260. ***************
  2261. *** 7244,7250 ****
  2262.   @group
  2263.   @cartouche
  2264.   % pwd
  2265. ! /usr/local/lib/emacs/info
  2266.   @end cartouche
  2267.   @end group
  2268.   @end example
  2269. --- 7241,7247 ----
  2270.   @group
  2271.   @cartouche
  2272.   % pwd
  2273. ! /gnu/lib/emacs/info
  2274.   @end cartouche
  2275.   @end group
  2276.   @end example
  2277. ***************
  2278. *** 12132,12138 ****
  2279.   variable as follows:@refill
  2280.   
  2281.   @smallexample
  2282. ! setenv INFOPATH .:~bob/manuals:/usr/local/emacs/info
  2283.   @end smallexample
  2284.   
  2285.   @item
  2286. --- 12129,12135 ----
  2287.   variable as follows:@refill
  2288.   
  2289.   @smallexample
  2290. ! setenv INFOPATH .:~bob/manuals:/gnu/emacs/info
  2291.   @end smallexample
  2292.   
  2293.   @item
  2294. ***************
  2295. *** 12140,12146 ****
  2296.   writing:@refill
  2297.   
  2298.   @smallexample
  2299. ! INFOPATH=.:~bob/manuals:/usr/local/emacs/info
  2300.   export INFOPATH
  2301.   @end smallexample
  2302.   @end itemize
  2303. --- 12137,12143 ----
  2304.   writing:@refill
  2305.   
  2306.   @smallexample
  2307. ! INFOPATH=.:~bob/manuals:/gnu/emacs/info
  2308.   export INFOPATH
  2309.   @end smallexample
  2310.   @end itemize
  2311. ***************
  2312. *** 12148,12154 ****
  2313.   @noindent
  2314.   Either form would cause Info to look first in the current directory,
  2315.   indicated by the @samp{.}, then in the @file{~bob/manuals} directory,
  2316. ! and finally in the @file{/usr/local/emacs/info} directory (which is
  2317.   a common location for the standard Info directory).@refill
  2318.   
  2319.   @c ================ Appendix starts here ================
  2320. --- 12145,12151 ----
  2321.   @noindent
  2322.   Either form would cause Info to look first in the current directory,
  2323.   indicated by the @samp{.}, then in the @file{~bob/manuals} directory,
  2324. ! and finally in the @file{/gnu/emacs/info} directory (which is
  2325.   a common location for the standard Info directory).@refill
  2326.   
  2327.   @c ================ Appendix starts here ================
  2328. diff -rc --new-file texinfo-3.1/util/Makefile.in /gnu/src/amiga/texinfo-3.1/util/Makefile.in
  2329. *** texinfo-3.1/util/Makefile.in    Sun May 23 00:01:53 1993
  2330. --- /gnu/src/amiga/texinfo-3.1/util/Makefile.in    Thu Feb 24 16:20:45 1994
  2331. ***************
  2332. *** 38,47 ****
  2333.   
  2334.   SHELL = /bin/sh
  2335.   
  2336. ! CFLAGS = -g
  2337. ! LDFLAGS = -g
  2338.   
  2339. ! prefix = /usr/local
  2340.   exec_prefix = $(prefix)
  2341.   bindir = $(exec_prefix)/bin
  2342.   # Prefix for each installed program, normally empty or `g'.
  2343. --- 38,47 ----
  2344.   
  2345.   SHELL = /bin/sh
  2346.   
  2347. ! CFLAGS = -O2
  2348. ! LDFLAGS =
  2349.   
  2350. ! prefix = /gnu
  2351.   exec_prefix = $(prefix)
  2352.   bindir = $(exec_prefix)/bin
  2353.   # Prefix for each installed program, normally empty or `g'.
  2354. diff -rc --new-file texinfo-3.1/util/fixfonts /gnu/src/amiga/texinfo-3.1/util/fixfonts
  2355. *** texinfo-3.1/util/fixfonts    Fri Apr 16 10:35:07 1993
  2356. --- /gnu/src/amiga/texinfo-3.1/util/fixfonts    Thu Feb 24 16:21:13 1994
  2357. ***************
  2358. *** 5,11 ****
  2359.   # Don't override definition of prefix and/or libdir if they are
  2360.   # already defined in the environment. 
  2361.   if test "z${prefix}" = "z" ; then
  2362. !   prefix=/usr/local
  2363.   else
  2364.     # prefix may contain references to other variables, thanks to make.
  2365.     eval prefix=\""${prefix}"\"
  2366. --- 5,11 ----
  2367.   # Don't override definition of prefix and/or libdir if they are
  2368.   # already defined in the environment. 
  2369.   if test "z${prefix}" = "z" ; then
  2370. !   prefix=/local
  2371.   else
  2372.     # prefix may contain references to other variables, thanks to make.
  2373.     eval prefix=\""${prefix}"\"
  2374. diff -rc --new-file texinfo-3.1/util/texindex.c /gnu/src/amiga/texinfo-3.1/util/texindex.c
  2375. *** texinfo-3.1/util/texindex.c    Fri Dec 11 16:19:49 1992
  2376. --- /gnu/src/amiga/texinfo-3.1/util/texindex.c    Thu Feb 24 17:20:13 1994
  2377. ***************
  2378. *** 187,193 ****
  2379.   
  2380.   #define MAX_IN_CORE_SORT 500000
  2381.   
  2382. ! void
  2383.   main (argc, argv)
  2384.        int argc;
  2385.        char **argv;
  2386. --- 187,193 ----
  2387.   
  2388.   #define MAX_IN_CORE_SORT 500000
  2389.   
  2390. ! int
  2391.   main (argc, argv)
  2392.        int argc;
  2393.        char **argv;
  2394.