summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2017-08-31 10:53:11 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2017-08-31 10:53:11 +0200
commit60e3fb8b641f0c9b750dc404547d171be8ab3aac (patch)
treee1a590393cff53b677a1d0c6ec7e3f68d66eec2f /config
parent99f743b2c338ff729ae7f56d3b7add0f3bf8082c (diff)
downloadMPC-60e3fb8b641f0c9b750dc404547d171be8ab3aac.tar.gz
Introduce a new feature openssl11 which has to be set in addition to openssl to indicate that the user has OpenSSL 1.1 or newer, at that moment we change the libs for windows
* config/global.features: * config/openssl.mpb:
Diffstat (limited to 'config')
-rw-r--r--config/global.features1
-rw-r--r--config/openssl.mpb6
2 files changed, 7 insertions, 0 deletions
diff --git a/config/global.features b/config/global.features
index 7e8de7d9..e89117b0 100644
--- a/config/global.features
+++ b/config/global.features
@@ -20,6 +20,7 @@ erlang = 0
java = 0
mfc = 0
libpng = 0
+openssl11 = 0
python = 0
qt = 0
rpc = 0
diff --git a/config/openssl.mpb b/config/openssl.mpb
index 52abc396..a3a0f5c6 100644
--- a/config/openssl.mpb
+++ b/config/openssl.mpb
@@ -28,3 +28,9 @@ feature(openssl) {
libpaths += $(SSL_ROOT)/lib/VC
}
}
+
+feature(openssl11) {
+ specific(prop:windows) {
+ lit_libs -= libeay32 ssleay32
+ lit_libs += ssl crypto
+}