diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2001-02-26 07:23:27 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2001-02-26 07:23:27 +0000 |
| commit | ef0503b1ec6dfa6d48c131933cac2b191f4bf89f (patch) | |
| tree | 26c8ebba1423edf9d5ddaab88c9afe972a32c73e | |
| parent | 4674b9b242acb3915ea225a5e66e4f9377345043 (diff) | |
Notes
| -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 db7a86a77e64..e53febacf2ee 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" + |
