diff options
author | kevlo <kevlo@FreeBSD.org> | 2001-03-25 23:23:24 +0800 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2001-03-25 23:23:24 +0800 |
commit | 09eae933072cfbd0ed1a893cadd7ca27ddb57a92 (patch) | |
tree | 68fe2e6f066cfa617ad3c7b0b98f8dca0474d837 /databases | |
parent | 5a72812a0934a57363a4f90794229dd60d3da390 (diff) | |
download | freebsd-ports-gnome-09eae933072cfbd0ed1a893cadd7ca27ddb57a92.tar.gz freebsd-ports-gnome-09eae933072cfbd0ed1a893cadd7ca27ddb57a92.tar.zst freebsd-ports-gnome-09eae933072cfbd0ed1a893cadd7ca27ddb57a92.zip |
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> |