diff options
| author | Andrei Lebedev <lebdron@gmail.com> | 2019-05-18 02:27:26 +0300 |
|---|---|---|
| committer | Andrei Lebedev <lebdron@gmail.com> | 2019-05-18 15:00:30 +0300 |
| commit | 5495513ef45eb97d8453d15007714f1b4d3391f9 (patch) | |
| tree | f576a824351f3ea1a719d2a93e868666602e7c32 | |
| parent | 2e51afcd65d49504cc75d6bf3e6c58bac749da60 (diff) | |
| download | vcpkg-5495513ef45eb97d8453d15007714f1b4d3391f9.tar.gz vcpkg-5495513ef45eb97d8453d15007714f1b4d3391f9.zip | |
[openssl-unix] Shared library support
Signed-off-by: Andrei Lebedev <lebdron@gmail.com>
| -rw-r--r-- | ports/openssl-unix/CMakeLists.txt | 22 | ||||
| -rw-r--r-- | ports/openssl-unix/CONTROL | 2 |
2 files changed, 21 insertions, 3 deletions
diff --git a/ports/openssl-unix/CMakeLists.txt b/ports/openssl-unix/CMakeLists.txt index e8d916392..f9d94b1a2 100644 --- a/ports/openssl-unix/CMakeLists.txt +++ b/ports/openssl-unix/CMakeLists.txt @@ -76,9 +76,27 @@ file(WRITE "${BUILDDIR}/Configure" "${_contents}") if(BUILD_SHARED_LIBS)
set(SHARED shared)
+ file(STRINGS "${BUILDDIR}/crypto/opensslv.h" SHLIB_VERSION
+ REGEX "^#[\t ]*define[\t ]+SHLIB_VERSION_NUMBER[\t ]+\".*\".*")
+ string(REGEX REPLACE "^.*SHLIB_VERSION_NUMBER[\t ]+\"([^\"]*)\".*$" "\\1"
+ SHLIB_VERSION "${SHLIB_VERSION}")
+ if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
+ set(LIB_EXT dylib)
+ set(LIB_EXTS ${SHLIB_VERSION}.${LIB_EXT})
+ else()
+ set(LIB_EXT so)
+ set(LIB_EXTS ${LIB_EXT}.${SHLIB_VERSION})
+ endif()
+ list(APPEND LIB_EXTS ${LIB_EXT})
else()
set(SHARED no-shared)
+ set(LIB_EXTS a)
endif()
+foreach(lib ssl crypto)
+ foreach(ext ${LIB_EXTS})
+ list(APPEND INSTALL_LIBS "${BUILDDIR}/lib${lib}.${ext}")
+ endforeach()
+endforeach()
if(CMAKE_HOST_WIN32)
set(ENV_COMMAND set)
@@ -130,10 +148,10 @@ add_custom_target(build_libs ALL VERBATIM
WORKING_DIRECTORY "${BUILDDIR}"
DEPENDS depend
- BYPRODUCTS "${BUILDDIR}/libssl.a" "${BUILDDIR}/libcrypto.a"
+ BYPRODUCTS ${INSTALL_LIBS}
)
install(
- FILES "${BUILDDIR}/libssl.a" "${BUILDDIR}/libcrypto.a"
+ FILES ${INSTALL_LIBS}
DESTINATION lib
)
diff --git a/ports/openssl-unix/CONTROL b/ports/openssl-unix/CONTROL index 59f686133..e5873f6cb 100644 --- a/ports/openssl-unix/CONTROL +++ b/ports/openssl-unix/CONTROL @@ -1,3 +1,3 @@ Source: openssl-unix -Version: 1.0.2q +Version: 1.0.2q-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. |
