diff options
| author | thorpej <thorpej@NetBSD.org> | 2002-09-13 16:34:56 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2002-09-13 16:34:56 +0000 |
| commit | b6f409ee2ea2fffe6a2750bd845f63cd9a4765be (patch) | |
| tree | a281022eb77ae94c1bd6e3ec0ffd486348789f70 | |
| parent | c1cf8538ecab8e672e327179137658ff733e1115 (diff) | |
Pull in config.h when building has a host tool.
| -rw-r--r-- | usr.bin/man/manconf.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/man/manconf.c b/usr.bin/man/manconf.c index d894c85807f..7bf893b0256 100644 --- a/usr.bin/man/manconf.c +++ b/usr.bin/man/manconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: manconf.c,v 1.1 2002/09/13 15:56:39 thorpej Exp $ */ +/* $NetBSD: manconf.c,v 1.2 2002/09/13 16:34:56 thorpej Exp $ */ /* * Copyright (c) 1989, 1993, 1995 @@ -33,13 +33,17 @@ * SUCH DAMAGE. */ +#if HAVE_CONFIG_H +#include "config.h" +#endif + #include <sys/cdefs.h> #ifndef lint #if 0 static char sccsid[] = "@(#)config.c 8.8 (Berkeley) 1/31/95"; #else #if defined(__RCSID) -__RCSID("$NetBSD: manconf.c,v 1.1 2002/09/13 15:56:39 thorpej Exp $"); +__RCSID("$NetBSD: manconf.c,v 1.2 2002/09/13 16:34:56 thorpej Exp $"); #endif #endif #endif /* not lint */ |
