home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / bison-1.22-src.lha / src / diffs / bison-1.22.diffs
Text File  |  1994-02-21  |  4KB  |  123 lines

  1. diff -rc bison-1.22-fsf/INSTALL bison-1.22-amiga/INSTALL
  2. *** bison-1.22-fsf/INSTALL    Fri May 14 23:31:53 1993
  3. --- bison-1.22-amiga/INSTALL    Mon Feb 21 20:15:13 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 bison-1.22-fsf/Makefile.in bison-1.22-amiga/Makefile.in
  24. *** bison-1.22-fsf/Makefile.in    Mon Sep  6 22:19:19 1993
  25. --- bison-1.22-amiga/Makefile.in    Mon Feb 21 20:54:01 1994
  26. ***************
  27. *** 35,42 ****
  28.   # -DHAVE_STRERROR    If you have strerror function.
  29.   DEFS = @DEFS@
  30.   
  31. ! CFLAGS = -g
  32. ! LDFLAGS = -g
  33.   
  34.   LIBS = @LIBS@
  35.   
  36. --- 35,42 ----
  37.   # -DHAVE_STRERROR    If you have strerror function.
  38.   DEFS = @DEFS@
  39.   
  40. ! CFLAGS = -O2
  41. ! LDFLAGS =
  42.   
  43.   LIBS = @LIBS@
  44.   
  45. ***************
  46. *** 44,50 ****
  47.   # the GNU alloca.o here.
  48.   ALLOCA = @ALLOCA@
  49.   
  50. ! prefix = /usr/local
  51.   exec_prefix = $(prefix)
  52.   
  53.   # where the installed binary goes
  54. --- 44,50 ----
  55.   # the GNU alloca.o here.
  56.   ALLOCA = @ALLOCA@
  57.   
  58. ! prefix = /gnu
  59.   exec_prefix = $(prefix)
  60.   
  61.   # where the installed binary goes
  62. diff -rc bison-1.22-fsf/bison.1 bison-1.22-amiga/bison.1
  63. *** bison-1.22-fsf/bison.1    Sat Jun 26 20:00:26 1993
  64. --- bison-1.22-amiga/bison.1    Mon Feb 21 20:16:34 1994
  65. ***************
  66. *** 274,282 ****
  67.   for compatibility with previous releases.  Eventually support for `+'
  68.   will be removed, because it is incompatible with the POSIX.2 standard.
  69.   .SH FILES
  70. ! /usr/local/lib/bison.simple    simple parser
  71.   .br
  72. ! /usr/local/lib/bison.hairy    complicated parser
  73.   .SH SEE ALSO
  74.   .IR yacc (1)
  75.   .br
  76. --- 274,282 ----
  77.   for compatibility with previous releases.  Eventually support for `+'
  78.   will be removed, because it is incompatible with the POSIX.2 standard.
  79.   .SH FILES
  80. ! /gnu/lib/bison.simple    simple parser
  81.   .br
  82. ! /gnu/lib/bison.hairy    complicated parser
  83.   .SH SEE ALSO
  84.   .IR yacc (1)
  85.   .br
  86. diff -rc bison-1.22-fsf/configure bison-1.22-amiga/configure
  87. *** bison-1.22-fsf/configure    Mon Aug 30 20:08:22 1993
  88. --- bison-1.22-amiga/configure    Mon Feb 21 20:21:47 1994
  89. ***************
  90. *** 103,109 ****
  91.     srcdirdefaulted=yes
  92.     # Try the directory containing this script, then `..'.
  93.     prog=$0
  94. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  95.     test "X$confdir" = "X$prog" && confdir=.
  96.     srcdir=$confdir
  97.     if test ! -r $srcdir/$unique_file; then
  98. --- 103,109 ----
  99.     srcdirdefaulted=yes
  100.     # Try the directory containing this script, then `..'.
  101.     prog=$0
  102. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  103.     test "X$confdir" = "X$prog" && confdir=.
  104.     srcdir=$confdir
  105.     if test ! -r $srcdir/$unique_file; then
  106. ***************
  107. *** 257,263 ****
  108.   
  109.   echo checking for POSIXized ISC
  110.   if test -d /etc/conf/kconfig.d &&
  111. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  112.   then
  113.     ISC=1 # If later tests want to check for ISC.
  114.     
  115. --- 257,263 ----
  116.   
  117.   echo checking for POSIXized ISC
  118.   if test -d /etc/conf/kconfig.d &&
  119. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  120.   then
  121.     ISC=1 # If later tests want to check for ISC.
  122.     
  123.