diff options
| author | Dan Nicholson <dbn.lists@gmail.com> | 2008-06-27 17:16:35 -0700 |
|---|---|---|
| committer | Dan Nicholson <dbn.lists@gmail.com> | 2008-06-29 10:11:40 -0700 |
| commit | d6b8d9eaffaf3f976db330bc35da3d30eb656bac (patch) | |
| tree | a9102cdc9a1b9f5b90df04e2c5c33ad9c72d37a1 | |
| parent | 7ddfb2f1587da3ec1cd27ae270e42700adf4f560 (diff) | |
DRI: Ensure we have the DRI headers from Mesa
Change the DRI configure check to look for the dri pkg-config file. This
prevents people who built an Xlib libGL from bombing later in the build.
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6b2f6ac9e..8abc9a91f 100644 --- a/configure.ac +++ b/configure.ac @@ -867,7 +867,7 @@ if test "x$DRI" = xyes; then AC_DEFINE(XF86DRI, 1, [Build DRI extension]) PKG_CHECK_MODULES([DRIPROTO], [xf86driproto]) PKG_CHECK_MODULES([LIBDRM], [libdrm >= 2.3.0]) - PKG_CHECK_MODULES([GL], [glproto >= 1.4.1 gl >= 7.1.0]) + PKG_CHECK_MODULES([GL], [glproto >= 1.4.1 dri >= 7.1.0]) PKG_CHECK_EXISTS(libdrm >= 2.2.0, [AC_DEFINE([HAVE_LIBDRM_2_2], 1, [Has version 2.2 (or newer) of the drm library])]) |
