CMake: don't check for --no-undefined linker flag for OpenBSD (bug #5174)

it now matches autotools.
This commit is contained in:
Ozkan Sezer 2020-12-27 05:20:10 +03:00
parent 46d31d570d
commit 9f6fddb40f
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ if(USE_GCC OR USE_CLANG)
list(APPEND EXTRA_LDFLAGS "-Wl,-undefined,error")
list(APPEND EXTRA_LDFLAGS "-Wl,-compatibility_version,${DYLIB_COMPATIBILITY_VERSION}")
list(APPEND EXTRA_LDFLAGS "-Wl,-current_version,${DYLIB_CURRENT_VERSION}")
else()
elseif(NOT OPENBSD)
set(CMAKE_REQUIRED_FLAGS "-Wl,--no-undefined")
check_c_compiler_flag("" HAVE_NO_UNDEFINED)
set(CMAKE_REQUIRED_FLAGS ${ORIG_CMAKE_REQUIRED_FLAGS})