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 ( )
2023-03-01 03:20:45 +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 )
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 } "
2023-02-11 03:14:37 +08:00
S H A 5 1 2 5 a 8 2 1 a a a a a 8 9 0 2 7 c e 0 8 a 3 4 7 e 5 f c 2 1 6 7 5 7 c 2 9 7 1 e 2 9 f 7 d 2 4 7 9 2 6 0 9 3 7 8 c 5 4 f 6 5 7 8 3 9 b 3 7 7 5 b f 6 3 9 e 7 3 3 0 b 2 8 b 4 f 9 6 e f 0 d 3 2 8 6 9 f 0 a 9 6 a f c b 2 5 c 8 a 2 e 1 c 2 f e 5 1 a 6 e b 4 a a 3
2022-11-12 06:12:15 +08:00
P A T C H E S
2023-03-15 05:11:06 +08:00
d i s a b l e - a p p s . p a t c h
2023-03-01 03:20:45 +08:00
d i s a b l e - i n s t a l l - d o c s . p a t c h
s c r i p t - p r e f i x . 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-02-11 03:14:37 +08:00
w i n d o w s / u m u l 1 2 8 - a r m 6 4 . p a t c h # Fixed upstream in https://github.com/openssl/openssl/pull/20244, but not released as of 3.0.8
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 - s s l 3
n o - w e a k - s s l - c i p h e r s
n o - t e s t s
2020-11-04 14:59:02 +08:00
)
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-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}" )
2023-03-01 03:20:45 +08:00
file ( INSTALL "${SOURCE_PATH}/LICENSE.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright )