diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-07-28 18:27:10 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-07-28 18:27:10 +0000 |
commit | 9ad36deeb3ea647f0bc3b448960df8b03daaff06 (patch) | |
tree | 48d1cb7a973aa4ff91dd64aa1d0bc7a0a9744af6 | |
parent | 894867d9d14d132ad28a765838dc3a2fa03f0965 (diff) | |
download | xine-lib-9ad36deeb3ea647f0bc3b448960df8b03daaff06.tar.gz xine-lib-9ad36deeb3ea647f0bc3b448960df8b03daaff06.tar.bz2 |
Check whether XShm.h is available; abort if not.
CVS patchset: 8140
CVS date: 2006/07/28 18:27:10
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c8a25a588..ffc931dad 100644 --- a/configure.ac +++ b/configure.ac @@ -567,6 +567,12 @@ else fi AM_CONDITIONAL(HAVE_V4L, [test x"$have_v4l" = "xyes"]) +dnl ---------------------------------------------- +dnl Check for XShm support (required) +dnl ---------------------------------------------- + +AC_CHECK_HEADERS([X11/extensions/XShm.h], [], + [AC_MSG_ERROR([XShm extension is required])]) dnl ---------------------------------------------- dnl Check for Xv and XvMC support |