home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / uuencode-1.0-src.lha / src / diffs / uuencode-1.0.diffs
Text File  |  1994-02-24  |  3KB  |  94 lines

  1. diff -rc uuencode-1.0-fsf/INSTALL uuencode-1.0-amiga/INSTALL
  2. *** uuencode-1.0-fsf/INSTALL    Mon Aug 23 19:30:53 1993
  3. --- uuencode-1.0-amiga/INSTALL    Thu Feb 24 17:47:22 1994
  4. ***************
  5. *** 33,40 ****
  6.   DIR is the directory that contains the source code.
  7.   
  8.   By default, `make install' will install the package's files in
  9. ! /usr/local/bin, /usr/local/lib, /usr/local/man, etc.  You can specify 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. --- 33,40 ----
  15.   DIR is the directory that contains the source code.
  16.   
  17.   By default, `make install' will install the package's files in
  18. ! /gnu/bin, /gnu/lib, /gnu/man, etc.  You can specify 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. diff -rc uuencode-1.0-fsf/Makefile.in uuencode-1.0-amiga/Makefile.in
  24. *** uuencode-1.0-fsf/Makefile.in    Mon Aug 23 19:35:45 1993
  25. --- uuencode-1.0-amiga/Makefile.in    Thu Feb 24 17:47:38 1994
  26. ***************
  27. *** 18,27 ****
  28.   DEFS = @DEFS@
  29.   LIBS = @LIBS@
  30.   
  31. ! CFLAGS = -g
  32. ! LDFLAGS = -g
  33.   
  34. ! prefix = /usr/local
  35.   exec_prefix = $(prefix)
  36.   
  37.   bindir = $(exec_prefix)/bin
  38. --- 18,27 ----
  39.   DEFS = @DEFS@
  40.   LIBS = @LIBS@
  41.   
  42. ! CFLAGS = -O2
  43. ! LDFLAGS =
  44.   
  45. ! prefix = /gnu
  46.   exec_prefix = $(prefix)
  47.   
  48.   bindir = $(exec_prefix)/bin
  49. diff -rc uuencode-1.0-fsf/configure uuencode-1.0-amiga/configure
  50. *** uuencode-1.0-fsf/configure    Mon Aug 23 19:26:28 1993
  51. --- uuencode-1.0-amiga/configure    Thu Feb 24 17:46:47 1994
  52. ***************
  53. *** 98,104 ****
  54.     srcdirdefaulted=yes
  55.     # Try the directory containing this script, then `..'.
  56.     prog=$0
  57. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  58.     test "X$confdir" = "X$prog" && confdir=.
  59.     srcdir=$confdir
  60.     if test ! -r $srcdir/$unique_file; then
  61. --- 98,104 ----
  62.     srcdirdefaulted=yes
  63.     # Try the directory containing this script, then `..'.
  64.     prog=$0
  65. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  66.     test "X$confdir" = "X$prog" && confdir=.
  67.     srcdir=$confdir
  68.     if test ! -r $srcdir/$unique_file; then
  69. diff -rc uuencode-1.0-fsf/mkinstalldirs uuencode-1.0-amiga/mkinstalldirs
  70. *** uuencode-1.0-fsf/mkinstalldirs    Mon Aug 23 18:59:34 1993
  71. --- uuencode-1.0-amiga/mkinstalldirs    Thu Feb 24 17:45:40 1994
  72. ***************
  73. *** 29,33 ****
  74. --- 29,34 ----
  75.        pathcomp="${pathcomp}/"
  76.      done
  77.   done
  78. + exit 0
  79.   
  80.   # eof
  81. diff -rc uuencode-1.0-fsf/uudecode.c uuencode-1.0-amiga/uudecode.c
  82. *** uuencode-1.0-fsf/uudecode.c    Mon Aug 23 19:27:02 1993
  83. --- uuencode-1.0-amiga/uudecode.c    Thu Feb 24 17:45:41 1994
  84. ***************
  85. *** 44,49 ****
  86. --- 44,50 ----
  87.    * create the specified file, decoding as you go.
  88.    * used with uuencode.
  89.    */
  90. + #include <sys/types.h>
  91.   #include <sys/stat.h>
  92.   #include <pwd.h>
  93.   #include <stdio.h>
  94.