Added a configure check for Xext.h
This commit is contained in:
parent
6956070880
commit
0eb5308b0f
2 changed files with 29 additions and 0 deletions
17
configure
vendored
17
configure
vendored
|
@ -19539,6 +19539,23 @@ fi
|
||||||
CFLAGS="$CFLAGS $X_CFLAGS"
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
||||||
LDFLAGS="$LDFLAGS $X_LIBS"
|
LDFLAGS="$LDFLAGS $X_LIBS"
|
||||||
|
|
||||||
|
ac_fn_c_check_header_compile "$LINENO" "X11/extensions/Xext.h" "ac_cv_header_X11_extensions_Xext_h" "#include <X11/Xlib.h>
|
||||||
|
#include <X11/Xproto.h>
|
||||||
|
|
||||||
|
"
|
||||||
|
if test "x$ac_cv_header_X11_extensions_Xext_h" = xyes; then :
|
||||||
|
have_xext_h_hdr=yes
|
||||||
|
else
|
||||||
|
have_xext_h_hdr=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test x$have_xext_h_hdr != xyes; then
|
||||||
|
as_fn_error $? "
|
||||||
|
*** Missing Xext.h, maybe you need to install the libxext-dev package?
|
||||||
|
" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
$as_echo "#define SDL_VIDEO_DRIVER_X11 1" >>confdefs.h
|
$as_echo "#define SDL_VIDEO_DRIVER_X11 1" >>confdefs.h
|
||||||
|
|
||||||
|
|
12
configure.in
12
configure.in
|
@ -1157,6 +1157,18 @@ AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=ma
|
||||||
CFLAGS="$CFLAGS $X_CFLAGS"
|
CFLAGS="$CFLAGS $X_CFLAGS"
|
||||||
LDFLAGS="$LDFLAGS $X_LIBS"
|
LDFLAGS="$LDFLAGS $X_LIBS"
|
||||||
|
|
||||||
|
AC_CHECK_HEADER(X11/extensions/Xext.h,
|
||||||
|
have_xext_h_hdr=yes,
|
||||||
|
have_xext_h_hdr=no,
|
||||||
|
[#include <X11/Xlib.h>
|
||||||
|
#include <X11/Xproto.h>
|
||||||
|
])
|
||||||
|
if test x$have_xext_h_hdr != xyes; then
|
||||||
|
AC_MSG_ERROR([
|
||||||
|
*** Missing Xext.h, maybe you need to install the libxext-dev package?
|
||||||
|
])
|
||||||
|
fi
|
||||||
|
|
||||||
AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
|
AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
|
||||||
SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
|
SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
|
||||||
EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
|
EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue