home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / gzip-1.2.4.diffs < prev    next >
Text File  |  1995-01-21  |  66KB  |  2,291 lines

  1. diff -rc --new-file gzip-1.2.4/INSTALL /gnu/src/amiga/gzip-1.2.4/INSTALL
  2. *** gzip-1.2.4/INSTALL    Thu Aug 19 10:35:42 1993
  3. --- /gnu/src/amiga/gzip-1.2.4/INSTALL    Wed Feb 23 18:33:24 1994
  4. ***************
  5. *** 35,42 ****
  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 an
  10. ! installation prefix other than /usr/local by giving `configure' the option
  11.   `--prefix=PATH'.  Alternately, you can do so by consistently giving a value
  12.   for the `prefix' variable when you run `make', e.g.,
  13.       make prefix=/usr/gnu
  14. --- 35,42 ----
  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 an
  19. ! installation prefix other than /gnu by giving `configure' the option
  20.   `--prefix=PATH'.  Alternately, you can do so by consistently giving a value
  21.   for the `prefix' variable when you run `make', e.g.,
  22.       make prefix=/usr/gnu
  23. ***************
  24. *** 270,273 ****
  25.   
  26.   - On HPUX, configure can't find a correct install. Use:
  27.   
  28. !    INSTALL=/usr/local/bin/bsdinst ./configure
  29. --- 270,273 ----
  30.   
  31.   - On HPUX, configure can't find a correct install. Use:
  32.   
  33. !    INSTALL=/gnu/bin/bsdinst ./configure
  34. diff -rc --new-file gzip-1.2.4/Makefile.in /gnu/src/amiga/gzip-1.2.4/Makefile.in
  35. *** gzip-1.2.4/Makefile.in    Tue Aug 17 17:12:40 1993
  36. --- /gnu/src/amiga/gzip-1.2.4/Makefile.in    Sat Dec 24 15:19:11 1994
  37. ***************
  38. *** 87,93 ****
  39.   O=.o
  40.   # For OS/2 or MSDOS, use: O=.obj
  41.   
  42. ! prefix = /usr/local
  43.   exec_prefix = $(prefix)
  44.   
  45.   bindir = $(exec_prefix)/bin
  46. --- 87,93 ----
  47.   O=.o
  48.   # For OS/2 or MSDOS, use: O=.obj
  49.   
  50. ! prefix = /gnu
  51.   exec_prefix = $(prefix)
  52.   
  53.   bindir = $(exec_prefix)/bin
  54. ***************
  55. *** 159,165 ****
  56.   
  57.   #.PHONY: default all force test check
  58.   
  59. ! default:  gzip$X
  60.   all:    gzip$X $(G)zdiff $(G)zgrep $(G)zmore $(G)znew $(G)zforce gzexe
  61.   force:
  62.   
  63. --- 159,165 ----
  64.   
  65.   #.PHONY: default all force test check
  66.   
  67. ! default:  all
  68.   all:    gzip$X $(G)zdiff $(G)zgrep $(G)zmore $(G)znew $(G)zforce gzexe
  69.   force:
  70.   
  71. diff -rc --new-file gzip-1.2.4/Product-Info /gnu/src/amiga/gzip-1.2.4/Product-Info
  72. *** gzip-1.2.4/Product-Info    Thu Jan  1 00:00:00 1970
  73. --- /gnu/src/amiga/gzip-1.2.4/Product-Info    Tue Jul 12 17:26:21 1994
  74. ***************
  75. *** 0 ****
  76. --- 1,95 ----
  77. + .name
  78. + gzip
  79. + .fullname
  80. + GNU compressing/decompressing programs
  81. + .type
  82. + Miscellaneous
  83. + .short
  84. + GNU compressing/decompressing programs
  85. + .description
  86. + Gzip reduces the size of the named files using Lempel-Ziv coding
  87. + (LZ77).  Whenever possible, each file is replaced by one with the
  88. + extension .gz, while keeping the same ownership modes, access and
  89. + modification times.  (The default extension is -gz for VMS, z for
  90. + MSDOS, OS/2 FAT, Windows NT FAT and Atari.) If no files are specified,
  91. + or if a file name is "-", the standard input is compressed to the
  92. + standard output.  Gzip will only attempt to compress regular files.
  93. + In particular, it will ignore symbolic links.
  94. + If the compressed file name is too long for its file system, gzip
  95. + truncates it.  Gzip attempts to truncate only the parts of the file
  96. + name longer than 3 characters.  (A part is delimited by dots.) If the
  97. + name consists of small parts only, the longest parts are truncated.
  98. + For example, if file names are limited to 14 characters,
  99. + gzip.msdos.exe is compressed to gzi.msd.exe.gz.  Names are not
  100. + truncated on systems which do not have a limit on file name length.
  101. + By default, gzip keeps the original file name and timestamp in the
  102. + compressed file. These are used when decompressing the file with the
  103. + -N option.  This is useful when the compressed file name was truncated
  104. + or when the time stamp was not preserved after a file transfer.
  105. + Compressed files can be restored to their original form using gzip -d
  106. + or gunzip or zcat. If the original name saved in the compressed file
  107. + is not suitable for its file system, a new name is constructed from
  108. + the original one to make it legal.
  109. + gunzip takes a list of files on its command line and replaces each
  110. + file whose name ends with .gz, -gz, .z, -z, _z or .Z and which begins
  111. + with the correct magic number with an uncompressed file without the
  112. + original extension.  gunzip also recognizes the special extensions
  113. + ".tgz" and ".taz" as shorthands for .tar.gz and .tar.Z respectively.
  114. + When compressing, gzip uses the .tgz extension if necessary instead of
  115. + truncating a file with a .tar extension.
  116. + gunzip can currently decompress files created by gzip, zip, compress,
  117. + compress -H or pack. The detection of the input format is automatic.
  118. + When using the first two formats, gunzip checks a 32 bit CRC. For
  119. + pack, gunzip checks the uncompressed length. The standard compress
  120. + format was not designed to allow consistency checks.  However gunzip
  121. + is sometimes able to detect a bad .Z file. If you get an error when
  122. + uncompressing a .Z file, do not assume that the .Z file is correct
  123. + simply because the standard uncompress does not complain.  This
  124. + generally means that the standard uncompress does not check its input,
  125. + and happily generates garbage output.  The SCO compress -H format (lzh
  126. + compression method) does not include a CRC but also allows some
  127. + consistency checks.
  128. + Files created by zip can be uncompressed by gzip only if they have a
  129. + single member compressed with the 'deflation' method. This feature is
  130. + only intended to help conversion of tar.zip files to the tar.gz
  131. + format. To extract zip files with several members, use unzip instead
  132. + of gunzip.
  133. + zcat is identical to gunzip -c. (On some systems, zcat may be
  134. + installed as gzcat to preserve the original link to compress.) zcat
  135. + uncompresses either a list of files on the command line or its
  136. + standard input and writes the uncompressed data on standard output.
  137. + zcat will uncompress files that have the correct magic number whether
  138. + they have a .gz suffix or not.
  139. + Gzip uses the Lempel-Ziv algorithm used in zip and PKZIP.  The amount
  140. + of compression obtained depends on the size of the input and the
  141. + distribution of common substrings.  Typically, text such as source
  142. + code or English is reduced by 60-70%.  Compression is generally much
  143. + better than that achieved by LZW (as used in compress), Huffman coding
  144. + (as used in pack), or adaptive Huffman coding (compact).
  145. + Compression is always performed, even if the compressed file is
  146. + slightly larger than the original. The worst case expansion is a few
  147. + bytes for the gzip file header, plus 5 bytes every 32K block, or an
  148. + expansion ratio of 0.015% for large files. Note that the actual number
  149. + of used disk blocks almost never increases.  gzip preserves the mode,
  150. + ownership and timestamps of files when compressing or decompressing.
  151. + .version
  152. + 1.2.4
  153. + .author
  154. + Jean-loup Gailly
  155. + .requirements
  156. + Amiga binary requires ixemul.library.
  157. + .distribution
  158. + GNU Public License
  159. + .email
  160. + jloup@chorus.fr
  161. + .described-by
  162. + Fred Fish (fnf@amigalib.com)
  163. diff -rc --new-file gzip-1.2.4/configure /gnu/src/amiga/gzip-1.2.4/configure
  164. *** gzip-1.2.4/configure    Wed Jul  7 15:02:04 1993
  165. --- /gnu/src/amiga/gzip-1.2.4/configure    Mon Apr 25 20:45:50 1994
  166. ***************
  167. *** 1,142 ****
  168.   #!/bin/sh
  169.   # Guess values for system-dependent variables and create Makefiles.
  170. ! # Generated automatically using autoconf.
  171. ! # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  172.   
  173. ! # This program is free software; you can redistribute it and/or modify
  174. ! # it under the terms of the GNU General Public License as published by
  175. ! # the Free Software Foundation; either version 2, or (at your option)
  176.   # any later version.
  177.   
  178. ! # This program is distributed in the hope that it will be useful,
  179. ! # but WITHOUT ANY WARRANTY; without even the implied warranty of
  180. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  181. ! # GNU General Public License for more details.
  182.   
  183.   # You should have received a copy of the GNU General Public License
  184.   # along with this program; if not, write to the Free Software
  185.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  186.   
  187. ! # Usage: configure [--srcdir=DIR] [--host=HOST] [--gas] [--nfp] [--no-create]
  188. ! #        [--prefix=PREFIX] [--exec-prefix=PREFIX] [--with-PACKAGE] [TARGET]
  189. ! # Ignores all args except --srcdir, --prefix, --exec-prefix, --no-create, and
  190. ! # --with-PACKAGE unless this script has special code to handle it.
  191.   
  192.   
  193. ! for arg
  194.   do
  195. -   # Handle --exec-prefix with a space before the argument.
  196. -   if test x$next_exec_prefix = xyes; then exec_prefix=$arg; next_exec_prefix=
  197. -   # Handle --host with a space before the argument.
  198. -   elif test x$next_host = xyes; then next_host=
  199. -   # Handle --prefix with a space before the argument.
  200. -   elif test x$next_prefix = xyes; then prefix=$arg; next_prefix=
  201. -   # Handle --srcdir with a space before the argument.
  202. -   elif test x$next_srcdir = xyes; then srcdir=$arg; next_srcdir=
  203. -   else
  204. -     case $arg in
  205. -      # For backward compatibility, also recognize exact --exec_prefix.
  206. -      -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* | --exec=* | --exe=* | --ex=* | --e=*)
  207. -     exec_prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  208. -      -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- | --exec | --exe | --ex | --e)
  209. -     next_exec_prefix=yes ;;
  210. -      -gas | --gas | --ga | --g) ;;
  211. -      -host=* | --host=* | --hos=* | --ho=* | --h=*) ;;
  212. -      -host | --host | --hos | --ho | --h)
  213. -     next_host=yes ;;
  214. -      -nfp | --nfp | --nf) ;;
  215. -      -no-create | --no-create | --no-creat | --no-crea | --no-cre | --no-cr | --no-c | --no- | --no)
  216. -         no_create=1 ;;
  217. -      -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  218. -     prefix=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  219. -      -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  220. -     next_prefix=yes ;;
  221. -      -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=* | --s=*)
  222. -     srcdir=`echo $arg | sed 's/[-a-z_]*=//'` ;;
  223. -      -srcdir | --srcdir | --srcdi | --srcd | --src | --sr | --s)
  224. -     next_srcdir=yes ;;
  225. -      -with-* | --with-*)
  226. -        package=`echo $arg|sed 's/-*with-//'`
  227. -        # Delete all the valid chars; see if any are left.
  228. -        if test -n "`echo $package|sed 's/[-a-zA-Z0-9_]*//g'`"; then
  229. -          echo "configure: $package: invalid package name" >&2; exit 1
  230. -        fi
  231. -        eval "with_`echo $package|sed s/-/_/g`=1" ;;
  232.   
  233. !      -v | -verbose | --verbose | --verbos | --verbo | --verb | --ver | --ve | --v)
  234. !        verbose=yes ;;
  235.   
  236. !      *) ;;
  237.       esac
  238. !   fi
  239. ! done
  240.   
  241. ! trap 'rm -f conftest* core; exit 1' 1 3 15
  242.   
  243. ! # Needed for some versions of `tr' so that character classes in `[]' work.
  244. ! if test "${LANG+set}" = "set" ; then
  245. !    LANG=C
  246. !    LC_ALL=C
  247. !    export LANG LC_ALL
  248.   fi
  249.   
  250. ! rm -f conftest*
  251. ! compile='${CC-cc} $CFLAGS $DEFS conftest.c -o conftest $LIBS >/dev/null 2>&1'
  252.   
  253.   # A filename unique to this package, relative to the directory that
  254.   # configure is in, which we can look for to find out if srcdir is correct.
  255. ! unique_file=gzip.c
  256.   
  257.   # Find the source files, if location was not specified.
  258.   if test -z "$srcdir"; then
  259. !   srcdirdefaulted=yes
  260.     # Try the directory containing this script, then `..'.
  261. !   prog=$0
  262. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  263. !   test "X$confdir" = "X$prog" && confdir=.
  264. !   srcdir=$confdir
  265. !   if test ! -r $srcdir/$unique_file; then
  266.       srcdir=..
  267.     fi
  268.   fi
  269. ! if test ! -r $srcdir/$unique_file; then
  270. !   if test x$srcdirdefaulted = xyes; then
  271. !     echo "configure: Can not find sources in \`${confdir}' or \`..'." 1>&2
  272.     else
  273. !     echo "configure: Can not find sources in \`${srcdir}'." 1>&2
  274.     fi
  275. -   exit 1
  276.   fi
  277. ! # Preserve a srcdir of `.' to avoid automounter screwups with pwd.
  278. ! # But we can't avoid them for `..', to make subdirectories work.
  279. ! case $srcdir in
  280. !   .|/*|~*) ;;
  281. !   *) srcdir=`cd $srcdir; pwd` ;; # Make relative path absolute.
  282. ! esac
  283.   
  284.   if test -z "$CC"; then
  285.     # Extract the first word of `gcc', so it can be a program name with args.
  286. !   set dummy gcc; word=$2
  287. !   echo checking for $word
  288. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  289. !   for dir in $PATH; do
  290. !     test -z "$dir" && dir=.
  291. !     if test -f $dir/$word; then
  292.         CC="gcc"
  293.         break
  294.       fi
  295.     done
  296. !   IFS="$saveifs"
  297.   fi
  298.   test -z "$CC" && CC="cc"
  299. ! test -n "$CC" -a -n "$verbose" && echo "    setting CC to $CC"
  300.   
  301.   # Find out if we are using GNU C, under whatever name.
  302.   cat > conftest.c <<EOF
  303. --- 1,335 ----
  304.   #!/bin/sh
  305.   # Guess values for system-dependent variables and create Makefiles.
  306. ! # Generated automatically using autoconf version 1.9 
  307. ! # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  308.   
  309. ! # This configure script is free software; you can redistribute it and/or
  310. ! # modify it under the terms of the GNU General Public License as published
  311. ! # by the Free Software Foundation; either version 2, or (at your option)
  312.   # any later version.
  313.   
  314. ! # This script is distributed in the hope that it will be useful, but
  315. ! # WITHOUT ANY WARRANTY; without even the implied warranty of
  316. ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  317. ! # Public License for more details.
  318.   
  319.   # You should have received a copy of the GNU General Public License
  320.   # along with this program; if not, write to the Free Software
  321.   # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  322.   
  323. ! # Save the original args to write them into config.status later.
  324. ! configure_args="$*"
  325.   
  326. + # Only options that might do something get documented.
  327. + ac_usage="Usage: configure [options] [host]
  328. + Options: [defaults in brackets after descriptions]
  329. + --build=BUILD        configure for building on BUILD [BUILD=HOST]
  330. + --disable-FEATURE    do not include FEATURE (same as --enable-FEATURE=no)
  331. + --enable-FEATURE[=ARG]    include FEATURE [ARG=yes]
  332. + --exec-prefix=PREFIX    install host dependent files in PREFIX [/usr/local]
  333. + --help            print this message
  334. + --host=HOST        configure for HOST [guessed]
  335. + --prefix=PREFIX        install host independent files in PREFIX [/usr/local]
  336. + --quiet, --silent    do not print \`checking for...' messages
  337. + --srcdir=DIR        find the sources in DIR [configure dir or ..]
  338. + --target=TARGET        configure for TARGET [TARGET=HOST]
  339. + --verbose        print results of checks
  340. + --version        print the version of autoconf that created configure
  341. + --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  342. + --without-PACKAGE    do not use PACKAGE (same as --with-PACKAGE=no)
  343. + --x-includes=DIR    X include files are in DIR
  344. + --x-libraries=DIR    X library files are in DIR"
  345. + # Initialize some variables set by options.
  346. + # The variables have the same names as the options, with
  347. + # dashes changed to underlines.
  348. + build=NONE
  349. + exec_prefix=
  350. + host=NONE
  351. + no_create=
  352. + nonopt=NONE
  353. + norecursion=
  354. + prefix=
  355. + program_prefix=
  356. + program_suffix=
  357. + program_transform_name=
  358. + silent=
  359. + srcdir=
  360. + target=NONE
  361. + verbose=
  362. + x_includes=
  363. + x_libraries=
  364.   
  365. ! ac_prev=
  366. ! for ac_option
  367.   do
  368.   
  369. !   # If the previous option needs an argument, assign it.
  370. !   if test -n "$ac_prev"; then
  371. !     eval "$ac_prev=\$ac_option"
  372. !     ac_prev=
  373. !     continue
  374. !   fi
  375. !   # Accept (but ignore some of) the important Cygnus configure
  376. !   # options, so we can diagnose typos.
  377.   
  378. !   case "$ac_option" in
  379. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  380. !   *) ac_optarg= ;;
  381. !   esac
  382. !   case "$ac_option" in
  383. !   -build | --build | --buil | --bui | --bu | --b)
  384. !     ac_prev=build ;;
  385. !   -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
  386. !     build="$ac_optarg" ;;
  387. !   -disable-* | --disable-*)
  388. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  389. !     # Reject names that aren't valid shell variable names.
  390. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  391. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  392. !     fi
  393. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  394. !     eval "enable_${ac_feature}=no" ;;
  395. !   -enable-* | --enable-*)
  396. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  397. !     # Reject names that aren't valid shell variable names.
  398. !     if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  399. !       /bin/echo "configure: $ac_feature: invalid feature name" >&2; exit 1
  400. !     fi
  401. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  402. !     case "$ac_option" in
  403. !       *=*) ;;
  404. !       *) ac_optarg=yes ;;
  405.       esac
  406. !     eval "enable_${ac_feature}='$ac_optarg'" ;;
  407. !   # For backward compatibility, recognize -exec-prefix and --exec_prefix.
  408. !   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  409. !   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  410. !   | --exec | --exe | --ex)
  411. !     ac_prev=exec_prefix ;;
  412. !   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  413. !   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  414. !   | --exec=* | --exe=* | --ex=*)
  415. !     exec_prefix="$ac_optarg" ;;
  416. !   -gas | --gas | --ga | --g)
  417. !     with_gas=yes ;; # Obsolete; use --with-gas.
  418. !   -help | --help | --hel | --he)
  419. !     cat << EOF
  420. ! $ac_usage
  421. ! EOF
  422. !     exit 0 ;;
  423. !   -host | --host | --hos | --ho)
  424. !     ac_prev=host ;;
  425. !   -host=* | --host=* | --hos=* | --ho=*)
  426. !     host="$ac_optarg" ;;
  427. !   -nfp | --nfp | --nf)
  428. !     with_fp=no ;; # Obsolete; use --without-fp.
  429. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  430. !   | --no-cr | --no-c)
  431. !     no_create=yes ;;
  432. !   -norecursion | --norecursion | --norecursio | --norecursi \
  433. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor)
  434. !     norecursion=yes ;;
  435. !   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  436. !     ac_prev=prefix ;;
  437. !   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  438. !     prefix="$ac_optarg" ;;
  439. !   -program-prefix | --program-prefix | --program-prefi | --program-pref \
  440. !   | --program-pre | --program-pr | --program-p)
  441. !     ac_prev=program_prefix ;;
  442. !   -program-prefix=* | --program-prefix=* | --program-prefi=* \
  443. !   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  444. !     program_prefix="$ac_optarg" ;;
  445. !   -program-suffix | --program-suffix | --program-suffi | --program-suff \
  446. !   | --program-suf | --program-su | --program-s)
  447. !     ac_prev=program_suffix ;;
  448. !   -program-suffix=* | --program-suffix=* | --program-suffi=* \
  449. !   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  450. !     program_suffix="$ac_optarg" ;;
  451. !   -program-transform-name | --program-transform-name \
  452. !   | --program-transform-nam | --program-transform-na \
  453. !   | --program-transform-n | --program-transform- \
  454. !   | --program-transform | --program-transfor \
  455. !   | --program-transfo | --program-transf \
  456. !   | --program-trans | --program-tran \
  457. !   | --progr-tra | --program-tr | --program-t)
  458. !     ac_prev=program_transform_name ;;
  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. !     program_transform_name="$ac_optarg" ;;
  467. !   -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  468. !   | -silent | --silent | --silen | --sile | --sil)
  469. !     silent=yes ;;
  470. !   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  471. !     ac_prev=srcdir ;;
  472. !   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  473. !     srcdir="$ac_optarg" ;;
  474. !   -target | --target | --targe | --targ | --tar | --ta | --t)
  475. !     ac_prev=target ;;
  476. !   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  477. !     target="$ac_optarg" ;;
  478. !   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  479. !     verbose=yes ;;
  480. !   -version | --version | --versio | --versi | --vers)
  481. !     /bin/echo "configure generated by autoconf version 1.9"
  482. !     exit 0 ;;
  483. !   -with-* | --with-*)
  484. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  485. !     # Reject names that aren't valid shell variable names.
  486. !     if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  487. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  488. !     fi
  489. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  490. !     case "$ac_option" in
  491. !       *=*) ;;
  492. !       *) ac_optarg=yes ;;
  493. !     esac
  494. !     eval "with_${ac_package}='$ac_optarg'" ;;
  495. !   -without-* | --without-*)
  496. !     ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
  497. !     # Reject names that aren't valid shell variable names.
  498. !     if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  499. !       /bin/echo "configure: $ac_package: invalid package name" >&2; exit 1
  500. !     fi
  501. !     ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
  502. !     eval "with_${ac_package}=no" ;;
  503.   
  504. !   --x) with_x=yes ;; # Obsolete; use --with-x.
  505.   
  506. !   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  507. !   | --x-incl | --x-inc | --x-in | --x-i)
  508. !     ac_prev=x_includes ;;
  509. !   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  510. !   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  511. !     x_includes="$ac_optarg" ;;
  512. !   -x-libraries | --x-libraries | --x-librarie | --x-librari \
  513. !   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  514. !     ac_prev=x_libraries ;;
  515. !   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  516. !   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  517. !     x_libraries="$ac_optarg" ;;
  518. !   -*) /bin/echo "configure: $ac_option: invalid option; use --help to show usage" >&2; exit 1
  519. !     ;;
  520. !   *) 
  521. !     if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  522. !       /bin/echo "configure: warning: $ac_option: invalid host type" >&2
  523. !     fi
  524. !     if test "x$nonopt" != xNONE; then
  525. !       /bin/echo "configure: can only configure for one host and one target at a time" >&2; exit 1
  526. !     fi
  527. !     nonopt="$ac_option"
  528. !     ;;
  529. !   esac
  530. ! done
  531. ! if test -n "$ac_prev"; then
  532. !   /bin/echo "configure: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" >&2; exit 1
  533.   fi
  534.   
  535. ! trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
  536. ! trap 'rm -fr confdefs* $ac_clean_files' 0
  537. ! # Save the original args if we used an alternate arg parser.
  538. ! ac_configure_temp="${configure_args-$*}"
  539. ! # Strip out --no-create and --norecursion so they don't pile up.
  540. ! configure_args=
  541. ! for ac_arg in $ac_configure_temp; do
  542. !   case "$ac_arg" in
  543. !   -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  544. !   | --no-cr | --no-c) ;;
  545. !   -norecursion | --norecursion | --norecursio | --norecursi \
  546. !   | --norecurs | --norecur | --norecu | --norec | --nore | --nor) ;;
  547. !   *) configure_args="$configure_args $ac_arg" ;;
  548. !   esac
  549. ! done
  550. ! # NLS nuisances.
  551. ! # These must not be set unconditionally because not all systems understand
  552. ! # e.g. LANG=C (notably SCO).
  553. ! if test "${LC_ALL+set}" = 'set'; then LC_ALL=C; export LC_ALL; fi
  554. ! if test "${LANG+set}"   = 'set'; then LANG=C;   export LANG;   fi
  555. ! # confdefs.h avoids OS command line length limits that DEFS can exceed.
  556. ! rm -rf conftest* confdefs.h
  557. ! # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  558. ! /bin/echo > confdefs.h
  559.   
  560.   # A filename unique to this package, relative to the directory that
  561.   # configure is in, which we can look for to find out if srcdir is correct.
  562. ! ac_unique_file=gzip.c
  563.   
  564.   # Find the source files, if location was not specified.
  565.   if test -z "$srcdir"; then
  566. !   ac_srcdir_defaulted=yes
  567.     # Try the directory containing this script, then `..'.
  568. !   ac_prog=$0
  569. !   ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  570. !   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  571. !   srcdir=$ac_confdir
  572. !   if test ! -r $srcdir/$ac_unique_file; then
  573.       srcdir=..
  574.     fi
  575.   fi
  576. ! if test ! -r $srcdir/$ac_unique_file; then
  577. !   if test x$ac_srcdir_defaulted = xyes; then
  578. !     /bin/echo "configure: can not find sources in ${ac_confdir} or .." >&2; exit 1
  579.     else
  580. !     /bin/echo "configure: can not find sources in ${srcdir}" >&2; exit 1
  581.     fi
  582.   fi
  583. ! ac_ext=c
  584. ! ac_cpp='${CPP} $CFLAGS'
  585. ! ac_compile='${CC-cc} $CFLAGS $LDFLAGS conftest.${ac_ext} -o conftest $LIBS >/dev/null 2>&1'
  586.   
  587.   if test -z "$CC"; then
  588.     # Extract the first word of `gcc', so it can be a program name with args.
  589. !   set ac_dummy gcc; ac_word=$2
  590. !   test -n "$silent" || /bin/echo "checking for $ac_word"
  591. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  592. !   for ac_dir in $PATH; do
  593. !     test -z "$ac_dir" && ac_dir=.
  594. !     if test -f $ac_dir/$ac_word; then
  595.         CC="gcc"
  596.         break
  597.       fi
  598.     done
  599. !   IFS="$ac_save_ifs"
  600.   fi
  601.   test -z "$CC" && CC="cc"
  602. ! test -n "$CC" && test -n "$verbose" && /bin/echo "    setting CC to $CC"
  603.   
  604.   # Find out if we are using GNU C, under whatever name.
  605.   cat > conftest.c <<EOF
  606. ***************
  607. *** 147,173 ****
  608.   ${CC-cc} -E conftest.c > conftest.out 2>&1
  609.   if egrep yes conftest.out >/dev/null 2>&1; then
  610.     GCC=1 # For later tests.
  611. -   CFLAGS="${CFLAGS--O}"
  612.   fi
  613.   rm -f conftest*
  614.   
  615. ! echo checking how to run the C preprocessor
  616.   if test -z "$CPP"; then
  617. !   CPP='${CC-cc} -E'
  618. !   cat > conftest.c <<EOF
  619.   #include <stdio.h>
  620.   EOF
  621. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  622. ! if test -z "$err"; then
  623.     :
  624.   else
  625.     CPP=/lib/cpp
  626.   fi
  627.   rm -f conftest*
  628.   fi
  629.   
  630.   echo checking for underline in external names
  631. - test -z "$ASCPP" -a -f /lib/cpp && ASCPP=/lib/cpp
  632.   test -z "$ASCPP" && ASCPP="$CC -E"
  633.   cat > conftest.c <<EOF
  634.   int foo() {return 0;}
  635. --- 340,388 ----
  636.   ${CC-cc} -E conftest.c > conftest.out 2>&1
  637.   if egrep yes conftest.out >/dev/null 2>&1; then
  638.     GCC=1 # For later tests.
  639.   fi
  640.   rm -f conftest*
  641.   
  642. ! test -n "$silent" || /bin/echo "checking how to run the C preprocessor"
  643.   if test -z "$CPP"; then
  644. !   # This must be in double quotes, not single quotes, because CPP may get
  645. !   # substituted into the Makefile and ``${CC-cc}'' will simply confuse
  646. !   # make.  It must be expanded now.
  647. !   CPP="${CC-cc} -E"
  648. !   cat > conftest.${ac_ext} <<EOF
  649. ! #include "confdefs.h"
  650.   #include <stdio.h>
  651. + Syntax Error
  652.   EOF
  653. ! # Some shells (Coherent) do redirections in the wrong order, so need
  654. ! # the parens.
  655. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  656. ! if test -z "$ac_err"; then
  657.     :
  658.   else
  659. +   rm -rf conftest*
  660. +   CPP="${CC-cc} -E -traditional-cpp"
  661. +   cat > conftest.${ac_ext} <<EOF
  662. + #include "confdefs.h"
  663. + #include <stdio.h>
  664. + Syntax Error
  665. + EOF
  666. + # Some shells (Coherent) do redirections in the wrong order, so need
  667. + # the parens.
  668. + ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  669. + if test -z "$ac_err"; then
  670. +   :
  671. + else
  672. +   rm -rf conftest*
  673.     CPP=/lib/cpp
  674.   fi
  675.   rm -f conftest*
  676.   fi
  677. + rm -f conftest*
  678. + fi
  679. + test -n "$verbose" && /bin/echo "    setting CPP to $CPP"
  680.   
  681.   echo checking for underline in external names
  682.   test -z "$ASCPP" && ASCPP="$CC -E"
  683.   cat > conftest.c <<EOF
  684.   int foo() {return 0;}
  685. ***************
  686. *** 199,298 ****
  687.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  688.   # or the AFS install, which mishandles nonexistent args, or
  689.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  690. ! # `staff'.  On most BSDish systems install is in /usr/bin, not /usr/ucb
  691. ! # anyway.  Sigh.
  692.   if test "z${INSTALL}" = "z" ; then
  693. !   echo checking for install
  694. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="${IFS}:"
  695. !   for dir in $PATH; do
  696. !     test -z "$dir" && dir=.
  697. !     case $dir in
  698. !     /etc|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  699.       *)
  700. !       if test -f $dir/installbsd; then
  701. !     INSTALL="$dir/installbsd -c" # OSF1
  702. !     INSTALL_PROGRAM='$(INSTALL)'
  703. !     INSTALL_DATA='$(INSTALL) -m 644'
  704. !     break
  705. !       fi
  706. !       if test -f $dir/install; then
  707. !     if grep dspmsg $dir/install >/dev/null 2>&1; then
  708. !       : # AIX
  709. !     else
  710. !       INSTALL="$dir/install -c"
  711. !       INSTALL_PROGRAM='$(INSTALL)'
  712. !       INSTALL_DATA='$(INSTALL) -m 644'
  713. !       break
  714.       fi
  715. !       fi
  716.         ;;
  717.       esac
  718.     done
  719. !   IFS="$saveifs"
  720.   fi
  721. ! INSTALL=${INSTALL-cp}
  722. ! INSTALL_PROGRAM=${INSTALL_PROGRAM-'$(INSTALL)'}
  723. ! INSTALL_DATA=${INSTALL_DATA-'$(INSTALL)'}
  724. ! echo checking for AIX
  725. ! cat > conftest.c <<EOF
  726.   #ifdef _AIX
  727.     yes
  728.   #endif
  729.   
  730.   EOF
  731. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  732.   if egrep "yes" conftest.out >/dev/null 2>&1; then
  733. !   {
  734.   test -n "$verbose" && \
  735. ! echo '    defining' _ALL_SOURCE
  736.   DEFS="$DEFS -D_ALL_SOURCE=1"
  737.   }
  738.   
  739.   fi
  740.   rm -f conftest*
  741.   
  742.   
  743. ! echo checking for minix/config.h
  744. ! cat > conftest.c <<EOF
  745.   #include <minix/config.h>
  746.   EOF
  747. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  748. ! if test -z "$err"; then
  749.     MINIX=1
  750.   fi
  751.   rm -f conftest*
  752.   
  753.   # The Minix shell can't assign to the same variable on the same line!
  754.   if test -n "$MINIX"; then
  755. !   {
  756.   test -n "$verbose" && \
  757. ! echo '    defining' _POSIX_SOURCE
  758.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  759.   }
  760.   
  761. !   {
  762.   test -n "$verbose" && \
  763. ! echo '    defining' _POSIX_1_SOURCE to be '2'
  764.   DEFS="$DEFS -D_POSIX_1_SOURCE=2"
  765.   }
  766.   
  767. !   {
  768.   test -n "$verbose" && \
  769. ! echo '    defining' _MINIX
  770.   DEFS="$DEFS -D_MINIX=1"
  771.   }
  772.   
  773.   fi
  774.   
  775. ! echo checking for POSIXized ISC
  776. ! if test -d /etc/conf/kconfig.d &&
  777. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  778.   then
  779.     ISC=1 # If later tests want to check for ISC.
  780. !   {
  781.   test -n "$verbose" && \
  782. ! echo '    defining' _POSIX_SOURCE
  783.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  784.   }
  785.   
  786. --- 414,552 ----
  787.   # or the SunOS /usr/etc/install directory, or the AIX /bin/install,
  788.   # or the AFS install, which mishandles nonexistent args, or
  789.   # /usr/ucb/install on SVR4, which tries to use the nonexistent group
  790. ! # `staff', or /sbin/install on IRIX which has incompatible command-line
  791. ! # syntax.  Sigh.
  792. ! #
  793. ! #     On most BSDish systems install is in /usr/bin, not /usr/ucb
  794. ! #     anyway.
  795. ! # This turns out not to be true, so the mere pathname isn't an indication
  796. ! # of whether the program works.  What we really need is a set of tests for
  797. ! # the install program to see if it actually works in all the required ways.
  798. ! #
  799. ! # Avoid using ./install, which might have been erroneously created
  800. ! # by make from ./install.sh.
  801.   if test "z${INSTALL}" = "z" ; then
  802. !   test -n "$silent" || /bin/echo "checking for a BSD compatible install"
  803. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  804. !   for ac_dir in $PATH; do
  805. !     case "$ac_dir" in
  806. !     ''|.|/gnu/etc|/sbin|/usr/sbin|/usr/etc|/usr/afsws/bin|/usr/ucb) ;;
  807.       *)
  808. !       # OSF1 and SCO ODT 3.0 have their own names for install.
  809. !       for ac_prog in installbsd scoinst install; do
  810. !         if test -f $ac_dir/$ac_prog; then
  811. !       if test $ac_prog = install &&
  812. !             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
  813. !         # AIX install.  It has an incompatible calling convention.
  814. !         # OSF/1 installbsd also uses dspmsg, but is usable.
  815. !         :
  816. !       else
  817. !         INSTALL="$ac_dir/$ac_prog -c"
  818. !         INSTALL_PROGRAM='${INSTALL}'
  819. !         INSTALL_DATA='${INSTALL} -m 644'
  820. !         break 2
  821. !       fi
  822.       fi
  823. !       done
  824.         ;;
  825.       esac
  826.     done
  827. !   IFS="$ac_save_ifs"
  828.   fi
  829. ! if test -z "$INSTALL"; then
  830. !   if test -f ${srcdir}/install.sh; then
  831. !     # As a last resort, use the slow shell script.
  832. !     INSTALL='@top_srcdir@/install.sh -c'
  833. !   else
  834. !     /bin/echo "configure: warning: ${srcdir}/install.sh not found; using cp" >&2
  835. !     INSTALL=cp
  836. !   fi
  837. ! fi
  838. ! test -n "$verbose" && /bin/echo "    setting INSTALL to $INSTALL"
  839. ! # Use test -z because SunOS4 sh mishandles ${INSTALL_PROGRAM-'${INSTALL}'}.
  840. ! # It thinks the first close brace ends the variable substitution.
  841. ! test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  842. ! test -n "$verbose" && /bin/echo "    setting INSTALL_PROGRAM to $INSTALL_PROGRAM"
  843. ! test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL}'
  844. ! test -n "$verbose" && /bin/echo "    setting INSTALL_DATA to $INSTALL_DATA"
  845. ! test -n "$silent" || /bin/echo "checking for AIX"
  846. ! cat > conftest.${ac_ext} <<EOF
  847. ! #include "confdefs.h"
  848.   #ifdef _AIX
  849.     yes
  850.   #endif
  851.   
  852.   EOF
  853. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  854.   if egrep "yes" conftest.out >/dev/null 2>&1; then
  855. !   rm -rf conftest*
  856. !   
  857. ! {
  858.   test -n "$verbose" && \
  859. ! /bin/echo "    defining _ALL_SOURCE"
  860. ! /bin/echo "#define" _ALL_SOURCE "1" >> confdefs.h
  861.   DEFS="$DEFS -D_ALL_SOURCE=1"
  862.   }
  863.   
  864.   fi
  865.   rm -f conftest*
  866.   
  867.   
  868. ! test -n "$silent" || /bin/echo "checking for minix/config.h"
  869. ! cat > conftest.${ac_ext} <<EOF
  870. ! #include "confdefs.h"
  871.   #include <minix/config.h>
  872.   EOF
  873. ! # Some shells (Coherent) do redirections in the wrong order, so need
  874. ! # the parens.
  875. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  876. ! if test -z "$ac_err"; then
  877. !   rm -rf conftest*
  878.     MINIX=1
  879.   fi
  880.   rm -f conftest*
  881.   
  882.   # The Minix shell can't assign to the same variable on the same line!
  883.   if test -n "$MINIX"; then
  884. !   
  885. ! {
  886.   test -n "$verbose" && \
  887. ! /bin/echo "    defining _POSIX_SOURCE"
  888. ! /bin/echo "#define" _POSIX_SOURCE "1" >> confdefs.h
  889.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  890.   }
  891.   
  892. !   
  893. ! {
  894.   test -n "$verbose" && \
  895. ! /bin/echo "    defining" _POSIX_1_SOURCE to be "2"
  896. ! /bin/echo "#define" _POSIX_1_SOURCE "2" >> confdefs.h
  897.   DEFS="$DEFS -D_POSIX_1_SOURCE=2"
  898.   }
  899.   
  900. !   
  901. ! {
  902.   test -n "$verbose" && \
  903. ! /bin/echo "    defining _MINIX"
  904. ! /bin/echo "#define" _MINIX "1" >> confdefs.h
  905.   DEFS="$DEFS -D_MINIX=1"
  906.   }
  907.   
  908.   fi
  909.   
  910. ! test -n "$silent" || /bin/echo "checking for POSIXized ISC"
  911. ! if test -d /gnu/etc/conf/kconfig.d &&
  912. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  913.   then
  914.     ISC=1 # If later tests want to check for ISC.
  915. !   
  916. ! {
  917.   test -n "$verbose" && \
  918. ! /bin/echo "    defining _POSIX_SOURCE"
  919. ! /bin/echo "#define" _POSIX_SOURCE "1" >> confdefs.h
  920.   DEFS="$DEFS -D_POSIX_SOURCE=1"
  921.   }
  922.   
  923. ***************
  924. *** 303,339 ****
  925.     fi
  926.   fi
  927.   
  928. ! echo checking for DYNIX/ptx libseq
  929. ! cat > conftest.c <<EOF
  930. ! #if defined(_SEQUENT_)
  931. !   yes
  932. ! #endif
  933.   
  934.   EOF
  935. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  936. ! if egrep "yes" conftest.out >/dev/null 2>&1; then
  937. !   SEQUENT=1
  938.   fi
  939.   rm -f conftest*
  940.   
  941. - test -n "$SEQUENT" && test -f /usr/lib/libseq.a &&
  942. -   LIBS="$LIBS -lseq"
  943.   
  944. ! echo checking for ANSI C header files
  945. ! cat > conftest.c <<EOF
  946.   #include <stdlib.h>
  947.   #include <stdarg.h>
  948.   #include <string.h>
  949.   #include <float.h>
  950.   EOF
  951. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  952. ! if test -z "$err"; then
  953.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  954. ! echo '#include <string.h>' > conftest.c
  955. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  956.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  957.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  958. ! cat > conftest.c <<EOF
  959.   #include <ctype.h>
  960.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  961.   #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  962. --- 557,608 ----
  963.     fi
  964.   fi
  965.   
  966. ! ac_save_LIBS="${LIBS}"
  967. ! LIBS="${LIBS} -lseq"
  968. ! ac_have_lib=""
  969. ! test -n "$silent" || /bin/echo "checking for -lseq"
  970. ! cat > conftest.${ac_ext} <<EOF
  971. ! #include "confdefs.h"
  972.   
  973. + int main() { return 0; }
  974. + int t() { main();; return 0; }
  975.   EOF
  976. ! if eval $ac_compile; then
  977. !   rm -rf conftest*
  978. !   ac_have_lib="1"
  979.   fi
  980.   rm -f conftest*
  981. + LIBS="${ac_save_LIBS}"
  982. + if test -n "${ac_have_lib}"; then
  983. +    :; LIBS="$LIBS -lseq"
  984. + else
  985. +    :; 
  986. + fi
  987.   
  988.   
  989. ! test -n "$silent" || /bin/echo "checking for ANSI C header files"
  990. ! cat > conftest.${ac_ext} <<EOF
  991. ! #include "confdefs.h"
  992.   #include <stdlib.h>
  993.   #include <stdarg.h>
  994.   #include <string.h>
  995.   #include <float.h>
  996.   EOF
  997. ! # Some shells (Coherent) do redirections in the wrong order, so need
  998. ! # the parens.
  999. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1000. ! if test -z "$ac_err"; then
  1001. !   rm -rf conftest*
  1002.     # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  1003. ! /bin/echo '#include "confdefs.h"
  1004. ! #include <string.h>' > conftest.${ac_ext}
  1005. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1006.   if egrep "memchr" conftest.out >/dev/null 2>&1; then
  1007. +   rm -rf conftest*
  1008.     # SGI's /bin/cc from Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1009. ! cat > conftest.${ac_ext} <<EOF
  1010. ! #include "confdefs.h"
  1011.   #include <ctype.h>
  1012.   #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1013.   #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  1014. ***************
  1015. *** 343,480 ****
  1016.   exit (0); }
  1017.   
  1018.   EOF
  1019. ! eval $compile
  1020.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1021. !   {
  1022.   test -n "$verbose" && \
  1023. ! echo '    defining' STDC_HEADERS
  1024.   DEFS="$DEFS -DSTDC_HEADERS=1"
  1025.   }
  1026.   
  1027.   fi
  1028.   rm -f conftest*
  1029.   fi
  1030.   rm -f conftest*
  1031.   
  1032.   fi
  1033.   rm -f conftest*
  1034.   
  1035. ! echo checking for string.h
  1036. ! cat > conftest.c <<EOF
  1037.   #include <string.h>
  1038.   EOF
  1039. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1040. ! if test -z "$err"; then
  1041.     :
  1042.   else
  1043. !   {
  1044.   test -n "$verbose" && \
  1045. ! echo '    defining' NO_STRING_H
  1046.   DEFS="$DEFS -DNO_STRING_H=1"
  1047.   }
  1048.   
  1049.   fi
  1050.   rm -f conftest*
  1051.   
  1052. ! echo checking for stdlib.h
  1053. ! cat > conftest.c <<EOF
  1054.   #include <stdlib.h>
  1055.   EOF
  1056. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1057. ! if test -z "$err"; then
  1058.     :
  1059.   else
  1060. !   {
  1061.   test -n "$verbose" && \
  1062. ! echo '    defining' NO_STDLIB_H
  1063.   DEFS="$DEFS -DNO_STDLIB_H=1"
  1064.   }
  1065.   
  1066.   fi
  1067.   rm -f conftest*
  1068.   
  1069. ! echo checking for memory.h
  1070. ! cat > conftest.c <<EOF
  1071.   #include <memory.h>
  1072.   EOF
  1073. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1074. ! if test -z "$err"; then
  1075.     :
  1076.   else
  1077. !   {
  1078.   test -n "$verbose" && \
  1079. ! echo '    defining' NO_MEMORY_H
  1080.   DEFS="$DEFS -DNO_MEMORY_H=1"
  1081.   }
  1082.   
  1083.   fi
  1084.   rm -f conftest*
  1085.   
  1086. ! echo checking for fcntl.h
  1087. ! cat > conftest.c <<EOF
  1088.   #include <fcntl.h>
  1089.   EOF
  1090. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1091. ! if test -z "$err"; then
  1092.     :
  1093.   else
  1094. !   {
  1095.   test -n "$verbose" && \
  1096. ! echo '    defining' NO_FCNTL_H
  1097.   DEFS="$DEFS -DNO_FCNTL_H=1"
  1098.   }
  1099.   
  1100.   fi
  1101.   rm -f conftest*
  1102.   
  1103. ! echo checking for time.h
  1104. ! cat > conftest.c <<EOF
  1105.   #include <time.h>
  1106.   EOF
  1107. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1108. ! if test -z "$err"; then
  1109.     :
  1110.   else
  1111. !   {
  1112.   test -n "$verbose" && \
  1113. ! echo '    defining' NO_TIME_H
  1114.   DEFS="$DEFS -DNO_TIME_H=1"
  1115.   }
  1116.   
  1117.   fi
  1118.   rm -f conftest*
  1119.   
  1120. ! for hdr in unistd.h
  1121.   do
  1122. ! trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  1123. ! echo checking for ${hdr}
  1124. ! cat > conftest.c <<EOF
  1125. ! #include <${hdr}>
  1126. ! EOF
  1127. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1128. ! if test -z "$err"; then
  1129. !   {
  1130. ! test -n "$verbose" && \
  1131. ! echo '    defining' ${trhdr}
  1132. ! DEFS="$DEFS -D${trhdr}=1"
  1133.   }
  1134.   
  1135.   fi
  1136.   rm -f conftest*
  1137.   done
  1138.   
  1139.   utime=0
  1140. ! echo checking for utime.h
  1141. ! cat > conftest.c <<EOF
  1142.   #include <utime.h>
  1143.   EOF
  1144. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1145. ! if test -z "$err"; then
  1146.     utime=1 
  1147.   else
  1148. !   {
  1149.   test -n "$verbose" && \
  1150. ! echo '    defining' NO_UTIME_H
  1151.   DEFS="$DEFS -DNO_UTIME_H=1"
  1152.   }
  1153.   
  1154. --- 612,809 ----
  1155.   exit (0); }
  1156.   
  1157.   EOF
  1158. ! eval $ac_compile
  1159.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1160. !   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1161. ! /bin/echo '#include "confdefs.h"
  1162. ! #include <stdlib.h>' > conftest.${ac_ext}
  1163. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1164. ! if egrep "free" conftest.out >/dev/null 2>&1; then
  1165. !   rm -rf conftest*
  1166. !   
  1167. ! {
  1168.   test -n "$verbose" && \
  1169. ! /bin/echo "    defining STDC_HEADERS"
  1170. ! /bin/echo "#define" STDC_HEADERS "1" >> confdefs.h
  1171.   DEFS="$DEFS -DSTDC_HEADERS=1"
  1172.   }
  1173.   
  1174.   fi
  1175.   rm -f conftest*
  1176. + fi
  1177. + rm -fr conftest*
  1178.   fi
  1179.   rm -f conftest*
  1180.   
  1181.   fi
  1182.   rm -f conftest*
  1183.   
  1184. ! test -n "$silent" || /bin/echo "checking for string.h"
  1185. ! cat > conftest.${ac_ext} <<EOF
  1186. ! #include "confdefs.h"
  1187.   #include <string.h>
  1188.   EOF
  1189. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1190. ! # the parens.
  1191. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1192. ! if test -z "$ac_err"; then
  1193.     :
  1194.   else
  1195. !   rm -rf conftest*
  1196. !   
  1197. ! {
  1198.   test -n "$verbose" && \
  1199. ! /bin/echo "    defining NO_STRING_H"
  1200. ! /bin/echo "#define" NO_STRING_H "1" >> confdefs.h
  1201.   DEFS="$DEFS -DNO_STRING_H=1"
  1202.   }
  1203.   
  1204.   fi
  1205.   rm -f conftest*
  1206.   
  1207. ! test -n "$silent" || /bin/echo "checking for stdlib.h"
  1208. ! cat > conftest.${ac_ext} <<EOF
  1209. ! #include "confdefs.h"
  1210.   #include <stdlib.h>
  1211.   EOF
  1212. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1213. ! # the parens.
  1214. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1215. ! if test -z "$ac_err"; then
  1216.     :
  1217.   else
  1218. !   rm -rf conftest*
  1219. !   
  1220. ! {
  1221.   test -n "$verbose" && \
  1222. ! /bin/echo "    defining NO_STDLIB_H"
  1223. ! /bin/echo "#define" NO_STDLIB_H "1" >> confdefs.h
  1224.   DEFS="$DEFS -DNO_STDLIB_H=1"
  1225.   }
  1226.   
  1227.   fi
  1228.   rm -f conftest*
  1229.   
  1230. ! test -n "$silent" || /bin/echo "checking for memory.h"
  1231. ! cat > conftest.${ac_ext} <<EOF
  1232. ! #include "confdefs.h"
  1233.   #include <memory.h>
  1234.   EOF
  1235. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1236. ! # the parens.
  1237. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1238. ! if test -z "$ac_err"; then
  1239.     :
  1240.   else
  1241. !   rm -rf conftest*
  1242. !   
  1243. ! {
  1244.   test -n "$verbose" && \
  1245. ! /bin/echo "    defining NO_MEMORY_H"
  1246. ! /bin/echo "#define" NO_MEMORY_H "1" >> confdefs.h
  1247.   DEFS="$DEFS -DNO_MEMORY_H=1"
  1248.   }
  1249.   
  1250.   fi
  1251.   rm -f conftest*
  1252.   
  1253. ! test -n "$silent" || /bin/echo "checking for fcntl.h"
  1254. ! cat > conftest.${ac_ext} <<EOF
  1255. ! #include "confdefs.h"
  1256.   #include <fcntl.h>
  1257.   EOF
  1258. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1259. ! # the parens.
  1260. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1261. ! if test -z "$ac_err"; then
  1262.     :
  1263.   else
  1264. !   rm -rf conftest*
  1265. !   
  1266. ! {
  1267.   test -n "$verbose" && \
  1268. ! /bin/echo "    defining NO_FCNTL_H"
  1269. ! /bin/echo "#define" NO_FCNTL_H "1" >> confdefs.h
  1270.   DEFS="$DEFS -DNO_FCNTL_H=1"
  1271.   }
  1272.   
  1273.   fi
  1274.   rm -f conftest*
  1275.   
  1276. ! test -n "$silent" || /bin/echo "checking for time.h"
  1277. ! cat > conftest.${ac_ext} <<EOF
  1278. ! #include "confdefs.h"
  1279.   #include <time.h>
  1280.   EOF
  1281. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1282. ! # the parens.
  1283. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1284. ! if test -z "$ac_err"; then
  1285.     :
  1286.   else
  1287. !   rm -rf conftest*
  1288. !   
  1289. ! {
  1290.   test -n "$verbose" && \
  1291. ! /bin/echo "    defining NO_TIME_H"
  1292. ! /bin/echo "#define" NO_TIME_H "1" >> confdefs.h
  1293.   DEFS="$DEFS -DNO_TIME_H=1"
  1294.   }
  1295.   
  1296.   fi
  1297.   rm -f conftest*
  1298.   
  1299. ! for ac_hdr in unistd.h
  1300.   do
  1301. ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  1302. ! test -n "$silent" || /bin/echo "checking for ${ac_hdr}"
  1303. ! cat > conftest.${ac_ext} <<EOF
  1304. ! #include "confdefs.h"
  1305. ! #include <${ac_hdr}>
  1306. ! EOF
  1307. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1308. ! # the parens.
  1309. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1310. ! if test -z "$ac_err"; then
  1311. !   rm -rf conftest*
  1312. !   
  1313. ! {
  1314. ! test -n "$verbose" && \
  1315. ! /bin/echo "    defining ${ac_tr_hdr}"
  1316. ! /bin/echo "#define" ${ac_tr_hdr} "1" >> confdefs.h
  1317. ! DEFS="$DEFS -D${ac_tr_hdr}=1"
  1318.   }
  1319.   
  1320.   fi
  1321.   rm -f conftest*
  1322.   done
  1323.   
  1324.   utime=0
  1325. ! test -n "$silent" || /bin/echo "checking for utime.h"
  1326. ! cat > conftest.${ac_ext} <<EOF
  1327. ! #include "confdefs.h"
  1328.   #include <utime.h>
  1329.   EOF
  1330. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1331. ! # the parens.
  1332. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1333. ! if test -z "$ac_err"; then
  1334. !   rm -rf conftest*
  1335.     utime=1 
  1336.   else
  1337. !   rm -rf conftest*
  1338. !   
  1339. ! {
  1340.   test -n "$verbose" && \
  1341. ! /bin/echo "    defining NO_UTIME_H"
  1342. ! /bin/echo "#define" NO_UTIME_H "1" >> confdefs.h
  1343.   DEFS="$DEFS -DNO_UTIME_H=1"
  1344.   }
  1345.   
  1346. ***************
  1347. *** 482,611 ****
  1348.   rm -f conftest*
  1349.   
  1350.   if test $utime -eq 0; then
  1351. !   for hdr in sys/utime.h
  1352.   do
  1353. ! trhdr=HAVE_`echo $hdr | tr '[a-z]./' '[A-Z]__'`
  1354. ! echo checking for ${hdr}
  1355. ! cat > conftest.c <<EOF
  1356. ! #include <${hdr}>
  1357. ! EOF
  1358. ! err=`eval "($CPP \$DEFS conftest.c >/dev/null) 2>&1"`
  1359. ! if test -z "$err"; then
  1360. !   {
  1361. ! test -n "$verbose" && \
  1362. ! echo '    defining' ${trhdr}
  1363. ! DEFS="$DEFS -D${trhdr}=1"
  1364.   }
  1365.   
  1366.   fi
  1367.   rm -f conftest*
  1368.   done
  1369.   
  1370.   fi
  1371. ! echo checking for directory library header
  1372. ! dirheader=
  1373. ! if test -z "$dirheader"; then
  1374. !   echo checking for dirent.h
  1375. ! cat > conftest.c <<EOF
  1376.   #include <sys/types.h>
  1377.   #include <dirent.h>
  1378. ! int main() { exit(0); }
  1379. ! int t() { DIR *dirp = opendir ("/"); }
  1380.   EOF
  1381. ! if eval $compile; then
  1382. !   {
  1383.   test -n "$verbose" && \
  1384. ! echo '    defining' DIRENT
  1385.   DEFS="$DEFS -DDIRENT=1"
  1386.   }
  1387. !  dirheader=dirent.h
  1388.   fi
  1389.   rm -f conftest*
  1390.   fi
  1391. ! if test -z "$dirheader"; then
  1392. !   echo checking for sys/ndir.h
  1393. ! cat > conftest.c <<EOF
  1394.   #include <sys/types.h>
  1395.   #include <sys/ndir.h>
  1396. ! int main() { exit(0); }
  1397. ! int t() { DIR *dirp = opendir ("/"); }
  1398.   EOF
  1399. ! if eval $compile; then
  1400. !   {
  1401.   test -n "$verbose" && \
  1402. ! echo '    defining' SYSNDIR
  1403.   DEFS="$DEFS -DSYSNDIR=1"
  1404.   }
  1405. !  dirheader=sys/ndir.h
  1406.   fi
  1407.   rm -f conftest*
  1408.   fi
  1409. ! if test -z "$dirheader"; then
  1410. !   echo checking for sys/dir.h
  1411. ! cat > conftest.c <<EOF
  1412.   #include <sys/types.h>
  1413.   #include <sys/dir.h>
  1414. ! int main() { exit(0); }
  1415. ! int t() { DIR *dirp = opendir ("/"); }
  1416.   EOF
  1417. ! if eval $compile; then
  1418. !   {
  1419.   test -n "$verbose" && \
  1420. ! echo '    defining' SYSDIR
  1421.   DEFS="$DEFS -DSYSDIR=1"
  1422.   }
  1423. !  dirheader=sys/dir.h
  1424.   fi
  1425.   rm -f conftest*
  1426.   fi
  1427. ! if test -z "$dirheader"; then
  1428. !   echo checking for ndir.h
  1429. ! cat > conftest.c <<EOF
  1430.   #include <sys/types.h>
  1431.   #include <ndir.h>
  1432. ! int main() { exit(0); }
  1433. ! int t() { DIR *dirp = opendir ("/"); }
  1434.   EOF
  1435. ! if eval $compile; then
  1436. !   {
  1437.   test -n "$verbose" && \
  1438. ! echo '    defining' NDIR
  1439.   DEFS="$DEFS -DNDIR=1"
  1440.   }
  1441. !  dirheader=ndir.h
  1442.   fi
  1443.   rm -f conftest*
  1444.   fi
  1445.   
  1446. ! echo checking for closedir return value
  1447. ! cat > conftest.c <<EOF
  1448.   #include <sys/types.h>
  1449. ! #include <$dirheader>
  1450.   int closedir(); main() { exit(closedir(opendir(".")) != 0); }
  1451.   EOF
  1452. ! eval $compile
  1453.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1454.     :
  1455.   else
  1456. !   {
  1457.   test -n "$verbose" && \
  1458. ! echo '    defining' VOID_CLOSEDIR
  1459.   DEFS="$DEFS -DVOID_CLOSEDIR=1"
  1460.   }
  1461.   
  1462.   fi
  1463. ! rm -f conftest*
  1464.   
  1465. ! echo checking for Xenix
  1466. ! cat > conftest.c <<EOF
  1467.   #if defined(M_XENIX) && !defined(M_UNIX)
  1468.     yes
  1469.   #endif
  1470.   
  1471.   EOF
  1472. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  1473.   if egrep "yes" conftest.out >/dev/null 2>&1; then
  1474.     XENIX=1
  1475.   fi
  1476.   rm -f conftest*
  1477.   
  1478. --- 811,973 ----
  1479.   rm -f conftest*
  1480.   
  1481.   if test $utime -eq 0; then
  1482. !   for ac_hdr in sys/utime.h
  1483.   do
  1484. ! ac_tr_hdr=HAVE_`/bin/echo $ac_hdr | tr '[a-z]./' '[A-Z]__'`
  1485. ! test -n "$silent" || /bin/echo "checking for ${ac_hdr}"
  1486. ! cat > conftest.${ac_ext} <<EOF
  1487. ! #include "confdefs.h"
  1488. ! #include <${ac_hdr}>
  1489. ! EOF
  1490. ! # Some shells (Coherent) do redirections in the wrong order, so need
  1491. ! # the parens.
  1492. ! ac_err=`eval "($ac_cpp conftest.${ac_ext} >/dev/null) 2>&1"`
  1493. ! if test -z "$ac_err"; then
  1494. !   rm -rf conftest*
  1495. !   
  1496. ! {
  1497. ! test -n "$verbose" && \
  1498. ! /bin/echo "    defining ${ac_tr_hdr}"
  1499. ! /bin/echo "#define" ${ac_tr_hdr} "1" >> confdefs.h
  1500. ! DEFS="$DEFS -D${ac_tr_hdr}=1"
  1501.   }
  1502.   
  1503.   fi
  1504.   rm -f conftest*
  1505.   done
  1506.   
  1507.   fi
  1508. ! test -n "$silent" || /bin/echo "checking for directory library header"
  1509. ! ac_dir_header=
  1510. ! if test -z "$ac_dir_header"; then
  1511. !   test -n "$silent" || /bin/echo "checking for dirent.h"
  1512. ! cat > conftest.${ac_ext} <<EOF
  1513. ! #include "confdefs.h"
  1514.   #include <sys/types.h>
  1515.   #include <dirent.h>
  1516. ! int main() { return 0; }
  1517. ! int t() { DIR *dirp = 0;; return 0; }
  1518.   EOF
  1519. ! if eval $ac_compile; then
  1520. !   rm -rf conftest*
  1521. !   
  1522. ! {
  1523.   test -n "$verbose" && \
  1524. ! /bin/echo "    defining DIRENT"
  1525. ! /bin/echo "#define" DIRENT "1" >> confdefs.h
  1526.   DEFS="$DEFS -DDIRENT=1"
  1527.   }
  1528. !  ac_dir_header=dirent.h
  1529.   fi
  1530.   rm -f conftest*
  1531.   fi
  1532. ! if test -z "$ac_dir_header"; then
  1533. !   test -n "$silent" || /bin/echo "checking for sys/ndir.h"
  1534. ! cat > conftest.${ac_ext} <<EOF
  1535. ! #include "confdefs.h"
  1536.   #include <sys/types.h>
  1537.   #include <sys/ndir.h>
  1538. ! int main() { return 0; }
  1539. ! int t() { DIR *dirp = 0;; return 0; }
  1540.   EOF
  1541. ! if eval $ac_compile; then
  1542. !   rm -rf conftest*
  1543. !   
  1544. ! {
  1545.   test -n "$verbose" && \
  1546. ! /bin/echo "    defining SYSNDIR"
  1547. ! /bin/echo "#define" SYSNDIR "1" >> confdefs.h
  1548.   DEFS="$DEFS -DSYSNDIR=1"
  1549.   }
  1550. !  ac_dir_header=sys/ndir.h
  1551.   fi
  1552.   rm -f conftest*
  1553.   fi
  1554. ! if test -z "$ac_dir_header"; then
  1555. !   test -n "$silent" || /bin/echo "checking for sys/dir.h"
  1556. ! cat > conftest.${ac_ext} <<EOF
  1557. ! #include "confdefs.h"
  1558.   #include <sys/types.h>
  1559.   #include <sys/dir.h>
  1560. ! int main() { return 0; }
  1561. ! int t() { DIR *dirp = 0;; return 0; }
  1562.   EOF
  1563. ! if eval $ac_compile; then
  1564. !   rm -rf conftest*
  1565. !   
  1566. ! {
  1567.   test -n "$verbose" && \
  1568. ! /bin/echo "    defining SYSDIR"
  1569. ! /bin/echo "#define" SYSDIR "1" >> confdefs.h
  1570.   DEFS="$DEFS -DSYSDIR=1"
  1571.   }
  1572. !  ac_dir_header=sys/dir.h
  1573.   fi
  1574.   rm -f conftest*
  1575.   fi
  1576. ! if test -z "$ac_dir_header"; then
  1577. !   test -n "$silent" || /bin/echo "checking for ndir.h"
  1578. ! cat > conftest.${ac_ext} <<EOF
  1579. ! #include "confdefs.h"
  1580.   #include <sys/types.h>
  1581.   #include <ndir.h>
  1582. ! int main() { return 0; }
  1583. ! int t() { DIR *dirp = 0;; return 0; }
  1584.   EOF
  1585. ! if eval $ac_compile; then
  1586. !   rm -rf conftest*
  1587. !   
  1588. ! {
  1589.   test -n "$verbose" && \
  1590. ! /bin/echo "    defining NDIR"
  1591. ! /bin/echo "#define" NDIR "1" >> confdefs.h
  1592.   DEFS="$DEFS -DNDIR=1"
  1593.   }
  1594. !  ac_dir_header=ndir.h
  1595.   fi
  1596.   rm -f conftest*
  1597.   fi
  1598.   
  1599. ! test -n "$silent" || /bin/echo "checking for closedir return value"
  1600. ! cat > conftest.${ac_ext} <<EOF
  1601. ! #include "confdefs.h"
  1602.   #include <sys/types.h>
  1603. ! #include <$ac_dir_header>
  1604.   int closedir(); main() { exit(closedir(opendir(".")) != 0); }
  1605.   EOF
  1606. ! eval $ac_compile
  1607.   if test -s conftest && (./conftest; exit) 2>/dev/null; then
  1608.     :
  1609.   else
  1610. !   
  1611. ! {
  1612.   test -n "$verbose" && \
  1613. ! /bin/echo "    defining VOID_CLOSEDIR"
  1614. ! /bin/echo "#define" VOID_CLOSEDIR "1" >> confdefs.h
  1615.   DEFS="$DEFS -DVOID_CLOSEDIR=1"
  1616.   }
  1617.   
  1618.   fi
  1619. ! rm -fr conftest*
  1620.   
  1621. ! test -n "$silent" || /bin/echo "checking for Xenix"
  1622. ! cat > conftest.${ac_ext} <<EOF
  1623. ! #include "confdefs.h"
  1624.   #if defined(M_XENIX) && !defined(M_UNIX)
  1625.     yes
  1626.   #endif
  1627.   
  1628.   EOF
  1629. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1630.   if egrep "yes" conftest.out >/dev/null 2>&1; then
  1631. +   rm -rf conftest*
  1632.     XENIX=1
  1633.   fi
  1634.   rm -f conftest*
  1635.   
  1636. ***************
  1637. *** 617,639 ****
  1638.     esac
  1639.   fi
  1640.   
  1641. ! echo checking for return type of signal handlers
  1642. ! cat > conftest.c <<EOF
  1643.   #include <sys/types.h>
  1644.   #include <signal.h>
  1645.   #ifdef signal
  1646.   #undef signal
  1647.   #endif
  1648.   extern void (*signal ()) ();
  1649. ! int main() { exit(0); }
  1650. ! int t() { int i; }
  1651.   EOF
  1652. ! if eval $compile; then
  1653.     :
  1654.   else
  1655. !   {
  1656.   test -n "$verbose" && \
  1657. ! echo '    defining' RETSIGTYPE to be 'int'
  1658.   DEFS="$DEFS -DRETSIGTYPE=int"
  1659.   }
  1660.   
  1661. --- 979,1005 ----
  1662.     esac
  1663.   fi
  1664.   
  1665. ! test -n "$silent" || /bin/echo "checking for return type of signal handlers"
  1666. ! cat > conftest.${ac_ext} <<EOF
  1667. ! #include "confdefs.h"
  1668.   #include <sys/types.h>
  1669.   #include <signal.h>
  1670.   #ifdef signal
  1671.   #undef signal
  1672.   #endif
  1673.   extern void (*signal ()) ();
  1674. ! int main() { return 0; }
  1675. ! int t() { int i;; return 0; }
  1676.   EOF
  1677. ! if eval $ac_compile; then
  1678.     :
  1679.   else
  1680. !   rm -rf conftest*
  1681. !   
  1682. ! {
  1683.   test -n "$verbose" && \
  1684. ! /bin/echo "    defining" RETSIGTYPE to be "int"
  1685. ! /bin/echo "#define" RETSIGTYPE "int" >> confdefs.h
  1686.   DEFS="$DEFS -DRETSIGTYPE=int"
  1687.   }
  1688.   
  1689. ***************
  1690. *** 641,719 ****
  1691.   rm -f conftest*
  1692.   
  1693.   
  1694. ! echo checking for size_t in sys/types.h
  1695. ! echo '#include <sys/types.h>' > conftest.c
  1696. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  1697.   if egrep "size_t" conftest.out >/dev/null 2>&1; then
  1698.     :
  1699.   else
  1700. !   {
  1701.   test -n "$verbose" && \
  1702. ! echo '    defining' size_t to be 'unsigned'
  1703.   DEFS="$DEFS -Dsize_t=unsigned"
  1704.   }
  1705.   
  1706.   fi
  1707.   rm -f conftest*
  1708.   
  1709. ! echo '#include <sys/types.h>' > conftest.c
  1710. ! eval "$CPP \$DEFS conftest.c > conftest.out 2>&1"
  1711.   if egrep "off_t" conftest.out >/dev/null 2>&1; then
  1712.     :
  1713.   else
  1714. !   {
  1715.   test -n "$verbose" && \
  1716. ! echo '    defining' NO_OFF_T
  1717.   DEFS="$DEFS -DNO_OFF_T=1"
  1718.   }
  1719.   
  1720.   fi
  1721.   rm -f conftest*
  1722.   
  1723. ! echo "checking if \`#!' works in shell scripts"
  1724. ! cat <<'__EOF__' > conftest.csh
  1725. ! #!/bin/csh -f
  1726. ! setenv SHELL /bin/csh
  1727. ! # Avoid tcsh bug 'Bad Hertz Value':
  1728. ! setenv HZ 60
  1729. ! # Make sure foo doesn't get exported into the environment
  1730. ! # Astoundingly, some versions of csh don't have unsetenv.
  1731. ! if (${?foo}) unsetenv foo >& /dev/null
  1732. ! if (${?foo}) unset foo
  1733. ! set output="`./conftest.sh`"
  1734. ! if ( "$output" == "foo=bar" ) then
  1735. !    exit 0
  1736. ! endif
  1737. ! exit 1
  1738. ! __EOF__
  1739. ! cat <<'__EOF__' > conftest.sh
  1740. ! #!/bin/sh
  1741. ! set foo=bar
  1742. ! echo "$*"
  1743. ! __EOF__
  1744. ! chmod 777 conftest.csh conftest.sh
  1745. ! (csh -f ./conftest.csh) 2> /dev/null
  1746. ! if test $? = 0 ; then
  1747. !    :; SEDCMD="1d"
  1748. ! else
  1749. !    :; SEDCMD=""
  1750. ! fi
  1751. ! rm -f conftest.csh conftest.sh
  1752.   if test -z "$prefix"
  1753.   then
  1754. !   echo checking for gzip to derive installation directory prefix
  1755. !   IFS="${IFS=     }"; saveifs="$IFS"; IFS="$IFS:"
  1756. !   for dir in $PATH; do
  1757. !     test -z "$dir" && dir=.
  1758. !     if test $dir != . && test -f $dir/gzip; then
  1759.         # Not all systems have dirname.
  1760. !       prefix=`echo $dir|sed 's%/[^/][^/]*$%%'`
  1761.         break
  1762.       fi
  1763.     done
  1764. !   IFS="$saveifs"
  1765. !   echo "    chose installation directory prefix ${prefix}"
  1766.   fi
  1767.   
  1768.   if test -z "$G" -a -n "$prefix" -a -f $prefix/bin/gznew; then
  1769. --- 1007,1064 ----
  1770.   rm -f conftest*
  1771.   
  1772.   
  1773. ! test -n "$silent" || /bin/echo "checking for size_t in sys/types.h"
  1774. ! /bin/echo '#include "confdefs.h"
  1775. ! #include <sys/types.h>' > conftest.${ac_ext}
  1776. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1777.   if egrep "size_t" conftest.out >/dev/null 2>&1; then
  1778.     :
  1779.   else
  1780. !   rm -rf conftest*
  1781. !   
  1782. ! {
  1783.   test -n "$verbose" && \
  1784. ! /bin/echo "    defining" size_t to be "unsigned"
  1785. ! /bin/echo "#define" size_t "unsigned" >> confdefs.h
  1786.   DEFS="$DEFS -Dsize_t=unsigned"
  1787.   }
  1788.   
  1789.   fi
  1790.   rm -f conftest*
  1791.   
  1792. ! /bin/echo '#include "confdefs.h"
  1793. ! #include <sys/types.h>' > conftest.${ac_ext}
  1794. ! eval "$ac_cpp conftest.${ac_ext} > conftest.out 2>&1"
  1795.   if egrep "off_t" conftest.out >/dev/null 2>&1; then
  1796.     :
  1797.   else
  1798. !   rm -rf conftest*
  1799. !   
  1800. ! {
  1801.   test -n "$verbose" && \
  1802. ! /bin/echo "    defining NO_OFF_T"
  1803. ! /bin/echo "#define" NO_OFF_T "1" >> confdefs.h
  1804.   DEFS="$DEFS -DNO_OFF_T=1"
  1805.   }
  1806.   
  1807.   fi
  1808.   rm -f conftest*
  1809.   
  1810. ! SEDCMD=""
  1811.   if test -z "$prefix"
  1812.   then
  1813. !   test -n "$silent" || /bin/echo "checking for gzip to derive installation directory prefix"
  1814. !   IFS="${IFS=     }"; ac_save_ifs="$IFS"; IFS="$IFS:"
  1815. !   for ac_dir in $PATH; do
  1816. !     test -z "$ac_dir" && ac_dir=.
  1817. !     if test $ac_dir != . && test -f $ac_dir/gzip; then
  1818.         # Not all systems have dirname.
  1819. !       prefix=`/bin/echo $ac_dir|sed 's%/[^/][^/]*$%%'`
  1820.         break
  1821.       fi
  1822.     done
  1823. !   IFS="$ac_save_ifs"
  1824. !   test -n "$verbose" && /bin/echo "    chose installation directory prefix ${prefix}"
  1825.   fi
  1826.   
  1827.   if test -z "$G" -a -n "$prefix" -a -f $prefix/bin/gznew; then
  1828. ***************
  1829. *** 726,749 ****
  1830.       ZCAT=${G}zcat
  1831.     fi
  1832.   fi
  1833.   if test -n "$prefix"; then
  1834. !   test -z "$exec_prefix" && exec_prefix='${prefix}'
  1835. !   prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1836.   fi
  1837.   if test -n "$exec_prefix"; then
  1838. !   prsub="$prsub
  1839. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%\
  1840. ! exec_prefix\\1=\\2$exec_prefix%"
  1841.   fi
  1842.   cat >conftest.def <<EOF
  1843.   $DEFS
  1844.   EOF
  1845. ! escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1846. ! DEFS=`sed "$escape_ampersand_and_backslash" <conftest.def`
  1847.   rm -f conftest.def
  1848.   
  1849. ! trap 'rm -f config.status; exit 1' 1 3 15
  1850. ! echo creating config.status
  1851.   rm -f config.status
  1852.   cat > config.status <<EOF
  1853.   #!/bin/sh
  1854. --- 1071,1103 ----
  1855.       ZCAT=${G}zcat
  1856.     fi
  1857.   fi
  1858. + # Set default prefixes.
  1859.   if test -n "$prefix"; then
  1860. !   test -z "$exec_prefix" && exec_prefix='${prefix}' # Let make expand it.
  1861. !   ac_prsub="s%^prefix\\([     ]*\\)=\\([     ]*\\).*$%prefix\\1=\\2$prefix%"
  1862.   fi
  1863.   if test -n "$exec_prefix"; then
  1864. !   ac_prsub="$ac_prsub
  1865. ! s%^exec_prefix\\([     ]*\\)=\\([     ]*\\).*$%exec_prefix\\1=\\2$exec_prefix%"
  1866. ! fi
  1867. ! # Any assignment to VPATH causes Sun make to only execute
  1868. ! # the first set of double-colon rules, so remove it if not needed.
  1869. ! # If there is a colon in the path, we need to keep it.
  1870. ! if test "x$srcdir" = x.; then
  1871. !   ac_vpsub='/^[     ]*VPATH[     ]*=[^:]*$/d'
  1872.   fi
  1873. + # Quote sed substitution magic chars in DEFS.
  1874.   cat >conftest.def <<EOF
  1875.   $DEFS
  1876.   EOF
  1877. ! ac_escape_ampersand_and_backslash='s%[&\\]%\\&%g'
  1878. ! DEFS=`sed "$ac_escape_ampersand_and_backslash" <conftest.def`
  1879.   rm -f conftest.def
  1880. + # Substitute for predefined variables.
  1881.   
  1882. ! trap 'rm -f config.status; exit 1' 1 2 15
  1883. ! /bin/echo creating config.status
  1884.   rm -f config.status
  1885.   cat > config.status <<EOF
  1886.   #!/bin/sh
  1887. ***************
  1888. *** 752,769 ****
  1889.   # This directory was configured as follows,
  1890.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1891.   #
  1892. ! # $0 $*
  1893.   
  1894. ! for arg
  1895.   do
  1896. !   case "\$arg" in
  1897. !     -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1898. !     exec /bin/sh $0 $* ;;
  1899. !     *) echo "Usage: config.status --recheck" 2>&1; exit 1 ;;
  1900.     esac
  1901.   done
  1902.   
  1903. ! trap 'rm -f Makefile; exit 1' 1 3 15
  1904.   CC='$CC'
  1905.   CPP='$CPP'
  1906.   INSTALL='$INSTALL'
  1907. --- 1106,1130 ----
  1908.   # This directory was configured as follows,
  1909.   # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1910.   #
  1911. ! # $0 $configure_args
  1912.   
  1913. ! ac_cs_usage="Usage: config.status [--recheck] [--version] [--help]"
  1914. ! for ac_option
  1915.   do
  1916. !   case "\$ac_option" in
  1917. !   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  1918. !     /bin/echo running \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create
  1919. !     exec \${CONFIG_SHELL-/bin/sh} $0 $configure_args --no-create ;;
  1920. !   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  1921. !     /bin/echo "config.status generated by autoconf version 1.9"
  1922. !     exit 0 ;;
  1923. !   -help | --help | --hel | --he | --h)
  1924. !     /bin/echo "\$ac_cs_usage"; exit 0 ;;
  1925. !   *) /bin/echo "\$ac_cs_usage"; exit 1 ;;
  1926.     esac
  1927.   done
  1928.   
  1929. ! trap 'rm -f Makefile; exit 1' 1 2 15
  1930.   CC='$CC'
  1931.   CPP='$CPP'
  1932.   INSTALL='$INSTALL'
  1933. ***************
  1934. *** 777,807 ****
  1935.   SEDCMD='$SEDCMD'
  1936.   LIBS='$LIBS'
  1937.   srcdir='$srcdir'
  1938. ! DEFS='$DEFS'
  1939.   prefix='$prefix'
  1940.   exec_prefix='$exec_prefix'
  1941. ! prsub='$prsub'
  1942.   EOF
  1943.   cat >> config.status <<\EOF
  1944.   
  1945. ! top_srcdir=$srcdir
  1946. ! # Allow make-time overrides of the generated file list.
  1947. ! test -n "$gen_files" || gen_files="Makefile"
  1948.   
  1949. ! for file in .. $gen_files; do if [ "x$file" != "x.." ]; then
  1950. !   srcdir=$top_srcdir
  1951.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1952. !   dir=`echo $file|sed 's%/[^/][^/]*$%%'`
  1953. !   if test "$dir" != "$file"; then
  1954. !     test "$top_srcdir" != . && srcdir=$top_srcdir/$dir
  1955. !     test ! -d $dir && mkdir $dir
  1956.     fi
  1957. !   echo creating $file
  1958. !   rm -f $file
  1959. !   echo "# Generated automatically from `echo $file|sed 's|.*/||'`.in by configure." > $file
  1960.     sed -e "
  1961. ! $prsub
  1962.   s%@CC@%$CC%g
  1963.   s%@CPP@%$CPP%g
  1964.   s%@INSTALL@%$INSTALL%g
  1965. --- 1138,1188 ----
  1966.   SEDCMD='$SEDCMD'
  1967.   LIBS='$LIBS'
  1968.   srcdir='$srcdir'
  1969. ! top_srcdir='$top_srcdir'
  1970.   prefix='$prefix'
  1971.   exec_prefix='$exec_prefix'
  1972. ! DEFS='$DEFS'
  1973. ! ac_prsub='$ac_prsub'
  1974. ! ac_vpsub='$ac_vpsub'
  1975. ! extrasub='$extrasub'
  1976.   EOF
  1977.   cat >> config.status <<\EOF
  1978.   
  1979. ! ac_given_srcdir=$srcdir
  1980.   
  1981. ! CONFIG_FILES=${CONFIG_FILES-"Makefile"}
  1982. ! for ac_file in .. ${CONFIG_FILES}; do if test "x$ac_file" != x..; then
  1983.     # Remove last slash and all that follows it.  Not all systems have dirname.
  1984. !   ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
  1985. !   if test "$ac_dir" != "$ac_file"; then
  1986. !     # The file is in a subdirectory.
  1987. !     test ! -d "$ac_dir" && mkdir "$ac_dir"
  1988. !     ac_dir_suffix="/$ac_dir"
  1989. !   else
  1990. !     ac_dir_suffix=
  1991.     fi
  1992. !   # A "../" for each directory in $ac_dir_suffix.
  1993. !   ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  1994. !   case "$ac_given_srcdir" in
  1995. !   .)  srcdir=.; top_srcdir="$ac_dots." ;;
  1996. !   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  1997. !   *) # Relative path.
  1998. !     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  1999. !     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  2000. !   esac
  2001. !   /bin/echo creating "$ac_file"
  2002. !   rm -f "$ac_file"
  2003. !   comment_str="Generated automatically from `/bin/echo $ac_file|sed 's|.*/||'`.in by configure."
  2004. !   case "$ac_file" in
  2005. !     *.c | *.h | *.C | *.cc | *.m )  /bin/echo "/* $comment_str */" > "$ac_file" ;;
  2006. !     * )          /bin/echo "# $comment_str"     > "$ac_file" ;;
  2007. !   esac
  2008.     sed -e "
  2009. ! $ac_prsub
  2010. ! $ac_vpsub
  2011. ! $extrasub
  2012.   s%@CC@%$CC%g
  2013.   s%@CPP@%$CPP%g
  2014.   s%@INSTALL@%$INSTALL%g
  2015. ***************
  2016. *** 815,826 ****
  2017.   s%@SEDCMD@%$SEDCMD%g
  2018.   s%@LIBS@%$LIBS%g
  2019.   s%@srcdir@%$srcdir%g
  2020.   s%@DEFS@%$DEFS%
  2021. ! " $top_srcdir/${file}.in >> $file
  2022.   fi; done
  2023.   
  2024.   exit 0
  2025.   EOF
  2026.   chmod +x config.status
  2027. ! test -n "$no_create" || ./config.status
  2028.   
  2029. --- 1196,1211 ----
  2030.   s%@SEDCMD@%$SEDCMD%g
  2031.   s%@LIBS@%$LIBS%g
  2032.   s%@srcdir@%$srcdir%g
  2033. + s%@top_srcdir@%$top_srcdir%g
  2034. + s%@prefix@%$prefix%g
  2035. + s%@exec_prefix@%$exec_prefix%g
  2036.   s%@DEFS@%$DEFS%
  2037. ! " $ac_given_srcdir/${ac_file}.in >> $ac_file
  2038.   fi; done
  2039.   
  2040.   exit 0
  2041.   EOF
  2042.   chmod +x config.status
  2043. ! test -n "$no_create" || ${CONFIG_SHELL-/bin/sh} config.status
  2044.   
  2045. diff -rc --new-file gzip-1.2.4/configure.in /gnu/src/amiga/gzip-1.2.4/configure.in
  2046. *** gzip-1.2.4/configure.in    Wed Jul  7 15:01:58 1993
  2047. --- /gnu/src/amiga/gzip-1.2.4/configure.in    Mon Apr 25 20:45:43 1994
  2048. ***************
  2049. *** 26,32 ****
  2050.   dnl cc -E produces incorrect asm files on SVR4, we must use /lib/cpp.
  2051.   dnl Also, "gcc -E match.s" ignores -E, so we must use match.S.
  2052.   echo checking for underline in external names
  2053. - test -z "$ASCPP" -a -f /lib/cpp && ASCPP=/lib/cpp
  2054.   test -z "$ASCPP" && ASCPP="$CC -E"
  2055.   cat > conftest.c <<EOF
  2056.   int foo() {return 0;}
  2057. --- 26,31 ----
  2058. ***************
  2059. *** 77,83 ****
  2060.   AC_RETSIGTYP
  2061.   AC_SIZE_T
  2062.   AC_HEADER_EGREP(off_t, sys/types.h, ,AC_DEFINE(NO_OFF_T))
  2063. ! AC_HAVE_POUNDBANG([SEDCMD="1d"], [SEDCMD=""])
  2064.   AC_PREFIX(gzip)
  2065.   if test -z "$G" -a -n "$prefix" -a -f $prefix/bin/gznew; then
  2066.     G=g
  2067. --- 76,82 ----
  2068.   AC_RETSIGTYP
  2069.   AC_SIZE_T
  2070.   AC_HEADER_EGREP(off_t, sys/types.h, ,AC_DEFINE(NO_OFF_T))
  2071. ! SEDCMD=""
  2072.   AC_PREFIX(gzip)
  2073.   if test -z "$G" -a -n "$prefix" -a -f $prefix/bin/gznew; then
  2074.     G=g
  2075. diff -rc --new-file gzip-1.2.4/gzexe.in /gnu/src/amiga/gzip-1.2.4/gzexe.in
  2076. *** gzip-1.2.4/gzexe.in    Thu Jun 24 10:25:05 1993
  2077. --- /gnu/src/amiga/gzip-1.2.4/gzexe.in    Thu Feb 24 00:08:37 1994
  2078. ***************
  2079. *** 1,4 ****
  2080. - :
  2081.   #!/bin/sh
  2082.   # gzexe: compressor for Unix executables.
  2083.   # Use this only for binaries that you do not use frequently.
  2084. --- 1,3 ----
  2085. diff -rc --new-file gzip-1.2.4/sample/ztouch /gnu/src/amiga/gzip-1.2.4/sample/ztouch
  2086. *** gzip-1.2.4/sample/ztouch    Thu May 27 14:28:42 1993
  2087. --- /gnu/src/amiga/gzip-1.2.4/sample/ztouch    Wed Feb 23 18:33:48 1994
  2088. ***************
  2089. *** 1,4 ****
  2090. ! #! /usr/local/bin/perl
  2091.   # Set the time stamp of a gzip'ed file from that stored in the file.
  2092.   # usage: ztouch files...
  2093.   
  2094. --- 1,4 ----
  2095. ! #! /bin/perl
  2096.   # Set the time stamp of a gzip'ed file from that stored in the file.
  2097.   # usage: ztouch files...
  2098.   
  2099. diff -rc --new-file gzip-1.2.4/tailor.h /gnu/src/amiga/gzip-1.2.4/tailor.h
  2100. *** gzip-1.2.4/tailor.h    Mon Aug 16 21:19:55 1993
  2101. --- /gnu/src/amiga/gzip-1.2.4/tailor.h    Wed Feb 23 23:53:25 1994
  2102. ***************
  2103. *** 171,185 ****
  2104.   #  endif
  2105.   #endif
  2106.   
  2107.   #ifdef AMIGA
  2108.   #  define PATH_SEP2 ':'
  2109.   #  define STDC_HEADERS
  2110.   #  define OS_CODE  0x01
  2111. ! #  define ASMV
  2112. ! #  ifdef __GNUC__
  2113. ! #    define DIRENT
  2114. ! #    define HAVE_UNISTD_H
  2115. ! #  else /* SASC */
  2116.   #    define NO_STDIN_FSTAT
  2117.   #    define SYSDIR
  2118.   #    define NO_SYMLINK
  2119. --- 171,184 ----
  2120.   #  endif
  2121.   #endif
  2122.   
  2123. + /* The Amiga version using gcc can just use the normal configure to
  2124. +    set ASMV, HAVE_UNISTD_H, and DIRENT */
  2125.   #ifdef AMIGA
  2126.   #  define PATH_SEP2 ':'
  2127.   #  define STDC_HEADERS
  2128.   #  define OS_CODE  0x01
  2129. ! #  ifndef __GNUC__ /* SASC */
  2130.   #    define NO_STDIN_FSTAT
  2131.   #    define SYSDIR
  2132.   #    define NO_SYMLINK
  2133. diff -rc --new-file gzip-1.2.4/zdiff.in /gnu/src/amiga/gzip-1.2.4/zdiff.in
  2134. *** gzip-1.2.4/zdiff.in    Mon Aug 16 22:32:16 1993
  2135. --- /gnu/src/amiga/gzip-1.2.4/zdiff.in    Thu Feb 24 00:08:50 1994
  2136. ***************
  2137. *** 1,4 ****
  2138. - :
  2139.   #!/bin/sh
  2140.   # sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh
  2141.   
  2142. --- 1,3 ----
  2143. diff -rc --new-file gzip-1.2.4/zforce.in /gnu/src/amiga/gzip-1.2.4/zforce.in
  2144. *** gzip-1.2.4/zforce.in    Fri Jun 11 11:36:14 1993
  2145. --- /gnu/src/amiga/gzip-1.2.4/zforce.in    Thu Feb 24 00:09:01 1994
  2146. ***************
  2147. *** 1,4 ****
  2148. - :
  2149.   #!/bin/sh
  2150.   # zforce: force a gz extension on all gzip files so that gzip will not
  2151.   # compress them twice.
  2152. --- 1,3 ----
  2153. diff -rc --new-file gzip-1.2.4/zgrep.in /gnu/src/amiga/gzip-1.2.4/zgrep.in
  2154. *** gzip-1.2.4/zgrep.in    Wed Jun 23 07:51:32 1993
  2155. --- /gnu/src/amiga/gzip-1.2.4/zgrep.in    Thu Feb 24 00:09:09 1994
  2156. ***************
  2157. *** 1,4 ****
  2158. - :
  2159.   #!/bin/sh
  2160.   
  2161.   # zgrep -- a wrapper around a grep program that decompresses files as needed
  2162. --- 1,3 ----
  2163. diff -rc --new-file gzip-1.2.4/zmore.in /gnu/src/amiga/gzip-1.2.4/zmore.in
  2164. *** gzip-1.2.4/zmore.in    Tue Aug 17 17:23:22 1993
  2165. --- /gnu/src/amiga/gzip-1.2.4/zmore.in    Thu Feb 24 00:09:49 1994
  2166. ***************
  2167. *** 1,4 ****
  2168. - :
  2169.   #!/bin/sh
  2170.   
  2171.   PATH="BINDIR:$PATH"; export PATH
  2172. --- 1,3 ----
  2173. ***************
  2174. *** 25,31 ****
  2175.       if test -t 0; then
  2176.       echo usage: zmore files...
  2177.       else
  2178. !     gzip -cdfq | eval ${PAGER-more}
  2179.       fi
  2180.   else
  2181.       FIRST=1
  2182. --- 24,30 ----
  2183.       if test -t 0; then
  2184.       echo usage: zmore files...
  2185.       else
  2186. !     gzip -cdfq | eval ${PAGER-less}
  2187.       fi
  2188.   else
  2189.       FIRST=1
  2190. ***************
  2191. *** 43,49 ****
  2192.       fi
  2193.       if test "$ANS" != 's'; then
  2194.           echo "------> $FILE <------"
  2195. !         gzip -cdfq "$FILE" | eval ${PAGER-more}
  2196.       fi
  2197.       if test -t; then
  2198.           FIRST=0
  2199. --- 42,48 ----
  2200.       fi
  2201.       if test "$ANS" != 's'; then
  2202.           echo "------> $FILE <------"
  2203. !         gzip -cdfq "$FILE" | eval ${PAGER-less}
  2204.       fi
  2205.       if test -t; then
  2206.           FIRST=0
  2207. diff -rc --new-file gzip-1.2.4/znew.in /gnu/src/amiga/gzip-1.2.4/znew.in
  2208. *** gzip-1.2.4/znew.in    Wed Jun 23 08:00:25 1993
  2209. --- /gnu/src/amiga/gzip-1.2.4/znew.in    Thu Feb 24 00:10:02 1994
  2210. ***************
  2211. *** 1,4 ****
  2212. - :
  2213.   #!/bin/sh
  2214.   
  2215.   PATH="BINDIR:$PATH"; export PATH
  2216. --- 1,3 ----
  2217.