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
This commit is contained in:
D Tim Cummings 2018-03-27 01:43:59 +10:00 committed by SmallJoker
parent 2f280cc672
commit 9802e59724
1 changed files with 2 additions and 2 deletions

View File

@ -323,12 +323,12 @@ else()
endif(HAVE_LIBRT)
endif(APPLE)
if(NOT HAIKU)
if(NOT HAIKU AND 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})
endif(NOT HAIKU)
endif(NOT HAIKU AND NOT APPLE)
# Prefer local iconv if installed
find_library(ICONV_LIBRARY iconv)