summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-03-04 10:23:54 -0800
committerMatt Turner <mattst88@gmail.com>2013-03-05 11:02:22 -0800
commit35189d768bf80fdedbb6e70f49215cc8b734f343 (patch)
tree9666a18ddf353f1ef96555d2cae8d2fe9cc5366e
parent196443f3f5b43d26895043701ea0cdabfaa78210 (diff)
configure.ac: Don't check for X11 unconditionally.
X11 is already checked conditionally below. Fixes OSMesa-only configurations to not require X11. Note: This is a candidate for the 9.1 branch. Reviewed-by: Brian Paul <brianp@vmware.com>
-rw-r--r--configure.ac8
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 785259554bb..1b13d06be3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -832,20 +832,12 @@ if test "x$enable_dri" = xyes; then
fi
fi
-dnl Find out if X is available.
-PKG_CHECK_MODULES([X11], [x11], [no_x=no], [no_x=yes])
-
dnl Try to tell the user that the --x-* options are only used when
dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
m4_divert_once([HELP_BEGIN],
[These options are only used when the X libraries cannot be found by the
pkg-config utility.])
-dnl We need X for xlib and dri, so bomb now if it's not found
-if test "x$enable_glx" = xyes -a "x$no_x" = xyes; then
- AC_MSG_ERROR([X11 development libraries needed for GLX])
-fi
-
dnl Direct rendering or just indirect rendering
case "$host_os" in
gnu*)