Commit 6792b4bb authored by Magnus Hagander's avatar Magnus Hagander

Install libpgport.lib as needed by some client programs.

Dave Page
parent 92954630
......@@ -3,7 +3,7 @@ package Install;
#
# Package that provides 'make install' functionality for msvc builds
#
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.13 2007/04/25 18:58:33 mha Exp $
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.14 2007/04/25 19:00:05 mha Exp $
#
use strict;
use warnings;
......@@ -46,7 +46,7 @@ sub Install
CopyFiles(
'Import libraries',
$target .'/lib/',
"$conf\\", "postgres\\postgres.lib","libpq\\libpq.lib", "libecpg\\libecpg.lib"
"$conf\\", "postgres\\postgres.lib","libpq\\libpq.lib", "libecpg\\libecpg.lib", "libpgport\\libpgport.lib"
);
CopySetOfFiles('timezone names', 'src\timezone\tznames\*.txt',$target . '/share/timezonesets/');
CopyFiles(
......@@ -265,7 +265,7 @@ sub CopyContribFiles
foreach my $f (split /\s+/,$flist)
{
copy('contrib/' . $d . '/' . $f, $target . '/doc/contrib/' . $f)
|| croak("Coud not copy file $f in contrib $d");
|| croak("Could not copy file $f in contrib $d");
print '.';
}
}
......
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