use something else by default for Windows builds (match dist-win.sh)
This commit is contained in:
parent
83012fe34a
commit
6e2192618a
@ -930,9 +930,13 @@ else()
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(NOT "${OPENSSLDIR}" STREQUAL "")
|
if(NOT "${OPENSSLDIR}" STREQUAL "")
|
||||||
add_definitions(-DOPENSSLDIR=${OPENSSLDIR})
|
add_definitions(-DOPENSSLDIR=\"${OPENSSLDIR}\")
|
||||||
else()
|
else()
|
||||||
add_definitions(-DOPENSSLDIR=${CMAKE_INSTALL_PREFIX}/etc/ssl)
|
if(WIN32)
|
||||||
|
add_definitions(-DOPENSSLDIR=C:/libressl/ssl)
|
||||||
|
else()
|
||||||
|
add_definitions(-DOPENSSLDIR=\"${CMAKE_INSTALL_PREFIX}/etc/ssl\")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
file(READ ${CMAKE_CURRENT_SOURCE_DIR}/crypto.sym SYMS)
|
file(READ ${CMAKE_CURRENT_SOURCE_DIR}/crypto.sym SYMS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user