summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2010-11-18 10:46:01 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2010-11-18 10:46:41 +0000
commit2a46176fce26ca9f48e1c970c01e133149ab2d91 (patch)
tree8da08f48859b49124dc07e0c90a0be02347e0da4 /makedef.pl
parent8c8488cd4fce90cb5c03fb3f89e89c05e5275498 (diff)
downloadperl-2a46176fce26ca9f48e1c970c01e133149ab2d91.tar.gz
Support Visual C++ 2010
Also add a couple of things to win32/makefile.mk which were only previously applied to win32/Makefile
Diffstat (limited to 'makedef.pl')
-rw-r--r--makedef.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/makedef.pl b/makedef.pl
index 58a00c6e68..61d3f08f07 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -193,7 +193,7 @@ if ($PLATFORM =~ /^win(?:32|ce)$/) {
print "LIBRARY $dll\n";
# The DESCRIPTION module definition file statement is not supported
# by VC7 onwards.
- if ($CCTYPE !~ /^MSVC7/ && $CCTYPE !~ /^MSVC8/ && $CCTYPE !~ /^MSVC9/) {
+ if ($CCTYPE =~ /^(?:MSVC60|GCC|BORLAND)$/) {
print "DESCRIPTION 'Perl interpreter'\n";
}
print "EXPORTS\n";