home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / diffutils-2.6-src.lha / src / diffs / diffutils-2.6.diffs
Text File  |  1994-02-23  |  5KB  |  161 lines

  1. diff -rc diffutils-2.6-fsf/INSTALL diffutils-2.6-amiga/INSTALL
  2. *** diffutils-2.6-fsf/INSTALL    Wed Sep 15 23:05:10 1993
  3. --- diffutils-2.6-amiga/INSTALL    Wed Feb 23 14:51:30 1994
  4. ***************
  5. *** 35,42 ****
  6.   where 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/man', etc.  You can specify an
  10. ! installation prefix other than `/usr/local' by giving `configure' the
  11.   option `--prefix=PATH'.  Alternately, you can do so by consistently
  12.   giving a value for the `prefix' variable when you run `make', e.g.,
  13.        make prefix=/usr/gnu
  14. --- 35,42 ----
  15.   where 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/man', etc.  You can specify an
  19. ! installation prefix other than `/gnu' by giving `configure' the
  20.   option `--prefix=PATH'.  Alternately, you can do so by consistently
  21.   giving a value for the `prefix' variable when you run `make', e.g.,
  22.        make prefix=/usr/gnu
  23. diff -rc diffutils-2.6-fsf/Makefile.in diffutils-2.6-amiga/Makefile.in
  24. *** diffutils-2.6-fsf/Makefile.in    Mon Sep 27 06:18:21 1993
  25. --- diffutils-2.6-amiga/Makefile.in    Wed Feb 23 14:50:33 1994
  26. ***************
  27. *** 28,42 ****
  28.   INSTALL_DATA = @INSTALL_DATA@
  29.   MAKEINFO = makeinfo
  30.   
  31. ! CFLAGS = -g
  32. ! LDFLAGS = -g
  33.   LIBS = @LIBS@
  34.   
  35.   # Some System V machines do not come with libPW.
  36.   # If this is true for you, use the GNU alloca.o here.
  37.   ALLOCA = @ALLOCA@
  38.   
  39. ! prefix = /usr/local
  40.   exec_prefix = $(prefix)
  41.   
  42.   # Prefix for each installed program, normally empty or `g'.
  43. --- 28,42 ----
  44.   INSTALL_DATA = @INSTALL_DATA@
  45.   MAKEINFO = makeinfo
  46.   
  47. ! CFLAGS = -O2
  48. ! LDFLAGS =
  49.   LIBS = @LIBS@
  50.   
  51.   # Some System V machines do not come with libPW.
  52.   # If this is true for you, use the GNU alloca.o here.
  53.   ALLOCA = @ALLOCA@
  54.   
  55. ! prefix = /gnu
  56.   exec_prefix = $(prefix)
  57.   
  58.   # Prefix for each installed program, normally empty or `g'.
  59. diff -rc diffutils-2.6-fsf/configure diffutils-2.6-amiga/configure
  60. *** diffutils-2.6-fsf/configure    Wed Nov 10 08:41:58 1993
  61. --- diffutils-2.6-amiga/configure    Wed Feb 23 14:51:47 1994
  62. ***************
  63. *** 102,108 ****
  64.     srcdirdefaulted=yes
  65.     # Try the directory containing this script, then `..'.
  66.     prog=$0
  67. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  68.     test "X$confdir" = "X$prog" && confdir=.
  69.     srcdir=$confdir
  70.     if test ! -r $srcdir/$unique_file; then
  71. --- 102,108 ----
  72.     srcdirdefaulted=yes
  73.     # Try the directory containing this script, then `..'.
  74.     prog=$0
  75. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  76.     test "X$confdir" = "X$prog" && confdir=.
  77.     srcdir=$confdir
  78.     if test ! -r $srcdir/$unique_file; then
  79. ***************
  80. *** 278,284 ****
  81.   
  82.   echo checking for POSIXized ISC
  83.   if test -d /etc/conf/kconfig.d &&
  84. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  85.   then
  86.     ISC=1 # If later tests want to check for ISC.
  87.     
  88. --- 278,284 ----
  89.   
  90.   echo checking for POSIXized ISC
  91.   if test -d /etc/conf/kconfig.d &&
  92. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  93.   then
  94.     ISC=1 # If later tests want to check for ISC.
  95.     
  96. diff -rc diffutils-2.6-fsf/fnmatch.h diffutils-2.6-amiga/fnmatch.h
  97. *** diffutils-2.6-fsf/fnmatch.h    Sun Apr 11 22:54:32 1993
  98. --- diffutils-2.6-amiga/fnmatch.h    Wed Feb 23 14:48:40 1994
  99. ***************
  100. *** 35,41 ****
  101. --- 35,43 ----
  102.   #endif /* C++ or ANSI C.  */
  103.   
  104.   /* Bits set in the FLAGS argument to `fnmatch'.  */
  105. + #ifndef FNM_PATHNAME
  106.   #define    FNM_PATHNAME    (1 << 0) /* No wildcard can ever match `/'.  */
  107. + #endif
  108.   #define    FNM_NOESCAPE    (1 << 1) /* Backslashes don't quote special chars.  */
  109.   #define    FNM_PERIOD    (1 << 2) /* Leading `.' is matched only explicitly.  */
  110.   
  111. diff -rc diffutils-2.6-fsf/sdiff.c diffutils-2.6-amiga/sdiff.c
  112. *** diffutils-2.6-fsf/sdiff.c    Wed Nov 10 08:28:27 1993
  113. --- diffutils-2.6-amiga/sdiff.c    Wed Feb 23 14:52:30 1994
  114. ***************
  115. *** 30,41 ****
  116.   
  117.   /* Default name of the diff program */
  118.   #ifndef DIFF_PROGRAM
  119. ! #define DIFF_PROGRAM "/usr/bin/diff"
  120.   #endif
  121.   
  122.   /* Users' editor of nonchoice */
  123.   #ifndef DEFAULT_EDITOR
  124. ! #define DEFAULT_EDITOR "ed"
  125.   #endif
  126.   
  127.   extern char version_string[];
  128. --- 30,41 ----
  129.   
  130.   /* Default name of the diff program */
  131.   #ifndef DIFF_PROGRAM
  132. ! #define DIFF_PROGRAM "/gnu/bin/diff"
  133.   #endif
  134.   
  135.   /* Users' editor of nonchoice */
  136.   #ifndef DEFAULT_EDITOR
  137. ! #define DEFAULT_EDITOR "emacs"
  138.   #endif
  139.   
  140.   extern char version_string[];
  141. diff -rc diffutils-2.6-fsf/system.h diffutils-2.6-amiga/system.h
  142. *** diffutils-2.6-fsf/system.h    Mon Sep 27 04:54:33 1993
  143. --- diffutils-2.6-amiga/system.h    Wed Feb 23 14:48:41 1994
  144. ***************
  145. *** 115,121 ****
  146.   #define O_RDONLY 0
  147.   #endif
  148.   
  149. ! #if HAVE_SYS_WAIT_H
  150.   #ifndef _POSIX_VERSION
  151.   /* Prevent the NeXT prototype using union wait from causing problems.  */
  152.   #define wait system_wait
  153. --- 115,121 ----
  154.   #define O_RDONLY 0
  155.   #endif
  156.   
  157. ! #if HAVE_SYS_WAIT_H && !defined (amigados)
  158.   #ifndef _POSIX_VERSION
  159.   /* Prevent the NeXT prototype using union wait from causing problems.  */
  160.   #define wait system_wait
  161.