Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6792b4b

Browse files
committed
Install libpgport.lib as needed by some client programs.
Dave Page
1 parent 9295463 commit 6792b4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tools/msvc/Install.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Install;
33
#
44
# Package that provides 'make install' functionality for msvc builds
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.13 2007/04/25 18:58:33 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.14 2007/04/25 19:00:05 mha Exp $
77
#
88
use strict;
99
use warnings;
@@ -46,7 +46,7 @@ sub Install
4646
CopyFiles(
4747
'Import libraries',
4848
$target .'/lib/',
49-
"$conf\\", "postgres\\postgres.lib","libpq\\libpq.lib", "libecpg\\libecpg.lib"
49+
"$conf\\", "postgres\\postgres.lib","libpq\\libpq.lib", "libecpg\\libecpg.lib", "libpgport\\libpgport.lib"
5050
);
5151
CopySetOfFiles('timezone names', 'src\timezone\tznames\*.txt',$target . '/share/timezonesets/');
5252
CopyFiles(
@@ -265,7 +265,7 @@ sub CopyContribFiles
265265
foreach my $f (split /\s+/,$flist)
266266
{
267267
copy('contrib/' . $d . '/' . $f, $target . '/doc/contrib/' . $f)
268-
|| croak("Coud not copy file $f in contrib $d");
268+
|| croak("Could not copy file $f in contrib $d");
269269
print '.';
270270
}
271271
}

0 commit comments

Comments
 (0)