diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2007-01-09 09:53:45 +0100 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-01-10 15:33:40 -0500 |
commit | 0b990d1e68ede1ecb7022778e5cb727e94b66f4b (patch) | |
tree | 1227924e9c653646002c7266ba4a2f8528e18432 | |
parent | 24e1ad483155601d5a60e2a3aa6125afd59bbd43 (diff) |
Require glproto >= 1.4.8 for GLX.
It builds against 1.4.7 as well, but it hardcodes the GLX_EXT_tfp tokens that
were finalized in 1.4.8, so GLX_EXT_tfp breaks if the client side was built
against an older glproto. This will hopefully alert people to rebuild other
components (in particular Mesa) against the new glproto as well.
(cherry picked from 359d20532bdcef6a540a551578d000afbb609c2d commit)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ea4e53b49..38fdc8663 100644 --- a/configure.ac +++ b/configure.ac @@ -577,7 +577,7 @@ fi if test "x$GLX" = xyes && ! test "x$MESA_SOURCE" = x; then PKG_CHECK_MODULES([XLIB], [x11]) - PKG_CHECK_MODULES([GL], [glproto >= 1.4.7]) + PKG_CHECK_MODULES([GL], [glproto >= 1.4.8]) AC_SUBST(XLIB_CFLAGS) AC_DEFINE(GLXEXT, 1, [Build GLX extension]) GLX_LIBS='$(top_builddir)/GL/glx/libglx.la $(top_builddir)/GL/mesa/libGLcore.la' |