summaryrefslogtreecommitdiff
path: root/lang/perl5.8/files/patch-perl.c
diff options
context:
space:
mode:
authorAndrej Zverev <az@FreeBSD.org>2013-02-04 08:46:42 +0000
committerAndrej Zverev <az@FreeBSD.org>2013-02-04 08:46:42 +0000
commit862e4cc0a8123d3cd3f84ae459e94f1e2a01a16d (patch)
tree682f8db18f2933418c68c9666c8c9b84ab987dbf /lang/perl5.8/files/patch-perl.c
parent- Update to version 1.2.1.1. (diff)
- Remove lang/perl5.8 and lang/perl5.10
Reviewed by: bapt@ Approved by: skv@ (implicit via email)
Notes
Notes: svn path=/head/; revision=311580
Diffstat (limited to 'lang/perl5.8/files/patch-perl.c')
-rw-r--r--lang/perl5.8/files/patch-perl.c69
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 */