summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-09-11 17:08:17 -0700
committerMatt Turner <mattst88@gmail.com>2012-09-12 11:26:28 -0700
commitaf6aeae4e1286a8858e040602db338de6a1367dc (patch)
tree4acdd80d7a60e78bdb654d9a1b9196bf41b8367a
parent7443e4e697c0517f505d83436dcbe1fd01c1c39e (diff)
build: Don't list glproto and dri2proto in pkg-config file
No files provided by glproto or dri2proto are needed for building something with Mesa. Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=342393 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index e00bb001404..4193496de95 100644
--- a/configure.ac
+++ b/configure.ac
@@ -861,13 +861,12 @@ xyesyes)
861xyesno) 861xyesno)
862 # DRI-based GLX 862 # DRI-based GLX
863 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED]) 863 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
864 GL_PC_REQ_PRIV="glproto >= $GLPROTO_REQUIRED"
865 if test x"$driglx_direct" = xyes; then 864 if test x"$driglx_direct" = xyes; then
866 if test "x$have_libdrm" != xyes; then 865 if test "x$have_libdrm" != xyes; then
867 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED]) 866 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED])
868 fi 867 fi
869 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED]) 868 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
870 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED" 869 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED"
871 fi 870 fi
872 871
873 # find the DRI deps for libGL 872 # find the DRI deps for libGL