diff options
Diffstat (limited to 'pc')
-rw-r--r-- | pc/ChangeLog | 8 | ||||
-rw-r--r-- | pc/config.h | 22 | ||||
-rw-r--r-- | pc/popen.c | 2 |
3 files changed, 18 insertions, 14 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 1ff3bb1f..49ce73fa 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -3,6 +3,10 @@ * gawkmisc.pc (w32_maybe_set_errno) [__MINGW32__]: New function, to correct errno when it is not set to a useful value. +2016-10-23 Arnold D. Robbins <arnold@skeeve.com> + + * General: Remove trailing whitespace from all relevant files. + 2016-09-24 Eli Zaretskii <eliz@gnu.org> Fix compilation warnings on MinGW with the latest runtime. @@ -97,6 +101,10 @@ avoid warnings about 'usleep' in newer versions of mingw.org's MinGW runtime. +2016-01-28 Arnold D. Robbins <arnold@skeeve.com> + + * config.h: Updated to current. + 2015-05-29 Arnold D. Robbins <arnold@skeeve.com> * Makefile.tst (negtime): Sync with mainline. diff --git a/pc/config.h b/pc/config.h index d584973a..11323793 100644 --- a/pc/config.h +++ b/pc/config.h @@ -201,6 +201,9 @@ /* Define to 1 if you have the `setsid' function. */ #undef HAVE_SETSID +/* Define to 1 if you have the `sigprocmask' function. */ +#undef HAVE_SIGPROCMASK + /* Define to 1 if you have the `snprintf' function. */ #ifdef __MINGW32__ #define HAVE_SNPRINTF 1 @@ -378,6 +381,9 @@ #define HAVE_USLEEP 1 #endif +/* Define to 1 if you have the `waitpid' function. */ +#undef HAVE_WAITPID + /* Define to 1 if you have the <wchar.h> header file. */ #ifdef __MINGW32__ #define HAVE_WCHAR_H 1 @@ -422,9 +428,6 @@ /* enable severe portability problems */ #undef I_DONT_KNOW_WHAT_IM_DOING -/* libc is broken for regex handling */ -#undef LIBC_IS_BORKED - /* disable lint checks */ #undef NO_LINT @@ -438,7 +441,7 @@ #define PACKAGE_NAME "GNU Awk" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GNU Awk 4.1.4" +#define PACKAGE_STRING "GNU Awk 4.1.60" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gawk" @@ -447,18 +450,11 @@ #define PACKAGE_URL "http://www.gnu.org/software/gawk/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "4.1.4" +#define PACKAGE_VERSION "4.1.60" /* Define to 1 if *printf supports %F format */ #undef PRINTF_HAS_F_FORMAT -/* Define as the return type of signal handlers (`int' or `void'). */ -#define RETSIGTYPE void - -#if defined(__DJGPP__) || defined(__MINGW32__) -#include <limits.h> -#endif - /* The size of `unsigned int', as computed by sizeof. */ #if UINT_MAX == 65536 #define SIZEOF_UNSIGNED_INT 2 @@ -512,7 +508,7 @@ /* Version number of package */ -#define VERSION "4.1.4" +#define VERSION "4.1.60" /* Enable large inode numbers on Mac OS X 10.5. */ #ifndef _DARWIN_USE_64_BIT_INODE @@ -104,7 +104,7 @@ scriptify(const char *command) free(cmd); cmd = NULL; } - if (fp) fclose(fp); + if (fp) fclose(fp); return(cmd); } |