mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Adjust MSVC build scripts to parse Makefiles for defines
This adjusts the MSVC build scripts to look at the compile flags mentioned in the Makefile to look for -D arguments in order to determine which constants should be defined in Visual Studio builds. One small anomaly that appeared as a result of this change is that the Makefile for the ltree contrib module defined LOWER_NODE, but this was not properly defined in the MSVC build scripts. This meant that MSVC builds would differ in case sensitivity in the ltree module when compared to builds using a make build environment. To maintain the same behavior here we remove the -DLOWER_NODE from the Makefile and just always define it in ltree.h for non-MSVC builds. We need to maintain the old behavior here as this affects the on-disk compatibility of GiST indexes when using the ltree type. The only other resulting change here is that REFINT_VERBOSE is now defined for the autoinc, insert_username and moddatetime contrib modules. Previously on MSVC, this was only defined for the refint module. This aligns the behavior to build environments using make as all 4 of these modules share the same Makefile. Reviewed-by: Tom Lane Discussion: https://postgr.es/m/CAApHDvpo6g5csCTjc_0C7DMvgFPomVb0Rh-AcW5afd=Ya=LRuw@mail.gmail.com
This commit is contained in:
@ -35,7 +35,7 @@ my $libpq;
|
||||
my @unlink_on_exit;
|
||||
|
||||
# Set of variables for modules in contrib/ and src/test/modules/
|
||||
my $contrib_defines = { 'refint' => 'REFINT_VERBOSE' };
|
||||
my $contrib_defines = {};
|
||||
my @contrib_uselibpq =
|
||||
('dblink', 'oid2name', 'postgres_fdw', 'vacuumlo', 'libpq_pipeline');
|
||||
my @contrib_uselibpgport = ('libpq_pipeline', 'oid2name', 'vacuumlo');
|
||||
@ -964,6 +964,7 @@ sub AddContrib
|
||||
my $subdir = shift;
|
||||
my $n = shift;
|
||||
my $mf = Project::read_file("$subdir/$n/Makefile");
|
||||
my @projects = ();
|
||||
|
||||
if ($mf =~ /^MODULE_big\s*=\s*(.*)$/mg)
|
||||
{
|
||||
@ -971,6 +972,7 @@ sub AddContrib
|
||||
my $proj = $solution->AddProject($dn, 'dll', 'contrib', "$subdir/$n");
|
||||
$proj->AddReference($postgres);
|
||||
AdjustContribProj($proj);
|
||||
push @projects, $proj;
|
||||
}
|
||||
elsif ($mf =~ /^MODULES\s*=\s*(.*)$/mg)
|
||||
{
|
||||
@ -982,18 +984,35 @@ sub AddContrib
|
||||
$proj->AddFile("$subdir/$n/$filename");
|
||||
$proj->AddReference($postgres);
|
||||
AdjustContribProj($proj);
|
||||
push @projects, $proj;
|
||||
}
|
||||
}
|
||||
elsif ($mf =~ /^PROGRAM\s*=\s*(.*)$/mg)
|
||||
{
|
||||
my $proj = $solution->AddProject($1, 'exe', 'contrib', "$subdir/$n");
|
||||
AdjustContribProj($proj);
|
||||
push @projects, $proj;
|
||||
}
|
||||
else
|
||||
{
|
||||
croak "Could not determine contrib module type for $n\n";
|
||||
}
|
||||
|
||||
# Process custom compiler flags
|
||||
if ($mf =~ /^PG_CPPFLAGS\s*=\s*(.*)$/mg || $mf =~ /^override\s*CPPFLAGS\s*[+:]?=\s*(.*)$/mg)
|
||||
{
|
||||
foreach my $flag (split /\s+/, $1)
|
||||
{
|
||||
if ($flag =~ /^-D(.*)$/)
|
||||
{
|
||||
foreach my $proj (@projects)
|
||||
{
|
||||
$proj->AddDefine($1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Are there any output data files to build?
|
||||
GenerateContribSqlFiles($n, $mf);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user