diff options
author | grant <grant@pkgsrc.org> | 2003-12-20 04:54:56 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-12-20 04:54:56 +0000 |
commit | 17bfcfcae33ce29b1181fa73d80bae1d7c9ffa7c (patch) | |
tree | 1e699ed2b627328cc6f5680ffafeee39f3739529 /pkgtools/mtree/files | |
parent | 2f6240086a99d4e5ec6dcc7bb3e6f3bd1100a0cc (diff) | |
download | pkgsrc-17bfcfcae33ce29b1181fa73d80bae1d7c9ffa7c.tar.gz |
sync with -current:
#include <util.h>
this is needed by fparseln on macos/darwin and is harmless on netbsd
Diffstat (limited to 'pkgtools/mtree/files')
-rw-r--r-- | pkgtools/mtree/files/excludes.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgtools/mtree/files/excludes.c b/pkgtools/mtree/files/excludes.c index 54326009e69..f377121f8aa 100644 --- a/pkgtools/mtree/files/excludes.c +++ b/pkgtools/mtree/files/excludes.c @@ -1,4 +1,4 @@ -/* $NetBSD: excludes.c,v 1.2 2003/09/05 04:38:47 grant Exp $ */ +/* $NetBSD: excludes.c,v 1.3 2003/12/20 04:54:56 grant Exp $ */ /* * Copyright 2000 Massachusetts Institute of Technology @@ -38,7 +38,7 @@ #endif #if defined(__RCSID) && !defined(lint) -__RCSID("$NetBSD: excludes.c,v 1.2 2003/09/05 04:38:47 grant Exp $"); +__RCSID("$NetBSD: excludes.c,v 1.3 2003/12/20 04:54:56 grant Exp $"); #endif #if HAVE_SYS_TYPES_H @@ -63,6 +63,9 @@ __RCSID("$NetBSD: excludes.c,v 1.2 2003/09/05 04:38:47 grant Exp $"); #if HAVE_TIME_H #include <time.h> #endif +#if HAVE_UTIL_H +#include <util.h> +#endif #include "extern.h" |