diff options
author | kris <kris@FreeBSD.org> | 2001-02-26 07:23:27 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-02-26 07:23:27 +0000 |
commit | 377d1812e106143d2710c3701ddd668db9d0108a (patch) | |
tree | 7403cae9a855d2fe8654a15b220e147ef2ef95d0 /gnu | |
parent | 8cef9951f9fc8d85d7aaec3c2c4ce2f731addb9f (diff) | |
download | FreeBSD-src-377d1812e106143d2710c3701ddd668db9d0108a.zip FreeBSD-src-377d1812e106143d2710c3701ddd668db9d0108a.tar.gz |
Update for bc 1.06
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/bc/config.h | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/gnu/usr.bin/bc/config.h b/gnu/usr.bin/bc/config.h index db7a86a..e53feba 100644 --- a/gnu/usr.bin/bc/config.h +++ b/gnu/usr.bin/bc/config.h @@ -31,18 +31,21 @@ /* Define if lex declares yytext as a char * by default, not a char[]. */ #define YYTEXT_POINTER 1 -/* PACKAGE name */ -#define PACKAGE "bc" +/* VERSION number for DC target*/ +#define DC_VERSION "1.3" -/* Package VERSION number */ -#define VERSION "1.05" +/* COPYRIGHT notice for DC target */ +#define DC_COPYRIGHT "Copyright 1994, 1997, 1998, 2000 Free Software Foundation, Inc." -/* define if the math lib is to be loaded from a file. */ -/* #undef BC_MATH_FILE */ +/* COPYRIGHT notice for BC target */ +#define BC_COPYRIGHT "Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc." /* Define to use the readline library. */ #define READLINE 1 +/* Define to use the BSD libedit library. */ +/* #undef LIBEDIT */ + /* Define to `size_t' if <sys/types.h> and <stddef.h> don't define. */ /* #undef ptrdiff_t */ @@ -72,3 +75,10 @@ /* Define if you have the <unistd.h> header file. */ #define HAVE_UNISTD_H 1 + +/* Name of package */ +#define PACKAGE "bc" + +/* Version number of package */ +#define VERSION "1.06" + |