aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2008-01-31 16:30:24 +0000
committerAndrew Dunstan <andrew@dunslane.net>2008-01-31 16:30:24 +0000
commit7ae43187eec780e6408f85db7e7a181af6a7db0c (patch)
tree4144c6feb275eec4fa7418f287f89e3d724b81fd /src
parent55986a5eb8646e1aa0f12a546e20ad814a721066 (diff)
downloadpostgresql-7ae43187eec780e6408f85db7e7a181af6a7db0c.tar.gz
postgresql-7ae43187eec780e6408f85db7e7a181af6a7db0c.zip
Remove 3 hex digit limit on symbol number in recent fix.
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/gendef.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/gendef.pl b/src/tools/msvc/gendef.pl
index 27ed132a522..05455787cbb 100644
--- a/src/tools/msvc/gendef.pl
+++ b/src/tools/msvc/gendef.pl
@@ -2,7 +2,7 @@ my @def;
#
# Script that generates a .DEF file for all objects in a directory
#
-# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.7 2008/01/31 03:26:14 adunstan Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.8 2008/01/31 16:30:24 adunstan Exp $
#
die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
@@ -27,7 +27,7 @@ while (<$ARGV[0]/*.obj>)
{
s/\(\)//g;
my @pieces = split;
- next unless $pieces[0] =~ /^[A-F0-9]{3}$/;
+ next unless $pieces[0] =~ /^[A-F0-9]{3,}$/;
next unless $pieces[6];
next if ($pieces[2] eq "UNDEF");
next unless ($pieces[4] eq "External");