]> granicus.if.org Git - postgresql/commitdiff
Use configured pgport in MSVC config file.
authorAndrew Dunstan <andrew@dunslane.net>
Tue, 15 May 2007 00:15:01 +0000 (00:15 +0000)
committerAndrew Dunstan <andrew@dunslane.net>
Tue, 15 May 2007 00:15:01 +0000 (00:15 +0000)
src/tools/msvc/Solution.pm

index cd65cb3b455ed658ff64a7d60bb018e331bd2cf5..8983978c72cde9dc6f84c310691ef5e890b71f9f 100644 (file)
@@ -3,7 +3,7 @@ package Solution;
 #
 # Package that encapsulates a Visual C++ solution file generation
 #
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.23 2007/04/26 10:36:47 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.24 2007/05/15 00:15:01 adunstan Exp $
 #
 use Carp;
 use strict;
@@ -125,6 +125,11 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
             print O "#define HAVE_KRB5_TICKET_ENC_PART2 1\n";
             print O "#define PG_KRB_SRVNAM \"postgres\"\n";
         }
+               if (my $port = $self->{options}->{--with-pgport})
+               {
+                       print O "#define DEF_PGPORT $port\n";
+                       print O "#define DEF_PGPORT_STR \"$port\"\n";
+               }
         print O "#define VAL_CONFIGURE \"" . $self->GetFakeConfigure() . "\"\n";
         print O "#endif /* IGNORE_CONFIGURED_SETTINGS */\n";
         close(O);