aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlecoanet2005-10-05 08:51:43 +0000
committerlecoanet2005-10-05 08:51:43 +0000
commit608bb0ea9a84dd657b705296fe29ed2e39333a98 (patch)
treefb79e0b1ee73264423cdd1439faa84bfe71a2c59
parentf792f48b3dc907c2542659ddd07281ab9afe3838 (diff)
downloadtkzinc-608bb0ea9a84dd657b705296fe29ed2e39333a98.zip
tkzinc-608bb0ea9a84dd657b705296fe29ed2e39333a98.tar.gz
tkzinc-608bb0ea9a84dd657b705296fe29ed2e39333a98.tar.bz2
tkzinc-608bb0ea9a84dd657b705296fe29ed2e39333a98.tar.xz
Added the GLU library when building for Tcl with gcc/configure.
-rw-r--r--aclocal.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 2cc42b6..cb1ce1e 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -66,9 +66,9 @@ AC_DEFUN(ZINC_ENABLE_GL, [
AC_MSG_RESULT([no])
else
if test "${TEA_PLATFORM}" = "windows" ; then
- GL_LIBS=-lopengl32
+ GL_LIBS=-lglu32 -lopengl32
else
- GL_LIBS="-lGL"
+ GL_LIBS="-lGLU -lGL"
GL_INCLUDES='-I/usr/include'
fi