diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2001-03-25 15:23:24 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2001-03-25 15:23:24 +0000 |
commit | 980af03d6b89b4d9f5340eaf5690c3a26650bcd7 (patch) | |
tree | d112caa4bf335f4748aa781c4dbcbf281abe40bc /databases | |
parent | - forgot somehow to add the cflowd.sh sample startup script $FILESDIR (diff) |
Fix problem on -CURRENT.
PR: 26066
Submitted by: MAINTAINER
Diffstat (limited to 'databases')
-rw-r--r-- | databases/p5-DBZ_File/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/p5-DBZ_File/Makefile b/databases/p5-DBZ_File/Makefile index 0e6e95795d32..ebfb9347337d 100644 --- a/databases/p5-DBZ_File/Makefile +++ b/databases/p5-DBZ_File/Makefile @@ -18,9 +18,15 @@ MAINTAINER= leeym@cae.ce.ntu.edu.tw PERL_CONFIGURE= yes CONFIGURE_ARGS= DEFINE="-I${FILESDIR}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500007 +CONFIGURE_ARGS+= POLLUTE=1 +.endif + WRKSRC= ${WRKDIR}/DBZ_File MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= DBZ_File.3 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |