aboutsummaryrefslogtreecommitdiff
path: root/lang/perl5.6/files/patch-perl.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2004-10-29 09:06:05 +0000
commit3add449a170be706377b66bee46af25633bc945c (patch)
tree7415df14a37624ff0b24fd40bde079927a88c28a /lang/perl5.6/files/patch-perl.c
parent975af646f278430e563b72219a2c3055b211eb1a (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_3_0'.release/5.3.0
Notes
Notes: svn path=/head/; revision=120459 svn path=/tags/RELEASE_5_3_0/; revision=120460; tag=release/5.3.0
Diffstat (limited to 'lang/perl5.6/files/patch-perl.c')
-rw-r--r--lang/perl5.6/files/patch-perl.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/lang/perl5.6/files/patch-perl.c b/lang/perl5.6/files/patch-perl.c
deleted file mode 100644
index b9b348bef069..000000000000
--- a/lang/perl5.6/files/patch-perl.c
+++ /dev/null
@@ -1,58 +0,0 @@
-$FreeBSD$
-
---- perl.c.orig Sun Jun 2 12:29:01 2002
-+++ perl.c Sun Jun 2 12:30:14 2002
-@@ -3407,6 +3407,26 @@
- #endif /* VMS */
- }
-
-+#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);
-+# endif
-+#endif
-+
-+#ifdef SITELIB_EXP
-+# if defined(WIN32)
-+ incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */
-+# else
-+ incpush(SITELIB_EXP, FALSE, FALSE);
-+# endif
-+#endif
-+
-+#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
-+ incpush(SITELIB_STEM, FALSE, TRUE);
-+#endif
-+
- /* Use the ~-expanded versions of APPLLIB (undocumented),
- ARCHLIB PRIVLIB SITEARCH SITELIB VENDORARCH and VENDORLIB
- */
-@@ -3445,26 +3465,6 @@
- incpush(PRIVLIB_EXP, TRUE, FALSE);
- #else
- incpush(PRIVLIB_EXP, FALSE, FALSE);
--#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);
--# endif
--#endif
--
--#ifdef SITELIB_EXP
--# if defined(WIN32)
-- incpush(SITELIB_EXP, TRUE, FALSE); /* this picks up sitearch as well */
--# else
-- incpush(SITELIB_EXP, FALSE, FALSE);
--# endif
--#endif
--
--#ifdef SITELIB_STEM /* Search for version-specific dirs below here */
-- incpush(SITELIB_STEM, FALSE, TRUE);
- #endif
-
- #ifdef PERL_VENDORARCH_EXP