summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_filecheck
diff options
context:
space:
mode:
authorrillig <rillig>2005-11-17 17:02:04 +0000
committerrillig <rillig>2005-11-17 17:02:04 +0000
commit2b41d5f36bd8027724cb4b2995a055b34eb3ca41 (patch)
treed872e015b3b144011dcae0606699269e3939875f /pkgtools/pkg_filecheck
parente7de38d8a1ffe0a65b5ac3d3c9aceb099868d37e (diff)
downloadpkgsrc-2b41d5f36bd8027724cb4b2995a055b34eb3ca41.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/pkg_filecheck')
-rw-r--r--pkgtools/pkg_filecheck/Makefile4
-rw-r--r--pkgtools/pkg_filecheck/files/pkg_filecheck.c6
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>