From: D Tim Cummings Date: Mon, 26 Mar 2018 15:43:59 +0000 (+1000) Subject: macOS: don't require X11 libraries during compilation (#7149) X-Git-Tag: 0.4.17~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5624cf750f0c9de872dfff51eefd86575fa9c764;p=oweals%2Fminetest.git macOS: don't require X11 libraries during compilation (#7149) The xxf86vm needs to be removed from Apple builds to avoid CMake Error XXF86VM_LIBRARY is NOTFOUND --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b1650f376..6663b3c4c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -325,10 +325,12 @@ else() endif(HAVE_LIBRT) endif(APPLE) + if(NOT APPLE) # This way Xxf86vm is found on OpenBSD too - find_library(XXF86VM_LIBRARY Xxf86vm) - mark_as_advanced(XXF86VM_LIBRARY) - set(CLIENT_PLATFORM_LIBS ${CLIENT_PLATFORM_LIBS} ${XXF86VM_LIBRARY}) + find_library(XXF86VM_LIBRARY Xxf86vm) + mark_as_advanced(XXF86VM_LIBRARY) + set(CLIENT_PLATFORM_LIBS ${CLIENT_PLATFORM_LIBS} ${XXF86VM_LIBRARY}) + endif(NOT APPLE) # Prefer local iconv if installed find_library(ICONV_LIBRARY iconv)