summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam>2002-08-08 06:10:03 +0000
committerjlam <jlam>2002-08-08 06:10:03 +0000
commit08bb1e3052a2f06e61b2f548ffffac898a262c39 (patch)
tree9b18d66173edafa05c697b6a7e52660f6919e8b7
parent4595491ae1ebf560fe0a26bd6e49aa4d5eed5dbb (diff)
downloadpkgsrc-08bb1e3052a2f06e61b2f548ffffac898a262c39.tar.gz
Allow non-Darwin platforms to build perl58. We're in pkgsrc lockdown down
just prior to branching for 1.6, so this should be okay now. I also want to see this built in the bulk-builds for testing purposes.
-rw-r--r--lang/perl58/Makefile6
-rw-r--r--mk/bsd.pkg.mk5
2 files changed, 3 insertions, 8 deletions
diff --git a/lang/perl58/Makefile b/lang/perl58/Makefile
index 6937c6256a0..121aecb31d1 100644
--- a/lang/perl58/Makefile
+++ b/lang/perl58/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 2002/07/22 21:50:37 jlam Exp $
+# $NetBSD: Makefile,v 1.2 2002/08/08 06:10:05 jlam Exp $
.include "Makefile.common"
@@ -28,10 +28,6 @@ CONFIGURE_ARGS+= -Uinstallusrbinperl
.include "../../mk/bsd.prefs.mk"
-.if !(defined(_USE_PERL58) && (${_USE_PERL58} == "YES"))
-ONLY_FOR_PLATFORM= Darwin-*-*
-.endif
-
MKPIC?= yes
.if ${OPSYS} == "Darwin"
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 4bac19c6f65..747705ee6f1 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.pkg.mk,v 1.1028 2002/08/07 15:12:45 agc Exp $
+# $NetBSD: bsd.pkg.mk,v 1.1029 2002/08/08 06:10:03 jlam Exp $
#
# This file is in the public domain.
#
@@ -227,8 +227,7 @@ _PERL58_PATTERNS= 5.8.* 5.9* 5.[1-9][0-9]*
# value of PERL5_REQD (possible user-supplied) so that it is always at least
# 5.8.0.
#
-.if (${OPSYS} == "Darwin") || \
- (defined(_USE_PERL58) && (${_USE_PERL58} == "YES"))
+.if ${OPSYS} == "Darwin"
_PERL58_REQD?= 5.8.0
. for _pattern_ in ${_PERL58_PATTERNS}
. if !empty(PERL5_REQD:M${_pattern_})