From 70d0c838901138e9be585b89638f50a2696a01e9 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Fri, 7 Dec 2007 11:12:20 -0800 Subject: [PATCH] autoconf: glut doesn't need Xt Don't link glut with libXt since it's not needed. (see commit ce98779571eee3f51d9f571fecf8deb83dd60f78) --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.30.2