mirror of
https://github.com/yawut/SDL.git
synced 2026-04-26 09:07:00 -05:00
Explicitly check for Xext.h in the CMake project, fail if missing.
Added to match configure script change in hg changeset 8f118396264b.
This commit is contained in:
parent
843aed5449
commit
02f1966126
|
|
@ -312,8 +312,13 @@ macro(CheckX11)
|
||||||
check_include_file(X11/extensions/scrnsaver.h HAVE_XSS_H)
|
check_include_file(X11/extensions/scrnsaver.h HAVE_XSS_H)
|
||||||
check_include_file(X11/extensions/shape.h HAVE_XSHAPE_H)
|
check_include_file(X11/extensions/shape.h HAVE_XSHAPE_H)
|
||||||
check_include_files("X11/Xlib.h;X11/extensions/xf86vmode.h" HAVE_XF86VM_H)
|
check_include_files("X11/Xlib.h;X11/extensions/xf86vmode.h" HAVE_XF86VM_H)
|
||||||
|
check_include_files("X11/Xlib.h;X11/Xproto.h;X11/extensions/Xext.h" HAVE_XEXT_H)
|
||||||
|
|
||||||
if(X11_LIB)
|
if(X11_LIB)
|
||||||
|
if(NOT HAVE_XEXT_H)
|
||||||
|
message_error("Missing Xext.h, maybe you need to install the libxext-dev package?")
|
||||||
|
endif()
|
||||||
|
|
||||||
set(HAVE_VIDEO_X11 TRUE)
|
set(HAVE_VIDEO_X11 TRUE)
|
||||||
set(HAVE_SDL_VIDEO TRUE)
|
set(HAVE_SDL_VIDEO TRUE)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user