diff options
| author | wiz <wiz@NetBSD.org> | 2003-09-09 12:55:10 +0000 |
|---|---|---|
| committer | wiz <wiz@NetBSD.org> | 2003-09-09 12:55:10 +0000 |
| commit | 05686e9c809c19d72ec1be36f1c70c363e4f35e2 (patch) | |
| tree | d46d6ea68373ffcb6f63dceb33e3b92a78262864 /gnu/usr.bin | |
| parent | 494fe7019857b3c6409ac464794c9ec5aaac6e59 (diff) | |
While we provide gettimeofday, it's only needed by texindex if
mkstemp is not found. The configure test for gettimeofday is thus
only run in that case, which explains why HAVE_GETTIMEOFDAY was
not defined by default in the resulting config.h. Since we don't
need gettimeofday, don't define HAVE_GETTIMEOFDAY manually to
simplify updates to this file.
Add RCS Id.
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/texinfo/common/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/texinfo/common/config.h b/gnu/usr.bin/texinfo/common/config.h index b1aa91f59fa..968a7f93e4b 100644 --- a/gnu/usr.bin/texinfo/common/config.h +++ b/gnu/usr.bin/texinfo/common/config.h @@ -1,3 +1,4 @@ +/* $NetBSD: config.h,v 1.9 2003/09/09 12:55:10 wiz Exp $ */ /* config.h. Generated by configure. */ /* config.in. Generated from configure.ac by autoheader. */ @@ -83,8 +84,7 @@ /* #undef HAVE_GETTEXT */ /* Define to 1 if you have the `gettimeofday' function. */ -/* WIZ: #undef HAVE_GETTIMEOFDAY */ -#define HAVE_GETTIMEOFDAY 1 +/* #undef HAVE_GETTIMEOFDAY */ /* Define to 1 if you have the `getuid' function. */ #define HAVE_GETUID 1 |
