Skip to content
Snippets Groups Projects
Commit ea7f18d1 authored by Andrew Dunstan's avatar Andrew Dunstan
Browse files

fix perl thinko

parent 42a65e39
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ package Solution; ...@@ -3,7 +3,7 @@ package Solution;
# #
# Package that encapsulates a Visual C++ solution file generation # Package that encapsulates a Visual C++ solution file generation
# #
# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.24 2007/05/15 00:15:01 adunstan Exp $ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.25 2007/05/15 01:57:57 adunstan Exp $
# #
use Carp; use Carp;
use strict; use strict;
...@@ -125,7 +125,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY ...@@ -125,7 +125,7 @@ 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 HAVE_KRB5_TICKET_ENC_PART2 1\n";
print O "#define PG_KRB_SRVNAM \"postgres\"\n"; print O "#define PG_KRB_SRVNAM \"postgres\"\n";
} }
if (my $port = $self->{options}->{--with-pgport}) if (my $port = $self->{options}->{"--with-pgport"})
{ {
print O "#define DEF_PGPORT $port\n"; print O "#define DEF_PGPORT $port\n";
print O "#define DEF_PGPORT_STR \"$port\"\n"; print O "#define DEF_PGPORT_STR \"$port\"\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment