forked from Mirrorlandia_minetest/minetest
openbsd's port fix for non Linux systems w/o libRT
X11 headers are not always in expected locations, add them to include list. Modifications by est31: indentation fixes, commit message improved
This commit is contained in:
parent
80cebdc23c
commit
b6eef1c0c2
@ -336,7 +336,10 @@ else()
|
|||||||
if(APPLE)
|
if(APPLE)
|
||||||
set(PLATFORM_LIBS "-framework CoreFoundation" ${PLATFORM_LIBS})
|
set(PLATFORM_LIBS "-framework CoreFoundation" ${PLATFORM_LIBS})
|
||||||
else()
|
else()
|
||||||
set(PLATFORM_LIBS -lrt ${PLATFORM_LIBS})
|
check_library_exists(rt clock_gettime "" HAVE_LIBRT)
|
||||||
|
if (HAVE_LIBRT)
|
||||||
|
set(PLATFORM_LIBS -lrt ${PLATFORM_LIBS})
|
||||||
|
endif(HAVE_LIBRT)
|
||||||
endif(APPLE)
|
endif(APPLE)
|
||||||
|
|
||||||
# This way Xxf86vm is found on OpenBSD too
|
# This way Xxf86vm is found on OpenBSD too
|
||||||
@ -555,6 +558,7 @@ include_directories(
|
|||||||
${LUA_INCLUDE_DIR}
|
${LUA_INCLUDE_DIR}
|
||||||
${GMP_INCLUDE_DIR}
|
${GMP_INCLUDE_DIR}
|
||||||
${JSON_INCLUDE_DIR}
|
${JSON_INCLUDE_DIR}
|
||||||
|
${X11_INCLUDE_DIR}
|
||||||
${PROJECT_SOURCE_DIR}/script
|
${PROJECT_SOURCE_DIR}/script
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user