diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-08 18:37:54 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2012-03-08 18:37:54 +0000 |
commit | 346415e3c06029d36c899250a77aa33df43cf6fc (patch) | |
tree | 797965d2bfac58a73c0d67dad809d827f98b87fd /lang/perl5.8/files/patch-perl.c | |
parent | - Include BUILD_DEPENDS as well as RUN_DEPENDS since the module seems to (diff) |
- Remove lang/perl5.8 (12/16/2008 EOL) and lang/perl5.10 (08/23/2009 EOL)
- lang/5.12 (default) is in Maint mode and lang/5.14 is GA right now.
- The final UNcommitted portition of this PR will move the default perl
to lang/perl5.14 but
mail/cyrus-impad2
mail/cyrus-impad22
print/perlftlib
audio/papcl
www/WebMagick
misc/gcstar
math/ploymak
must be fixed or marked BROKEN 1st.
PR: ports/165457
Submitted by: pgollucci (myself)
Approved by: portmgr (linimon)
Exp Run by: linimon
Tested by: make index
Notes
Notes:
svn path=/head/; revision=292976
Diffstat (limited to 'lang/perl5.8/files/patch-perl.c')
-rw-r--r-- | lang/perl5.8/files/patch-perl.c | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/lang/perl5.8/files/patch-perl.c b/lang/perl5.8/files/patch-perl.c deleted file mode 100644 index 8e91bd68b9e6..000000000000 --- a/lang/perl5.8/files/patch-perl.c +++ /dev/null @@ -1,69 +0,0 @@ ---- perl.c -+++ perl.c -@@ -3724,7 +3724,7 @@ - * perl with that fd as it has always done. - */ - } -- if (*suidscript) { -+ if (*suidscript != TRUE) { - Perl_croak(aTHX_ "suidperl needs (suid) fd script\n"); - } - #else /* IAMSUID */ -@@ -4882,6 +4882,28 @@ - incpush(APPLLIB_EXP, TRUE, TRUE, TRUE, TRUE); - #endif - -+#ifdef SITEARCH_EXP -+ /* sitearch is always relative to sitelib on Windows for -+ * DLL-based path intuition to work correctly */ -+# if !defined(WIN32) -+ incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE); -+# endif -+#endif -+ -+#ifdef SITELIB_EXP -+# if defined(WIN32) -+ /* this picks up sitearch as well */ -+ incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE); -+# else -+ incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE); -+# endif -+#endif -+ -+#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST) -+ /* Search for version-specific dirs below here */ -+ incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE); -+#endif -+ - #ifdef ARCHLIB_EXP - incpush(ARCHLIB_EXP, FALSE, FALSE, TRUE, TRUE); - #endif -@@ -4915,28 +4937,6 @@ - incpush(PRIVLIB_EXP, FALSE, FALSE, TRUE, TRUE); - #endif - --#ifdef SITEARCH_EXP -- /* sitearch is always relative to sitelib on Windows for -- * DLL-based path intuition to work correctly */ --# if !defined(WIN32) -- incpush(SITEARCH_EXP, FALSE, FALSE, TRUE, TRUE); --# endif --#endif -- --#ifdef SITELIB_EXP --# if defined(WIN32) -- /* this picks up sitearch as well */ -- incpush(SITELIB_EXP, TRUE, FALSE, TRUE, TRUE); --# else -- incpush(SITELIB_EXP, FALSE, FALSE, TRUE, TRUE); --# endif --#endif -- --#if defined(SITELIB_STEM) && defined(PERL_INC_VERSION_LIST) -- /* Search for version-specific dirs below here */ -- incpush(SITELIB_STEM, FALSE, TRUE, TRUE, TRUE); --#endif -- - #ifdef PERL_VENDORARCH_EXP - /* vendorarch is always relative to vendorlib on Windows for - * DLL-based path intuition to work correctly */ |