@@ -3,7 +3,7 @@ package Install;
3
3
#
4
4
# Package that provides 'make install' functionality for msvc builds
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.13 2007/04/2518:58:33 mha Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.14 2007/04/2519:00:05 mha Exp $
7
7
#
8
8
use strict;
9
9
use warnings;
@@ -46,7 +46,7 @@ sub Install
46
46
CopyFiles(
47
47
' Import libraries' ,
48
48
$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 "
50
50
);
51
51
CopySetOfFiles(' timezone names' ,' src\timezone\tznames\*.txt' ,$target .' /share/timezonesets/' );
52
52
CopyFiles(
@@ -265,7 +265,7 @@ sub CopyContribFiles
265
265
foreach my $f (split /\s +/,$flist )
266
266
{
267
267
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 " );
269
269
print ' .' ;
270
270
}
271
271
}