home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / gzip-1.2.4-src.lha / src / diffs / gzip-1.2.4.diffs
Encoding:
Text File  |  1994-02-24  |  7.8 KB  |  285 lines

  1. diff -rc gzip-1.2.4-fsf/INSTALL gzip-1.2.4-amiga/INSTALL
  2. *** gzip-1.2.4-fsf/INSTALL    Thu Aug 19 10:35:42 1993
  3. --- gzip-1.2.4-amiga/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 gzip-1.2.4-fsf/Makefile.in gzip-1.2.4-amiga/Makefile.in
  35. *** gzip-1.2.4-fsf/Makefile.in    Tue Aug 17 17:12:40 1993
  36. --- gzip-1.2.4-amiga/Makefile.in    Wed Feb 23 18:32:13 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. diff -rc gzip-1.2.4-fsf/configure gzip-1.2.4-amiga/configure
  55. *** gzip-1.2.4-fsf/configure    Wed Jul  7 15:02:04 1993
  56. --- gzip-1.2.4-amiga/configure    Wed Feb 23 18:33:07 1994
  57. ***************
  58. *** 99,105 ****
  59.     srcdirdefaulted=yes
  60.     # Try the directory containing this script, then `..'.
  61.     prog=$0
  62. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  63.     test "X$confdir" = "X$prog" && confdir=.
  64.     srcdir=$confdir
  65.     if test ! -r $srcdir/$unique_file; then
  66. --- 99,105 ----
  67.     srcdirdefaulted=yes
  68.     # Try the directory containing this script, then `..'.
  69.     prog=$0
  70. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  71.     test "X$confdir" = "X$prog" && confdir=.
  72.     srcdir=$confdir
  73.     if test ! -r $srcdir/$unique_file; then
  74. ***************
  75. *** 147,153 ****
  76.   ${CC-cc} -E conftest.c > conftest.out 2>&1
  77.   if egrep yes conftest.out >/dev/null 2>&1; then
  78.     GCC=1 # For later tests.
  79. !   CFLAGS="${CFLAGS--O}"
  80.   fi
  81.   rm -f conftest*
  82.   
  83. --- 147,153 ----
  84.   ${CC-cc} -E conftest.c > conftest.out 2>&1
  85.   if egrep yes conftest.out >/dev/null 2>&1; then
  86.     GCC=1 # For later tests.
  87. !   CFLAGS="${CFLAGS--O2}"
  88.   fi
  89.   rm -f conftest*
  90.   
  91. ***************
  92. *** 167,173 ****
  93.   fi
  94.   
  95.   echo checking for underline in external names
  96. ! test -z "$ASCPP" -a -f /lib/cpp && ASCPP=/lib/cpp
  97.   test -z "$ASCPP" && ASCPP="$CC -E"
  98.   cat > conftest.c <<EOF
  99.   int foo() {return 0;}
  100. --- 167,173 ----
  101.   fi
  102.   
  103.   echo checking for underline in external names
  104. ! test -z "$ASCPP" -a -f /gnu/lib/cpp && ASCPP=/gnu/lib/cpp
  105.   test -z "$ASCPP" && ASCPP="$CC -E"
  106.   cat > conftest.c <<EOF
  107.   int foo() {return 0;}
  108. ***************
  109. *** 287,293 ****
  110.   
  111.   echo checking for POSIXized ISC
  112.   if test -d /etc/conf/kconfig.d &&
  113. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  114.   then
  115.     ISC=1 # If later tests want to check for ISC.
  116.     {
  117. --- 287,293 ----
  118.   
  119.   echo checking for POSIXized ISC
  120.   if test -d /etc/conf/kconfig.d &&
  121. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  122.   then
  123.     ISC=1 # If later tests want to check for ISC.
  124.     {
  125. ***************
  126. *** 316,322 ****
  127.   fi
  128.   rm -f conftest*
  129.   
  130. ! test -n "$SEQUENT" && test -f /usr/lib/libseq.a &&
  131.     LIBS="$LIBS -lseq"
  132.   
  133.   echo checking for ANSI C header files
  134. --- 316,322 ----
  135.   fi
  136.   rm -f conftest*
  137.   
  138. ! test -n "$SEQUENT" && test -f /gnu/lib/libseq.a &&
  139.     LIBS="$LIBS -lseq"
  140.   
  141.   echo checking for ANSI C header files
  142. diff -rc gzip-1.2.4-fsf/gzexe.in gzip-1.2.4-amiga/gzexe.in
  143. *** gzip-1.2.4-fsf/gzexe.in    Thu Jun 24 10:25:05 1993
  144. --- gzip-1.2.4-amiga/gzexe.in    Thu Feb 24 00:08:37 1994
  145. ***************
  146. *** 1,4 ****
  147. - :
  148.   #!/bin/sh
  149.   # gzexe: compressor for Unix executables.
  150.   # Use this only for binaries that you do not use frequently.
  151. --- 1,3 ----
  152. diff -rc gzip-1.2.4-fsf/sample/ztouch gzip-1.2.4-amiga/sample/ztouch
  153. *** gzip-1.2.4-fsf/sample/ztouch    Thu May 27 14:28:42 1993
  154. --- gzip-1.2.4-amiga/sample/ztouch    Wed Feb 23 18:33:48 1994
  155. ***************
  156. *** 1,4 ****
  157. ! #! /usr/local/bin/perl
  158.   # Set the time stamp of a gzip'ed file from that stored in the file.
  159.   # usage: ztouch files...
  160.   
  161. --- 1,4 ----
  162. ! #! /bin/perl
  163.   # Set the time stamp of a gzip'ed file from that stored in the file.
  164.   # usage: ztouch files...
  165.   
  166. diff -rc gzip-1.2.4-fsf/tailor.h gzip-1.2.4-amiga/tailor.h
  167. *** gzip-1.2.4-fsf/tailor.h    Mon Aug 16 21:19:55 1993
  168. --- gzip-1.2.4-amiga/tailor.h    Wed Feb 23 23:53:25 1994
  169. ***************
  170. *** 171,185 ****
  171.   #  endif
  172.   #endif
  173.   
  174.   #ifdef AMIGA
  175.   #  define PATH_SEP2 ':'
  176.   #  define STDC_HEADERS
  177.   #  define OS_CODE  0x01
  178. ! #  define ASMV
  179. ! #  ifdef __GNUC__
  180. ! #    define DIRENT
  181. ! #    define HAVE_UNISTD_H
  182. ! #  else /* SASC */
  183.   #    define NO_STDIN_FSTAT
  184.   #    define SYSDIR
  185.   #    define NO_SYMLINK
  186. --- 171,184 ----
  187.   #  endif
  188.   #endif
  189.   
  190. + /* The Amiga version using gcc can just use the normal configure to
  191. +    set ASMV, HAVE_UNISTD_H, and DIRENT */
  192.   #ifdef AMIGA
  193.   #  define PATH_SEP2 ':'
  194.   #  define STDC_HEADERS
  195.   #  define OS_CODE  0x01
  196. ! #  ifndef __GNUC__ /* SASC */
  197.   #    define NO_STDIN_FSTAT
  198.   #    define SYSDIR
  199.   #    define NO_SYMLINK
  200. diff -rc gzip-1.2.4-fsf/zdiff.in gzip-1.2.4-amiga/zdiff.in
  201. *** gzip-1.2.4-fsf/zdiff.in    Mon Aug 16 22:32:16 1993
  202. --- gzip-1.2.4-amiga/zdiff.in    Thu Feb 24 00:08:50 1994
  203. ***************
  204. *** 1,4 ****
  205. - :
  206.   #!/bin/sh
  207.   # sh is buggy on RS/6000 AIX 3.2. Replace above line with #!/bin/ksh
  208.   
  209. --- 1,3 ----
  210. diff -rc gzip-1.2.4-fsf/zforce.in gzip-1.2.4-amiga/zforce.in
  211. *** gzip-1.2.4-fsf/zforce.in    Fri Jun 11 11:36:14 1993
  212. --- gzip-1.2.4-amiga/zforce.in    Thu Feb 24 00:09:01 1994
  213. ***************
  214. *** 1,4 ****
  215. - :
  216.   #!/bin/sh
  217.   # zforce: force a gz extension on all gzip files so that gzip will not
  218.   # compress them twice.
  219. --- 1,3 ----
  220. diff -rc gzip-1.2.4-fsf/zgrep.in gzip-1.2.4-amiga/zgrep.in
  221. *** gzip-1.2.4-fsf/zgrep.in    Wed Jun 23 07:51:32 1993
  222. --- gzip-1.2.4-amiga/zgrep.in    Thu Feb 24 00:09:09 1994
  223. ***************
  224. *** 1,4 ****
  225. - :
  226.   #!/bin/sh
  227.   
  228.   # zgrep -- a wrapper around a grep program that decompresses files as needed
  229. --- 1,3 ----
  230. diff -rc gzip-1.2.4-fsf/zmore.in gzip-1.2.4-amiga/zmore.in
  231. *** gzip-1.2.4-fsf/zmore.in    Tue Aug 17 17:23:22 1993
  232. --- gzip-1.2.4-amiga/zmore.in    Thu Feb 24 00:09:49 1994
  233. ***************
  234. *** 1,4 ****
  235. - :
  236.   #!/bin/sh
  237.   
  238.   PATH="BINDIR:$PATH"; export PATH
  239. --- 1,3 ----
  240. ***************
  241. *** 25,31 ****
  242.       if test -t 0; then
  243.       echo usage: zmore files...
  244.       else
  245. !     gzip -cdfq | eval ${PAGER-more}
  246.       fi
  247.   else
  248.       FIRST=1
  249. --- 24,30 ----
  250.       if test -t 0; then
  251.       echo usage: zmore files...
  252.       else
  253. !     gzip -cdfq | eval ${PAGER-less}
  254.       fi
  255.   else
  256.       FIRST=1
  257. ***************
  258. *** 43,49 ****
  259.       fi
  260.       if test "$ANS" != 's'; then
  261.           echo "------> $FILE <------"
  262. !         gzip -cdfq "$FILE" | eval ${PAGER-more}
  263.       fi
  264.       if test -t; then
  265.           FIRST=0
  266. --- 42,48 ----
  267.       fi
  268.       if test "$ANS" != 's'; then
  269.           echo "------> $FILE <------"
  270. !         gzip -cdfq "$FILE" | eval ${PAGER-less}
  271.       fi
  272.       if test -t; then
  273.           FIRST=0
  274. diff -rc gzip-1.2.4-fsf/znew.in gzip-1.2.4-amiga/znew.in
  275. *** gzip-1.2.4-fsf/znew.in    Wed Jun 23 08:00:25 1993
  276. --- gzip-1.2.4-amiga/znew.in    Thu Feb 24 00:10:02 1994
  277. ***************
  278. *** 1,4 ****
  279. - :
  280.   #!/bin/sh
  281.   
  282.   PATH="BINDIR:$PATH"; export PATH
  283. --- 1,3 ----
  284.