home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 8
/
FreshFishVol8-CD1.bin
/
gnu
/
src
/
diffs
/
bc-1.03.diffs
< prev
next >
Wrap
Text File
|
1995-01-21
|
46KB
|
1,530 lines
diff -rc --new-file bc-1.03/Makefile.in /gnu/src/amiga/bc-1.03/Makefile.in
*** bc-1.03/Makefile.in Fri Nov 4 07:01:16 1994
--- /gnu/src/amiga/bc-1.03/Makefile.in Mon Dec 19 18:18:11 1994
***************
*** 166,179 ****
$(INSTALL_DATA) $(srcdir)/dc.info $(infodir)
installdirs:
! -mkdir $(prefix)
! -mkdir $(bindir)
-if grep -s "define BC_MATH_FILE" config.h; \
! then mkdir $(libdir)
else true; \
fi
! -mkdir $(mandir)
! -mkdir $(infodir)
uninstall:
rm -f $(bindir)/bc $(bindir)/dc
--- 166,179 ----
$(INSTALL_DATA) $(srcdir)/dc.info $(infodir)
installdirs:
! if [ -d $(prefix) ]; then true; else mkdir $(prefix); fi
! if [ -d $(bindir) ]; then true; else mkdir $(bindir); fi
-if grep -s "define BC_MATH_FILE" config.h; \
! then if [ -d $(libdir) ]; then true; else mkdir $(libdir); fi; \
else true; \
fi
! if [ -d $(prefix) ]; then true; else mkdir $(mandir); fi
! if [ -d $(infodir) ]; then true; else mkdir $(infodir); fi
uninstall:
rm -f $(bindir)/bc $(bindir)/dc
***************
*** 261,276 ****
rm -rf *.dist configure libmath.h dc.info config.h.in
scan.c: scan.l
! $(LEX) scan.l
mv lex.yy.c scan.c
y.tab.h bc.c: bc.y
@echo "expect 1 shift/reduce conflict"
! $(YACC) -d bc.y
mv y.tab.c bc.c
sbc.c: sbc.y
! $(YACC) -d sbc.y
mv y.tab.c sbc.c
# Information files
--- 261,276 ----
rm -rf *.dist configure libmath.h dc.info config.h.in
scan.c: scan.l
! $(LEX) $(srcdir)/scan.l
mv lex.yy.c scan.c
y.tab.h bc.c: bc.y
@echo "expect 1 shift/reduce conflict"
! $(YACC) -d $(srcdir)/bc.y
mv y.tab.c bc.c
sbc.c: sbc.y
! $(YACC) -d $(srcdir)/sbc.y
mv y.tab.c sbc.c
# Information files
diff -rc --new-file bc-1.03/Product-Info /gnu/src/amiga/bc-1.03/Product-Info
*** bc-1.03/Product-Info Thu Jan 1 00:00:00 1970
--- /gnu/src/amiga/bc-1.03/Product-Info Mon Dec 19 18:22:38 1994
***************
*** 0 ****
--- 1,38 ----
+ .name
+ bc
+ .fullname
+ GNU bc
+ .type
+ Miscellaneous
+ .short
+ GNU arbitrary precision calculator lang.
+ .description
+ A language that supports arbitrary precision numbers with interactive
+ execution of statements. There are some similarities in the syntax to
+ the C programming language.
+
+ A standard math library is available by command line option. If
+ requested, the math library is defined before processing any files.
+ bc starts by processing code from all the files listed on the command
+ line in the order listed. After all files have been processed, bc
+ reads from the standard input. All code is executed as it is read.
+ (If a file contains a command to halt the processor, bc will never
+ read from the standard input.)
+
+ This version of bc contains several extensions beyond traditional bc
+ implementations and the POSIX draft standard. Command line options
+ can cause these extensions to print a warning or to be rejected. This
+ document describes the language accepted by this processor.
+ Extensions will be identified as such.
+ .version
+ 1.03
+ .author
+ Philip A. Nelson
+ .requirements
+ Binary version requires ixemul.library.
+ .distribution
+ GNU Public License
+ .email
+ phil@cs.wwu.edu
+ .described-by
+ Fred Fish (fnf@amigalib.com)
diff -rc --new-file bc-1.03/configure /gnu/src/amiga/bc-1.03/configure
*** bc-1.03/configure Thu Nov 3 22:45:26 1994
--- /gnu/src/amiga/bc-1.03/configure Mon Dec 19 17:51:39 1994
***************
*** 1,7 ****
#!/bin/sh
# Guess values for system-dependent variables and create Makefiles.
! # Generated automatically using autoconf version 2.0
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
--- 1,7 ----
#!/bin/sh
# Guess values for system-dependent variables and create Makefiles.
! # Generated automatically using autoconf version 2.1
# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
***************
*** 9,48 ****
# Defaults:
ac_help=
! ac_default_prefix=/usr/local
# Any additions from configure.in:
- # Omit some internal or obsolete options to make the list less imposing.
- ac_usage="Usage: configure [options] [host]
- Options: [defaults in brackets after descriptions]
- Configuration:
- --cache-file=FILE cache test results in FILE
- --help print this message
- --no-create do not create output files
- --quiet, --silent do not print \`checking...' messages
- --version print the version of autoconf that created configure
- Directory and file names:
- --prefix=PREFIX install architecture-independent files in PREFIX
- [$ac_default_prefix]
- --exec-prefix=PREFIX install architecture-dependent files in PREFIX
- [same as prefix]
- --srcdir=DIR find the sources in DIR [configure dir or ..]
- --program-prefix=PREFIX prepend PREFIX to installed program names
- --program-suffix=SUFFIX append SUFFIX to installed program names
- --program-transform-name=PROGRAM run sed PROGRAM on installed program names
- Host type:
- --build=BUILD configure for building on BUILD [BUILD=HOST]
- --host=HOST configure for HOST [guessed]
- --target=TARGET configure for TARGET [TARGET=HOST]
- Features and packages:
- --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- --x-includes=DIR X include files are in DIR
- --x-libraries=DIR X library files are in DIR
- --enable and --with options recognized:$ac_help"
-
# Initialize some variables set by options.
# The variables have the same names as the options, with
# dashes changed to underlines.
--- 9,17 ----
# Defaults:
ac_help=
! ac_default_prefix=/gnu
# Any additions from configure.in:
# Initialize some variables set by options.
# The variables have the same names as the options, with
# dashes changed to underlines.
***************
*** 80,86 ****
fi
case "$ac_option" in
! -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) ac_optarg= ;;
esac
--- 49,55 ----
fi
case "$ac_option" in
! -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) ac_optarg= ;;
esac
***************
*** 101,121 ****
cache_file="$ac_optarg" ;;
-disable-* | --disable-*)
! ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
eval "enable_${ac_feature}=no" ;;
-enable-* | --enable-*)
! ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`echo $ac_feature| sed 's/-/_/g'`
case "$ac_option" in
*=*) ;;
*) ac_optarg=yes ;;
--- 70,90 ----
cache_file="$ac_optarg" ;;
-disable-* | --disable-*)
! ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
{ echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
fi
! ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
eval "enable_${ac_feature}=no" ;;
-enable-* | --enable-*)
! ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
# Reject names that are not valid shell variable names.
! if test -n "`/bin/echo $