summaryrefslogtreecommitdiff
path: root/makedef.pl
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2007-08-29 16:58:25 +0000
committerSteve Hay <SteveHay@planit.com>2007-08-29 16:58:25 +0000
commit4a3cf07bda2f6af05e179d2069439e7a3f613a45 (patch)
tree77609e1f108d0704efed5b77d6d47412d418caac /makedef.pl
parentfa5b08bca622180d641ac727a375fcb31eddce18 (diff)
downloadperl-4a3cf07bda2f6af05e179d2069439e7a3f613a45.tar.gz
Add support for Visual C++ 2008 Express Edition (Beta 2)
p4raw-id: //depot/perl@31761
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 b16a0aa0f2..b080f4018c 100644
--- a/makedef.pl
+++ b/makedef.pl
@@ -163,7 +163,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/) {
+ if ($CCTYPE !~ /^MSVC7/ && $CCTYPE !~ /^MSVC8/ && $CCTYPE !~ /^MSVC9/) {
print "DESCRIPTION 'Perl interpreter'\n";
}
print "EXPORTS\n";