diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-06 06:31:55 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-06 06:31:55 +0000 |
commit | 4ea817c67acbb0637159d692922fa81954793ad9 (patch) | |
tree | d678fab0fb3d32ff89900154847a56a3c59e0a55 /win32/config_h.PL | |
parent | 3b2903621aacf4b1cc9b9d99f9a25167b486b91f (diff) | |
download | perl-4ea817c67acbb0637159d692922fa81954793ad9.tar.gz |
vendorlib support for Windows; regen win32/config*
p4raw-id: //depot/perl@5574
Diffstat (limited to 'win32/config_h.PL')
-rw-r--r-- | win32/config_h.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/config_h.PL b/win32/config_h.PL index 17f3fc2163..5b0450609f 100644 --- a/win32/config_h.PL +++ b/win32/config_h.PL @@ -49,12 +49,12 @@ while (<SH>) munge(); s/\\\$/\$/g; s#/[ *\*]*\*/#/**/#; - if (/^\s*#define\s+(PRIVLIB|SITELIB)_EXP/) + if (/^\s*#define\s+(PRIVLIB|SITELIB|VENDORLIB)_EXP/) { $_ = "#define ". $1 . "_EXP (win32_get_". lc($1) . "($patchlevel))\t/**/\n"; } # incpush() handles archlibs, so disable them - elsif (/^\s*#define\s+(ARCHLIB|SITEARCH)_EXP/) + elsif (/^\s*#define\s+(ARCHLIB|SITEARCH|VENDORARCH)_EXP/) { $_ = "/*#define ". $1 . "_EXP \"\"\t/**/\n"; } |