diff options
author | tobez <tobez@FreeBSD.org> | 2005-12-22 23:21:00 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2005-12-22 23:21:00 +0800 |
commit | 27281fa527d08eabca4cd87ce43f6d445e0ed76d (patch) | |
tree | ccfcb8d023854d0db390c1c6e39dfb75e70185fb /lang/perl5.10 | |
parent | 6a7d879ed87ec124e7967a18ebd71b0acf5ce138 (diff) | |
download | freebsd-ports-gnome-27281fa527d08eabca4cd87ce43f6d445e0ed76d.tar.gz freebsd-ports-gnome-27281fa527d08eabca4cd87ce43f6d445e0ed76d.tar.zst freebsd-ports-gnome-27281fa527d08eabca4cd87ce43f6d445e0ed76d.zip |
Move path to BSDPAN ahead of the path to site_perl. This makes BSDPAN
work when devel/p5-ExtUtils/MakeMaker is installed.
This, again, is a minor change, which does not require re-installation
of the dependant packages.
Reported by: lth
Diffstat (limited to 'lang/perl5.10')
-rw-r--r-- | lang/perl5.10/Makefile | 2 | ||||
-rw-r--r-- | lang/perl5.10/files/patch-perl.c | 20 |
2 files changed, 10 insertions, 12 deletions
diff --git a/lang/perl5.10/Makefile b/lang/perl5.10/Makefile index fd4f8e20b6dd..3a0396bd78ae 100644 --- a/lang/perl5.10/Makefile +++ b/lang/perl5.10/Makefile @@ -7,7 +7,7 @@ PORTNAME= perl PORTVERSION= ${PERL_VER} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ ${MASTER_SITE_LOCAL:S/$/:local/} \ diff --git a/lang/perl5.10/files/patch-perl.c b/lang/perl5.10/files/patch-perl.c index 69c0e55bb12e..918c773b8ccb 100644 --- a/lang/perl5.10/files/patch-perl.c +++ b/lang/perl5.10/files/patch-perl.c @@ -1,11 +1,9 @@ -$FreeBSD$ - ---- perl.c.orig Mon Oct 27 20:32:18 2003 -+++ perl.c Mon Oct 27 20:33:57 2003 -@@ -3945,6 +3945,27 @@ S_init_perllib(pTHX) - /* Use the ~-expanded versions of APPLLIB (undocumented), - ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB - */ +--- perl.c.orig Fri Apr 22 16:14:27 2005 ++++ perl.c Thu Dec 22 12:47:28 2005 +@@ -4397,6 +4397,27 @@ S_init_perllib(pTHX) + incpush(APPLLIB_EXP, TRUE, TRUE, TRUE); + #endif + +#ifdef SITEARCH_EXP + /* sitearch is always relative to sitelib on Windows for + * DLL-based path intuition to work correctly */ @@ -27,10 +25,10 @@ $FreeBSD$ + incpush(SITELIB_STEM, FALSE, TRUE, TRUE); +#endif + - #ifdef APPLLIB_EXP - incpush(APPLLIB_EXP, TRUE, TRUE, TRUE); + #ifdef ARCHLIB_EXP + incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE); #endif -@@ -3980,27 +4001,6 @@ S_init_perllib(pTHX) +@@ -4428,27 +4449,6 @@ S_init_perllib(pTHX) incpush(PRIVLIB_EXP, TRUE, FALSE, TRUE); #else incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE); |