mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 10:50:25 +08:00
01a065a970
* [libpq] Update to 12.9 * [libpq] Use VCPKG_OSX_SYSROOT if set otherwise configure set the default sysroot in addition, ignoring the sysroot set by vcpkg_configure_cmake. * [libpq] remove comment only chunks from patches * [libpq] update version registry
95 lines
3.6 KiB
Diff
95 lines
3.6 KiB
Diff
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
|
|
index 51711c2bf..d33fdc3b0 100644
|
|
--- a/src/tools/msvc/Solution.pm
|
|
+++ b/src/tools/msvc/Solution.pm
|
|
@@ -658,7 +658,7 @@ sub AddProject
|
|
if ($self->{options}->{zlib})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{zlib} . '\include');
|
|
- $proj->AddLibrary($self->{options}->{zlib} . '\lib\zdll.lib');
|
|
+ $proj->AddLibrary($self->{options}->{zlib} . '\debug\lib\zlibd.lib');
|
|
}
|
|
if ($self->{options}->{openssl})
|
|
{
|
|
@@ -698,8 +698,8 @@ sub AddProject
|
|
# On both Win32 and Win64 the same library
|
|
# names are used without a debugging context.
|
|
$dbgsuffix = 0;
|
|
- $libsslpath = '\lib\libssl.lib';
|
|
- $libcryptopath = '\lib\libcrypto.lib';
|
|
+ $libsslpath = '\debug\lib\libssl.lib';
|
|
+ $libcryptopath = '\debug\lib\libcrypto.lib';
|
|
}
|
|
|
|
$proj->AddLibrary($self->{options}->{openssl} . $libsslpath,
|
|
@@ -715,16 +715,16 @@ sub AddProject
|
|
# to be here, so don't ask for it in last
|
|
# parameter.
|
|
$proj->AddLibrary(
|
|
- $self->{options}->{openssl} . '\lib\ssleay32.lib', 0);
|
|
+ $self->{options}->{openssl} . '\debug\lib\ssleay32.lib', 0);
|
|
$proj->AddLibrary(
|
|
- $self->{options}->{openssl} . '\lib\libeay32.lib', 0);
|
|
+ $self->{options}->{openssl} . '\debug\lib\libeay32.lib', 0);
|
|
}
|
|
}
|
|
}
|
|
if ($self->{options}->{nls})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{nls} . '\include');
|
|
- $proj->AddLibrary($self->{options}->{nls} . '\lib\libintl.lib');
|
|
+ $proj->AddLibrary($self->{options}->{nls} . '\debug\lib\intl.lib');
|
|
}
|
|
if ($self->{options}->{gss})
|
|
{
|
|
@@ -752,39 +752,39 @@ sub AddProject
|
|
if ($self->{options}->{iconv})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{iconv} . '\include');
|
|
- $proj->AddLibrary($self->{options}->{iconv} . '\lib\iconv.lib');
|
|
+ $proj->AddLibrary($self->{options}->{iconv} . '\debug\lib\iconv.lib');
|
|
}
|
|
if ($self->{options}->{icu})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{icu} . '\include');
|
|
if ($self->{platform} eq 'Win32')
|
|
{
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib\icuin.lib');
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib\icuuc.lib');
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib\icudt.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icuind.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icuucd.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icudtd.lib');
|
|
}
|
|
else
|
|
{
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib64\icuin.lib');
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib64\icuuc.lib');
|
|
- $proj->AddLibrary($self->{options}->{icu} . '\lib64\icudt.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icuind.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icuucd.lib');
|
|
+ $proj->AddLibrary($self->{options}->{icu} . '\debug\lib\icudtd.lib');
|
|
}
|
|
}
|
|
if ($self->{options}->{xml})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{xml} . '\include');
|
|
$proj->AddIncludeDir($self->{options}->{xml} . '\include\libxml2');
|
|
- $proj->AddLibrary($self->{options}->{xml} . '\lib\libxml2.lib');
|
|
+ $proj->AddLibrary($self->{options}->{xml} . '\debug\lib\libxml2.lib');
|
|
}
|
|
if ($self->{options}->{xslt})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{xslt} . '\include');
|
|
- $proj->AddLibrary($self->{options}->{xslt} . '\lib\libxslt.lib');
|
|
+ $proj->AddLibrary($self->{options}->{xslt} . '\debug\lib\libxslt.lib');
|
|
}
|
|
if ($self->{options}->{uuid})
|
|
{
|
|
$proj->AddIncludeDir($self->{options}->{uuid} . '\include');
|
|
- $proj->AddLibrary($self->{options}->{uuid} . '\lib\uuid.lib');
|
|
+ $proj->AddLibrary($self->{options}->{uuid} . '\debug\lib\uuid.lib');
|
|
}
|
|
return $proj;
|
|
}
|