diff options
Diffstat (limited to 'vms/vms-conf.h')
-rw-r--r-- | vms/vms-conf.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/vms/vms-conf.h b/vms/vms-conf.h index 91de82f7..029fb4f2 100644 --- a/vms/vms-conf.h +++ b/vms/vms-conf.h @@ -7,7 +7,7 @@ */ /* - * Copyright (C) 1991-1992, 1995-1996, 1999, 2001, 2002, 2003, 2005 + * Copyright (C) 1991-1992, 1995-1996, 1999, 2001, 2002, 2003, 2005, 2009 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the @@ -65,6 +65,9 @@ /* Define to 1 if you have the <arpa/inet.h> header file. */ #undef HAVE_ARPA_INET_H +/* Define to 1 if you have the `atexit' function. */ +#define HAVE_ATEXIT 1 + /* Define to 1 if you have the `btowc' function. */ #undef HAVE_BTOWC @@ -381,13 +384,13 @@ #define PACKAGE_NAME "GNU Awk" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GNU Awk 3.1.6" +#define PACKAGE_STRING "GNU Awk 3.1.7" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gawk" /* Define to the version of this package. */ -#define PACKAGE_VERSION "3.1.6" +#define PACKAGE_VERSION "3.1.7" /* Define to 1 if *printf supports %F format */ #undef PRINTF_HAS_F_FORMAT @@ -637,6 +640,14 @@ #undef REGEX_MALLOC /* use true alloca() in regex.c */ #endif +/* EXIT_SUCCESS and EXIT_FAILURE normally come from <stdlib.h> */ +#ifndef HAVE_STDLIB_H +# define EXIT_SUCCESS 1 /* SYS$_NORMAL */ +# define EXIT_FAILURE 0x10000002 /* STS$M_INHIB_MSG|STS$K_ERROR */ +#endif +/* EXIT_FATAL is specific to gawk, not part of Standard C */ +#define EXIT_FATAL 0x10000004 /* STS$M_INHIB_MSG|STS$K_SEVERE */ + #define IN_CONFIG_H #include "vms/redirect.h" #undef IN_CONFIG_H |