diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2010-11-18 10:46:01 +0000 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2010-11-18 10:46:41 +0000 |
commit | 2a46176fce26ca9f48e1c970c01e133149ab2d91 (patch) | |
tree | 8da08f48859b49124dc07e0c90a0be02347e0da4 /makedef.pl | |
parent | 8c8488cd4fce90cb5c03fb3f89e89c05e5275498 (diff) | |
download | perl-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.pl | 2 |
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"; |