2022-04-07 02:04:46 +08:00
if ( EXISTS "${CURRENT_INSTALLED_DIR}/share/libressl/copyright"
O R E X I S T S " $ { C U R R E N T _ I N S T A L L E D _ D I R } / s h a r e / b o r i n g s s l / c o p y r i g h t " )
2022-01-08 02:22:37 +08:00
message ( FATAL_ERROR "Can't build openssl if libressl/boringssl is installed. Please remove libressl/boringssl, and try install openssl again if you need it." )
2020-11-04 14:59:02 +08:00
endif ( )
2023-03-01 03:20:45 +08:00
if ( VCPKG_TARGET_IS_EMSCRIPTEN )
vcpkg_check_linkage ( ONLY_STATIC_LIBRARY )
2022-04-07 22:48:06 +08:00
endif ( )
2022-06-30 05:38:17 +08:00
vcpkg_from_github (
O U T _ S O U R C E _ P A T H S O U R C E _ P A T H
R E P O o p e n s s l / o p e n s s l
2022-11-12 06:12:15 +08:00
R E F " o p e n s s l - $ { V E R S I O N } "
2024-10-30 04:34:50 +08:00
S H A 5 1 2 d 5 f 7 8 b 2 e 9 d 7 b 7 b 4 7 8 7 c 9 7 6 c 4 f 8 3 2 b 1 4 4 8 b b a d f 5 f 9 d 3 9 8 a 5 0 e f 9 8 0 5 3 f 9 2 5 0 1 7 6 8 d 0 0 0 a a 7 3 6 7 3 a f 2 0 0 5 6 8 a e f 4 c 8 a 4 9 1 4 4 2 e b b e e 8 c 4 3 5 5 6 8 3 8 f 4 6 5 d 4 f 9 1 d f c 2 b 5 a d
2022-11-12 06:12:15 +08:00
P A T C H E S
2024-04-16 02:18:29 +08:00
c m a k e - c o n f i g . p a t c h
2024-03-21 02:29:20 +08:00
c o m m a n d - l i n e - l e n g t h . p a t c h
2023-03-01 03:20:45 +08:00
s c r i p t - p r e f i x . p a t c h
2024-06-29 05:51:23 +08:00
a s m - a r m c a p . p a t c h
2022-11-12 06:12:15 +08:00
w i n d o w s / i n s t a l l - l a y o u t . p a t c h
w i n d o w s / i n s t a l l - p d b s . p a t c h
2023-03-15 05:11:06 +08:00
u n i x / a n d r o i d - c c . p a t c h
2023-03-01 03:20:45 +08:00
u n i x / m o v e - o p e n s s l d i r . p a t c h
u n i x / n o - e m p t y - d i r s . p a t c h
u n i x / n o - s t a t i c - l i b s - f o r - s h a r e d . p a t c h
)
vcpkg_list ( SET CONFIGURE_OPTIONS
e n a b l e - s t a t i c - e n g i n e
e n a b l e - c a p i e n g
n o - t e s t s
2023-12-20 08:31:02 +08:00
n o - d o c s
2020-11-04 14:59:02 +08:00
)
2023-04-22 06:02:05 +08:00
set ( INSTALL_FIPS "" )
if ( "fips" IN_LIST FEATURES )
vcpkg_list ( APPEND INSTALL_FIPS install_fips )
vcpkg_list ( APPEND CONFIGURE_OPTIONS enable-fips )
endif ( )
2023-03-01 03:20:45 +08:00
if ( VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic" )
vcpkg_list ( APPEND CONFIGURE_OPTIONS shared )
else ( )
vcpkg_list ( APPEND CONFIGURE_OPTIONS no-shared no-module )
endif ( )
2023-03-15 05:11:06 +08:00
if ( NOT "tools" IN_LIST FEATURES )
vcpkg_list ( APPEND CONFIGURE_OPTIONS no-apps )
endif ( )
2023-12-22 03:17:20 +08:00
if ( "weak-ssl-ciphers" IN_LIST FEATURES )
vcpkg_list ( APPEND CONFIGURE_OPTIONS enable-weak-ssl-ciphers )
endif ( )
if ( "ssl3" IN_LIST FEATURES )
vcpkg_list ( APPEND CONFIGURE_OPTIONS enable-ssl3 )
vcpkg_list ( APPEND CONFIGURE_OPTIONS enable-ssl3-method )
endif ( )
2023-03-01 03:20:45 +08:00
if ( DEFINED OPENSSL_USE_NOPINSHARED )
vcpkg_list ( APPEND CONFIGURE_OPTIONS no-pinshared )
endif ( )
if ( OPENSSL_NO_AUTOLOAD_CONFIG )
vcpkg_list ( APPEND CONFIGURE_OPTIONS no-autoload-config )
endif ( )
2020-11-04 14:59:02 +08:00
2022-11-12 06:12:15 +08:00
if ( VCPKG_TARGET_IS_WINDOWS AND NOT VCPKG_TARGET_IS_MINGW )
2020-11-04 14:59:02 +08:00
include ( "${CMAKE_CURRENT_LIST_DIR}/windows/portfile.cmake" )
2021-10-27 13:48:21 +08:00
include ( "${CMAKE_CURRENT_LIST_DIR}/install-pc-files.cmake" )
2020-11-04 14:59:02 +08:00
else ( )
include ( "${CMAKE_CURRENT_LIST_DIR}/unix/portfile.cmake" )
endif ( )
2020-12-12 09:40:21 +08:00
file ( INSTALL "${CMAKE_CURRENT_LIST_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" )
2024-05-14 03:50:35 +08:00
if ( NOT "${VERSION}" MATCHES [[^([0-9]+ ) \ . ( [ 0 - 9 ] + ) \ . ( [ 0 - 9 ] + ) $ ] ] )
message ( FATAL_ERROR "Version regex did not match." )
endif ( )
set ( OPENSSL_VERSION_MAJOR "${CMAKE_MATCH_1}" )
set ( OPENSSL_VERSION_MINOR "${CMAKE_MATCH_2}" )
set ( OPENSSL_VERSION_FIX "${CMAKE_MATCH_3}" )
configure_file ( "${CMAKE_CURRENT_LIST_DIR}/vcpkg-cmake-wrapper.cmake.in" "${CURRENT_PACKAGES_DIR}/share/${PORT}/vcpkg-cmake-wrapper.cmake" @ONLY )
2023-08-04 21:55:10 +08:00
vcpkg_install_copyright ( FILE_LIST "${SOURCE_PATH}/LICENSE.txt" )