This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
replace Pod::Text with Pod::SimpleText v0.01 (thanks
[perl5.git] / perl.c
diff --git a/perl.c b/perl.c
index 23aec97..3a3505d 100644 (file)
--- a/perl.c
+++ b/perl.c
@@ -2769,6 +2769,13 @@ S_init_perllib(pTHX)
     incpush(SITELIB_EXP, FALSE);
 #endif
 #endif
+#if defined(PERL_VENDORLIB_EXP)
+#if defined(WIN32) 
+    incpush(PERL_VENDORLIB_EXP, TRUE);
+#else
+    incpush(PERL_VENDORLIB_EXP, FALSE);
+#endif
+#endif
     if (!PL_tainting)
        incpush(".", FALSE);
 }