diff options
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/openssl/CONTROL | 4 | ||||
| -rw-r--r-- | ports/openssl/unix/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | ports/openssl/vcpkg.json | 7 |
3 files changed, 8 insertions, 5 deletions
diff --git a/ports/openssl/CONTROL b/ports/openssl/CONTROL deleted file mode 100644 index 303b7d910..000000000 --- a/ports/openssl/CONTROL +++ /dev/null @@ -1,4 +0,0 @@ -Source: openssl -Version: 1.1.1k -Homepage: https://www.openssl.org -Description: OpenSSL is an open source project that provides a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols. It is also a general-purpose cryptography library. diff --git a/ports/openssl/unix/CMakeLists.txt b/ports/openssl/unix/CMakeLists.txt index f85f7b9f7..d5fe3e1f4 100644 --- a/ports/openssl/unix/CMakeLists.txt +++ b/ports/openssl/unix/CMakeLists.txt @@ -106,7 +106,7 @@ if(BUILD_SHARED_LIBS) if(CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "iOS")
set(LIB_EXT dylib)
set(LIB_EXTS ${SHLIB_VERSION}.${LIB_EXT})
- elseif(VCPKG_TARGET_IS_MINGW)
+ elseif(MINGW)
string(REPLACE "." "_" SHLIB_VERSION "${SHLIB_VERSION}")
set(BIN_EXT dll)
set(LIB_EXT dll.a)
diff --git a/ports/openssl/vcpkg.json b/ports/openssl/vcpkg.json new file mode 100644 index 000000000..612b38a05 --- /dev/null +++ b/ports/openssl/vcpkg.json @@ -0,0 +1,7 @@ +{ + "name": "openssl", + "version-string": "1.1.1k", + "port-version": 1, + "description": "OpenSSL is an open source project that provides a robust, commercial-grade, and full-featured toolkit for the Transport Layer Security (TLS) and Secure Sockets Layer (SSL) protocols. It is also a general-purpose cryptography library.", + "homepage": "https://www.openssl.org" +} |
