Commit 9363b8b7 authored by Noah Misch's avatar Noah Misch

MSVC: Rebuild spiexceptions.h when out of date.

Also, add a warning to catch future instances of naming a nonexistent
file as a prerequisite.  Back-patch to 9.3 (all supported versions).
parent cbfffee4
...@@ -81,6 +81,7 @@ sub DeterminePlatform ...@@ -81,6 +81,7 @@ sub DeterminePlatform
sub IsNewer sub IsNewer
{ {
my ($newfile, $oldfile) = @_; my ($newfile, $oldfile) = @_;
-e $oldfile or warn "source file \"$oldfile\" does not exist";
if ( $oldfile ne 'src/tools/msvc/config.pl' if ( $oldfile ne 'src/tools/msvc/config.pl'
&& $oldfile ne 'src/tools/msvc/config_default.pl') && $oldfile ne 'src/tools/msvc/config_default.pl')
{ {
...@@ -325,7 +326,7 @@ s{PG_VERSION_STR "[^"]+"}{PG_VERSION_STR "PostgreSQL $self->{strver}$extraver, c ...@@ -325,7 +326,7 @@ s{PG_VERSION_STR "[^"]+"}{PG_VERSION_STR "PostgreSQL $self->{strver}$extraver, c
if ($self->{options}->{python} if ($self->{options}->{python}
&& IsNewer( && IsNewer(
'src/pl/plpython/spiexceptions.h', 'src/pl/plpython/spiexceptions.h',
'src/include/backend/errcodes.txt')) 'src/backend/utils/errcodes.txt'))
{ {
print "Generating spiexceptions.h...\n"; print "Generating spiexceptions.h...\n";
system( system(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment