We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55986a5 commit 7ae4318Copy full SHA for 7ae4318
src/tools/msvc/gendef.pl
@@ -2,7 +2,7 @@
2
#
3
# Script that generates a .DEF file for all objects in a directory
4
5
-# $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 $
6
7
8
die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
@@ -27,7 +27,7 @@
27
{
28
s/\(\)//g;
29
my @pieces = split;
30
- next unless $pieces[0] =~ /^[A-F0-9]{3}$/;
+ next unless $pieces[0] =~ /^[A-F0-9]{3,}$/;
31
next unless $pieces[6];
32
next if ($pieces[2] eq "UNDEF");
33
next unless ($pieces[4] eq "External");
0 commit comments