home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / diffs / bc-1.03.diffs < prev    next >
Text File  |  1995-01-21  |  46KB  |  1,530 lines

  1. diff -rc --new-file bc-1.03/Makefile.in /gnu/src/amiga/bc-1.03/Makefile.in
  2. *** bc-1.03/Makefile.in    Fri Nov  4 07:01:16 1994
  3. --- /gnu/src/amiga/bc-1.03/Makefile.in    Mon Dec 19 18:18:11 1994
  4. ***************
  5. *** 166,179 ****
  6.       $(INSTALL_DATA) $(srcdir)/dc.info $(infodir)
  7.   
  8.   installdirs:
  9. !     -mkdir $(prefix)
  10. !     -mkdir $(bindir)
  11.       -if grep -s "define BC_MATH_FILE" config.h; \
  12. !       then mkdir $(libdir)
  13.         else true; \
  14.       fi
  15. !     -mkdir $(mandir)
  16. !     -mkdir $(infodir)
  17.   
  18.   uninstall: 
  19.       rm -f $(bindir)/bc $(bindir)/dc
  20. --- 166,179 ----
  21.       $(INSTALL_DATA) $(srcdir)/dc.info $(infodir)
  22.   
  23.   installdirs:
  24. !     if [ -d $(prefix) ]; then true; else mkdir $(prefix); fi
  25. !     if [ -d $(bindir) ]; then true; else mkdir $(bindir); fi
  26.       -if grep -s "define BC_MATH_FILE" config.h; \
  27. !       then if [ -d $(libdir) ]; then true; else mkdir $(libdir); fi; \
  28.         else true; \
  29.       fi
  30. !     if [ -d $(prefix) ]; then true; else mkdir $(mandir); fi
  31. !     if [ -d $(infodir) ]; then true; else mkdir $(infodir); fi
  32.   
  33.   uninstall: 
  34.       rm -f $(bindir)/bc $(bindir)/dc
  35. ***************
  36. *** 261,276 ****
  37.       rm -rf *.dist configure libmath.h dc.info config.h.in
  38.   
  39.   scan.c: scan.l
  40. !     $(LEX) scan.l
  41.       mv lex.yy.c scan.c
  42.   
  43.   y.tab.h bc.c: bc.y
  44.       @echo "expect 1 shift/reduce conflict"
  45. !     $(YACC) -d bc.y
  46.       mv y.tab.c bc.c
  47.   
  48.   sbc.c: sbc.y
  49. !     $(YACC) -d sbc.y
  50.       mv y.tab.c sbc.c
  51.   
  52.   # Information files
  53. --- 261,276 ----
  54.       rm -rf *.dist configure libmath.h dc.info config.h.in
  55.   
  56.   scan.c: scan.l
  57. !     $(LEX) $(srcdir)/scan.l
  58.       mv lex.yy.c scan.c
  59.   
  60.   y.tab.h bc.c: bc.y
  61.       @echo "expect 1 shift/reduce conflict"
  62. !     $(YACC) -d $(srcdir)/bc.y
  63.       mv y.tab.c bc.c
  64.   
  65.   sbc.c: sbc.y
  66. !     $(YACC) -d $(srcdir)/sbc.y
  67.       mv y.tab.c sbc.c
  68.   
  69.   # Information files
  70. diff -rc --new-file bc-1.03/Product-Info /gnu/src/amiga/bc-1.03/Product-Info
  71. *** bc-1.03/Product-Info    Thu Jan  1 00:00:00 1970
  72. --- /gnu/src/amiga/bc-1.03/Product-Info    Mon Dec 19 18:22:38 1994
  73. ***************
  74. *** 0 ****
  75. --- 1,38 ----
  76. + .name
  77. + bc
  78. + .fullname
  79. + GNU bc
  80. + .type
  81. + Miscellaneous
  82. + .short
  83. + GNU arbitrary precision calculator lang.
  84. + .description
  85. + A language that supports arbitrary precision numbers with interactive
  86. + execution of statements.  There are some similarities in the syntax to
  87. + the C programming language.
  88. + A standard math library is available by command line option.  If
  89. + requested, the math library is defined before processing any files.
  90. + bc starts by processing code from all the files listed on the command
  91. + line in the order listed.  After all files have been processed, bc
  92. + reads from the standard input.  All code is executed as it is read.
  93. + (If a file contains a command to halt the processor, bc will never
  94. + read from the standard input.)
  95. + This version of bc contains several extensions beyond traditional bc
  96. + implementations and the POSIX draft standard.  Command line options
  97. + can cause these extensions to print a warning or to be rejected.  This
  98. + document describes the language accepted by this processor.
  99. + Extensions will be identified as such.
  100. + .version
  101. + 1.03
  102. + .author
  103. + Philip A. Nelson
  104. + .requirements
  105. + Binary version requires ixemul.library.
  106. + .distribution
  107. + GNU Public License
  108. + .email
  109. + phil@cs.wwu.edu
  110. + .described-by
  111. + Fred Fish (fnf@amigalib.com)
  112. diff -rc --new-file bc-1.03/configure /gnu/src/amiga/bc-1.03/configure
  113. *** bc-1.03/configure    Thu Nov  3 22:45:26 1994
  114. --- /gnu/src/amiga/bc-1.03/configure    Mon Dec 19 17:51:39 1994
  115. ***************
  116. *** 1,7 ****
  117.   #!/bin/sh
  118.   
  119.   # Guess values for system-dependent variables and create Makefiles.
  120. ! # Generated automatically using autoconf version 2.0 
  121.   # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  122.   #
  123.   # This configure script is free software; the Free Software Foundation
  124. --- 1,7 ----
  125.   #!/bin/sh
  126.   
  127.   # Guess values for system-dependent variables and create Makefiles.
  128. ! # Generated automatically using autoconf version 2.1 
  129.   # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
  130.   #
  131.   # This configure script is free software; the Free Software Foundation
  132. ***************
  133. *** 9,48 ****
  134.   
  135.   # Defaults:
  136.   ac_help=
  137. ! ac_default_prefix=/usr/local
  138.   # Any additions from configure.in:
  139.   
  140. - # Omit some internal or obsolete options to make the list less imposing.
  141. - ac_usage="Usage: configure [options] [host]
  142. - Options: [defaults in brackets after descriptions]
  143. - Configuration:
  144. -   --cache-file=FILE       cache test results in FILE
  145. -   --help                  print this message
  146. -   --no-create             do not create output files
  147. -   --quiet, --silent       do not print \`checking...' messages
  148. -   --version               print the version of autoconf that created configure
  149. - Directory and file names:
  150. -   --prefix=PREFIX         install architecture-independent files in PREFIX
  151. -                           [$ac_default_prefix]
  152. -   --exec-prefix=PREFIX    install architecture-dependent files in PREFIX
  153. -                           [same as prefix]
  154. -   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  155. -   --program-prefix=PREFIX prepend PREFIX to installed program names
  156. -   --program-suffix=SUFFIX append SUFFIX to installed program names
  157. -   --program-transform-name=PROGRAM run sed PROGRAM on installed program names
  158. - Host type:
  159. -   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  160. -   --host=HOST             configure for HOST [guessed]
  161. -   --target=TARGET         configure for TARGET [TARGET=HOST]
  162. - Features and packages:
  163. -   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  164. -   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  165. -   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  166. -   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  167. -   --x-includes=DIR        X include files are in DIR
  168. -   --x-libraries=DIR       X library files are in DIR
  169. - --enable and --with options recognized:$ac_help"
  170.   # Initialize some variables set by options.
  171.   # The variables have the same names as the options, with
  172.   # dashes changed to underlines.
  173. --- 9,17 ----
  174.   
  175.   # Defaults:
  176.   ac_help=
  177. ! ac_default_prefix=/gnu
  178.   # Any additions from configure.in:
  179.   
  180.   # Initialize some variables set by options.
  181.   # The variables have the same names as the options, with
  182.   # dashes changed to underlines.
  183. ***************
  184. *** 80,86 ****
  185.     fi
  186.   
  187.     case "$ac_option" in
  188. !   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  189.     *) ac_optarg= ;;
  190.     esac
  191.   
  192. --- 49,55 ----
  193.     fi
  194.   
  195.     case "$ac_option" in
  196. !   -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  197.     *) ac_optarg= ;;
  198.     esac
  199.   
  200. ***************
  201. *** 101,121 ****
  202.       cache_file="$ac_optarg" ;;
  203.   
  204.     -disable-* | --disable-*)
  205. !     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  206.       # Reject names that are not valid shell variable names.
  207. !     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  208.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  209.       fi
  210. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  211.       eval "enable_${ac_feature}=no" ;;
  212.   
  213.     -enable-* | --enable-*)
  214. !     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  215.       # Reject names that are not valid shell variable names.
  216. !     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  217.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  218.       fi
  219. !     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  220.       case "$ac_option" in
  221.         *=*) ;;
  222.         *) ac_optarg=yes ;;
  223. --- 70,90 ----
  224.       cache_file="$ac_optarg" ;;
  225.   
  226.     -disable-* | --disable-*)
  227. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
  228.       # Reject names that are not valid shell variable names.
  229. !     if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  230.         { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  231.       fi
  232. !     ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
  233.       eval "enable_${ac_feature}=no" ;;
  234.   
  235.     -enable-* | --enable-*)
  236. !     ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  237.       # Reject names that are not valid shell variable names.
  238. !     if test -n "`/bin/echo $