From: Dan Nicholson Date: Fri, 7 Dec 2007 19:12:20 +0000 (-0800) Subject: autoconf: glut doesn't need Xt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70d0c838901138e9be585b89638f50a2696a01e9;p=mesa.git autoconf: glut doesn't need Xt Don't link glut with libXt since it's not needed. (see commit ce98779571eee3f51d9f571fecf8deb83dd60f78) --- diff --git a/configure.ac b/configure.ac index 94fb9e3ba70..f4a7e5e95c0 100644 --- a/configure.ac +++ b/configure.ac @@ -632,11 +632,11 @@ if test "x$enable_glut" = xyes; then GLUT_CFLAGS="-fexceptions" fi if test "$x11_pkgconfig" = yes; then - PKG_CHECK_MODULES(GLUT, x11 xmu xt xi) + PKG_CHECK_MODULES(GLUT, x11 xmu xi) GLUT_LIB_DEPS="$GLUT_LIBS" else # should check these... - GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXt -lXi" + GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi" fi GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"