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

  1. diff -rc sed-2.03-fsf/INSTALL sed-2.03-amiga/INSTALL
  2. *** sed-2.03-fsf/INSTALL    Tue Oct 13 06:02:01 1992
  3. --- sed-2.03-amiga/INSTALL    Thu Feb 24 11:55:59 1994
  4. ***************
  5. *** 28,35 ****
  6.   directory.
  7.   
  8.   By default, `make install' will install the package's files in
  9. ! /usr/local/bin, /usr/local/lib, /usr/local/man, etc.  You can specify
  10. ! an installation prefix other than /usr/local by giving `configure' the
  11.   option `--prefix=PATH'.  Alternately, you can do so by changing the
  12.   `prefix' variable in the Makefile that `configure' creates (the
  13.   Makefile in the top-level directory, if the package contains
  14. --- 28,35 ----
  15.   directory.
  16.   
  17.   By default, `make install' will install the package's files in
  18. ! /gnu/bin, /gnu/lib, /gnu/man, etc.  You can specify
  19. ! an installation prefix other than /gnu by giving `configure' the
  20.   option `--prefix=PATH'.  Alternately, you can do so by changing the
  21.   `prefix' variable in the Makefile that `configure' creates (the
  22.   Makefile in the top-level directory, if the package contains
  23. diff -rc sed-2.03-fsf/Makefile.in sed-2.03-amiga/Makefile.in
  24. *** sed-2.03-fsf/Makefile.in    Mon Aug  9 03:38:08 1993
  25. --- sed-2.03-amiga/Makefile.in    Thu Feb 24 11:55:47 1994
  26. ***************
  27. *** 39,49 ****
  28.   DEFS = @DEFS@
  29.   LIBS = @LIBS@
  30.   
  31. ! CFLAGS = -g 
  32. ! LDFLAGS = -g
  33.   extra_objs =@ALLOCA@
  34.   
  35. ! prefix = /usr/local
  36.   exec_prefix = $(prefix)
  37.   
  38.   # Prefix for each installed program, normally empty or `g'.
  39. --- 39,49 ----
  40.   DEFS = @DEFS@
  41.   LIBS = @LIBS@
  42.   
  43. ! CFLAGS = -O2
  44. ! LDFLAGS =
  45.   extra_objs =@ALLOCA@
  46.   
  47. ! prefix = /gnu
  48.   exec_prefix = $(prefix)
  49.   
  50.   # Prefix for each installed program, normally empty or `g'.
  51. diff -rc sed-2.03-fsf/configure sed-2.03-amiga/configure
  52. *** sed-2.03-fsf/configure    Sat Aug  7 15:19:05 1993
  53. --- sed-2.03-amiga/configure    Thu Feb 24 11:55:08 1994
  54. ***************
  55. *** 98,104 ****
  56.     srcdirdefaulted=yes
  57.     # Try the directory containing this script, then `..'.
  58.     prog=$0
  59. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  60.     test "X$confdir" = "X$prog" && confdir=.
  61.     srcdir=$confdir
  62.     if test ! -r $srcdir/$unique_file; then
  63. --- 98,104 ----
  64.     srcdirdefaulted=yes
  65.     # Try the directory containing this script, then `..'.
  66.     prog=$0
  67. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  68.     test "X$confdir" = "X$prog" && confdir=.
  69.     srcdir=$confdir
  70.     if test ! -r $srcdir/$unique_file; then
  71. ***************
  72. *** 249,255 ****
  73.   
  74.   echo checking for POSIXized ISC
  75.   if test -d /etc/conf/kconfig.d &&
  76. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  77.   then
  78.     ISC=1 # If later tests want to check for ISC.
  79.     
  80. --- 249,255 ----
  81.   
  82.   echo checking for POSIXized ISC
  83.   if test -d /etc/conf/kconfig.d &&
  84. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  85.   then
  86.     ISC=1 # If later tests want to check for ISC.
  87.     
  88. diff -rc sed-2.03-fsf/sed.c sed-2.03-amiga/sed.c
  89. *** sed-2.03-fsf/sed.c    Sat Aug  7 04:54:04 1993
  90. --- sed-2.03-amiga/sed.c    Thu Feb 24 12:12:03 1994
  91. ***************
  92. *** 369,375 ****
  93.     {NULL, 0, NULL, 0}
  94.   };
  95.   
  96. ! void
  97.   main (argc, argv)
  98.        int argc;
  99.        char **argv;
  100. --- 369,375 ----
  101.     {NULL, 0, NULL, 0}
  102.   };
  103.   
  104. ! int
  105.   main (argc, argv)
  106.        int argc;
  107.        char **argv;
  108.