From c8a5e4585eda77d4c4e49751dec893f4489bb1b6 Mon Sep 17 00:00:00 2001 From: wiz Date: Mon, 20 Oct 2003 17:07:38 +0000 Subject: 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. --- gnu/usr.bin/gawk/config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gnu/usr.bin') 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 -- cgit