diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-07 13:43:16 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-07 13:43:16 +0800 |
commit | 6c105d7853336dcccdbcc998e9ac6da17d4439db (patch) | |
tree | c3d9bb758cf88c58bf72a615f08e8754d197ab05 /lang/pike76 | |
parent | c6953479e2e8a089dac198de781fd159e717a62e (diff) | |
download | freebsd-ports-graphics-6c105d7853336dcccdbcc998e9ac6da17d4439db.tar.gz freebsd-ports-graphics-6c105d7853336dcccdbcc998e9ac6da17d4439db.tar.zst freebsd-ports-graphics-6c105d7853336dcccdbcc998e9ac6da17d4439db.zip |
Move the definition of USE_PERL5 before bsd.port.pre.mk inclusion. This
is necessary to allow conditional inclusion of bsd.perl.mk.
Hat: portmgr
Diffstat (limited to 'lang/pike76')
-rw-r--r-- | lang/pike76/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/pike76/Makefile b/lang/pike76/Makefile index 4cd55fd2d43..12de0a59f1a 100644 --- a/lang/pike76/Makefile +++ b/lang/pike76/Makefile @@ -81,19 +81,19 @@ USE_GETTEXT= yes USE_BISON= yes USE_GMAKE= yes +# Allow building Embedded Perl +CONFIGURE_ARGS+= --with-perl +USE_PERL5= YES + .include <bsd.port.pre.mk> ONLY_FOR_ARCHS= i386 amd64 PLIST_SUB+= PORTVERSION=${PORTVERSION} -.if ${ARCH} == "amd64" && ${OSVERSION} >= 700019 +.if ${ARCH} == "amd64" && ${OSVERSION} >= 700019 BROKEN= Does not compile .endif -# Allow building Embedded Perl -CONFIGURE_ARGS+= --with-perl -USE_PERL5= YES - .if defined(WITHOUT_RELOCATABLE_DUMPED_MODULES) CONFIGURE_ARGS+= --without-relocatable-dumped-modules .else |