aboutsummaryrefslogtreecommitdiff
path: root/ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch
diff options
context:
space:
mode:
authorAlexander Neumann <30894796+Neumann-A@users.noreply.github.com>2020-11-04 07:59:02 +0100
committerGitHub <noreply@github.com>2020-11-03 22:59:02 -0800
commit63dccf771d0bf84f8a1e111c8b53a4057d4c0a18 (patch)
treef0e840ea56fc2959d27dced9df9dda4202ef1c99 /ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch
parentc4c020828aa1b743707876ffaeb0dccf091e96f5 (diff)
downloadvcpkg-63dccf771d0bf84f8a1e111c8b53a4057d4c0a18.tar.gz
vcpkg-63dccf771d0bf84f8a1e111c8b53a4057d4c0a18.zip
[OpenSSL] refactor openssl ports. (#14308)
Diffstat (limited to 'ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch')
-rw-r--r--ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch b/ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch
deleted file mode 100644
index 1a8de2c4b..000000000
--- a/ports/openssl-unix/EmbedSymbolsInStaticLibsZ7.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl
-index dba96cb..5722f6e 100644
---- a/util/pl/VC-32.pl
-+++ b/util/pl/VC-32.pl
-@@ -154,9 +154,17 @@ else
- $cflags=$opt_cflags.$base_cflags;
- }
-
--# generate symbols.pdb unconditionally
--$app_cflag.=" /Zi /Fd\$(TMP_D)/app";
--$lib_cflag.=" /Zi /Fd\$(TMP_D)/lib";
-+# generate symbols.pdb when building dlls and embed symbols when building static libs
-+if ($shlib)
-+ {
-+ $app_cflag.=" /Zi /Fd\$(TMP_D)/app.pdb";
-+ $lib_cflag.=" /Zi /Fd\$(TMP_D)/lib.pdb";
-+ }
-+else
-+ {
-+ $app_cflag.=" /Z7";
-+ $lib_cflag.=" /Z7";
-+ }
- $lflags.=" /debug";
-
- $obj='.obj';