diff options
| author | wiz <wiz@NetBSD.org> | 2003-10-20 17:07:38 +0000 |
|---|---|---|
| committer | wiz <wiz@NetBSD.org> | 2003-10-20 17:07:38 +0000 |
| commit | c8a5e4585eda77d4c4e49751dec893f4489bb1b6 (patch) | |
| tree | 16e2aa4a5b2606ccb402cd327d530b42d5621988 | |
| parent | 4c5a46429bf13bb979f9b9134f79670d63ae7bcf (diff) | |
Enable HAVE_MKTIME manually; the configure script fails since it
checks a weird corner case.
Should fix building platforms without shared libs.
Requested by Chuck Silvers.
| -rw-r--r-- | gnu/usr.bin/gawk/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/usr.bin/gawk/config.h b/gnu/usr.bin/gawk/config.h index 9b5414f4777..fc00b13f600 100644 --- a/gnu/usr.bin/gawk/config.h +++ b/gnu/usr.bin/gawk/config.h @@ -149,7 +149,9 @@ #define HAVE_MEMSET 1 /* we have the mktime function */ -/* #undef HAVE_MKTIME */ +/* XXX: defined manually, since configure script has weird test + * that fails on NetBSD. wiz 2003/10/20 */ +#define HAVE_MKTIME 1 /* Define to 1 if you have a working `mmap' system call. */ #define HAVE_MMAP 1 |
