Merge pull request #8795

724441a link against libz on non Apple/Windows (moneromooo-monero)
This commit is contained in:
luigi1111 2023-06-27 11:32:53 -05:00
commit dd5445d685
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 1 deletions

View File

@ -1113,7 +1113,8 @@ elseif(CMAKE_SYSTEM_NAME MATCHES "(SunOS|Solaris)")
set(EXTRA_LIBRARIES socket nsl resolv) set(EXTRA_LIBRARIES socket nsl resolv)
elseif(NOT MSVC AND NOT DEPENDS) elseif(NOT MSVC AND NOT DEPENDS)
find_library(RT rt) find_library(RT rt)
set(EXTRA_LIBRARIES ${RT}) find_library(Z z)
set(EXTRA_LIBRARIES ${RT} ${Z})
endif() endif()
list(APPEND EXTRA_LIBRARIES ${CMAKE_DL_LIBS}) list(APPEND EXTRA_LIBRARIES ${CMAKE_DL_LIBS})