diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-17 17:02:04 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-17 17:02:04 +0000 |
commit | 39cec6f0de50d5eb3517ca239a60a50c2461fc00 (patch) | |
tree | d872e015b3b144011dcae0606699269e3939875f /pkgtools | |
parent | 22dc66a6ae6bd68f38ef819ced6e7b09b0d485d9 (diff) | |
download | pkgsrc-39cec6f0de50d5eb3517ca239a60a50c2461fc00.tar.gz |
Added a dependency on libnbcompat to allow building on Solaris easier.
(See PR 23746.) It still needs work in the area of Berkeley DB
selection. Bumped PKGREVISION.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_filecheck/Makefile | 4 | ||||
-rw-r--r-- | pkgtools/pkg_filecheck/files/pkg_filecheck.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/pkgtools/pkg_filecheck/Makefile b/pkgtools/pkg_filecheck/Makefile index 0b81d8ea78b..01a4ae4d5cd 100644 --- a/pkgtools/pkg_filecheck/Makefile +++ b/pkgtools/pkg_filecheck/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.17 2005/07/16 01:19:17 jlam Exp $ +# $NetBSD: Makefile,v 1.18 2005/11/17 17:02:04 rillig Exp $ # DISTNAME= pkg_filecheck-0.1 +PKGREVISION= 1 CATEGORIES= pkgtools devel MASTER_SITES= # empty DISTFILES= # empty @@ -46,4 +47,5 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/pkg_filecheck.conf \ ${PREFIX}/share/examples/pkg_filecheck/pkg_filecheck.conf +.include "../../pkgtools/libnbcompat/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/pkgtools/pkg_filecheck/files/pkg_filecheck.c b/pkgtools/pkg_filecheck/files/pkg_filecheck.c index b372c625d69..0a5923f2ce2 100644 --- a/pkgtools/pkg_filecheck/files/pkg_filecheck.c +++ b/pkgtools/pkg_filecheck/files/pkg_filecheck.c @@ -1,5 +1,5 @@ /* - $NetBSD: pkg_filecheck.c,v 1.1.1.1 2003/07/13 16:15:34 wiz Exp $ + $NetBSD: pkg_filecheck.c,v 1.2 2005/11/17 17:02:04 rillig Exp $ pkg_filecheck.c -- check for files not owned by any package Copyright (C) 2001 Dieter Baron @@ -30,12 +30,16 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <nbcompat.h> + #include <sys/types.h> #include <sys/stat.h> #include <db.h> #include <errno.h> #include <fcntl.h> +#ifdef HAVE_FTS_H #include <fts.h> +#endif #include <limits.h> #include <stdio.h> #include <stdlib.h> |