diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-08 21:20:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-08 21:20:11 +0200 |
commit | c5da922b0486462028584e4568d6e00d1a4f2783 (patch) | |
tree | de1d17b273449e5aa03dcbf79d53edbc0bc3b157 /pc/config.h | |
parent | 69239a8fd65ad7f55cc2d567c933a800d5d10fac (diff) | |
parent | d586094c7c4a9a412a7633a32d2b92a8e1cfea1c (diff) | |
download | egawk-c5da922b0486462028584e4568d6e00d1a4f2783.tar.gz egawk-c5da922b0486462028584e4568d6e00d1a4f2783.tar.bz2 egawk-c5da922b0486462028584e4568d6e00d1a4f2783.zip |
Merge branch 'gawk-4.0-stable'
Diffstat (limited to 'pc/config.h')
-rw-r--r-- | pc/config.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pc/config.h b/pc/config.h index 41fd895a..a9dac512 100644 --- a/pc/config.h +++ b/pc/config.h @@ -13,7 +13,7 @@ #define GETGROUPS_T gid_t /* Define to 1 if the `getpgrp' function requires zero arguments. */ -#undef GETPGRP_VOID +#define GETPGRP_VOID 1 /* Define to 1 if you have the `alarm' function. */ #define HAVE_ALARM 1 @@ -51,9 +51,7 @@ #undef HAVE_DOPRNT /* Define to 1 if you have the <fcntl.h> header file. */ -#ifdef __MINGW32__ #define HAVE_FCNTL_H 1 -#endif /* Define to 1 if you have the `fmod' function. */ #define HAVE_FMOD 1 @@ -131,9 +129,7 @@ #undef HAVE_LIBSIGSEGV /* Define to 1 if you have the <limits.h> header file. */ -#if defined(DJGPP) || defined(__MINGW32__) #define HAVE_LIMITS_H 1 -#endif /* Define to 1 if you have the <locale.h> header file. */ #ifdef __MINGW32__ @@ -298,9 +294,7 @@ #undef HAVE_ST_BLKSIZE /* Define to 1 if you have the `system' function. */ -#ifdef __MINGW32__ #define HAVE_SYSTEM 1 -#endif /* Define to 1 if you have the <sys/ioctl.h> header file. */ #undef HAVE_SYS_IOCTL_H @@ -354,9 +348,7 @@ #define HAVE_TZNAME 1 /* Define to 1 if you have the `tzset' function. */ -#ifdef __MINGW32__ #define HAVE_TZSET 1 -#endif /* Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>. */ #if defined(DJGPP) || defined(__MINGW32__) @@ -433,7 +425,7 @@ #define PACKAGE_NAME "GNU Awk" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GNU Awk 4.0.0c" +#define PACKAGE_STRING "GNU Awk 4.0.0f" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gawk" @@ -442,7 +434,7 @@ #define PACKAGE_URL "http://www.gnu.org/software/gawk/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "4.0.0c" +#define PACKAGE_VERSION "4.0.0f" /* Define to 1 if *printf supports %F format */ #undef PRINTF_HAS_F_FORMAT @@ -504,7 +496,7 @@ /* Version number of package */ -#define VERSION "4.0.0c" +#define VERSION "4.0.0f" /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS @@ -595,6 +587,11 @@ #define HAVE_POPEN_H 1 #endif +#if defined(__EMX__) +#define strcasecmp stricmp +#define strncasecmp strnicmp +#endif + #if defined(__MINGW32__) # define WEXITSTATUS(stat_val) ((stat_val) & ~0xC0000000) #endif |