Displaying 1 result from an estimated 1 matches for "l_lib".
Did you mean:
_lib
2010 Jan 12
1
rgl: bogus configure[.ac] (PR#14183)
...:
--- rgl/configure.ac.orig Mon Feb 2 14:31:24 2009
+++ rgl/configure.ac Tue Jan 12 06:16:52 2010
@@ -157,9 +157,12 @@
AC_ARG_WITH(gl-libs,
[ --with-gl-libs=DIR specify location of OpenGL libs],
-[LIBS="${LIBS} -L${withval}"]
+[LDFLAGS="${LDFLAGS} -L${withval}"
+L_LIB="-L${withval}"
+]
)
+
AC_ARG_WITH(gl-libname,
[ --with-gl-libname=NAME specify Library name (defaults to "GL")],
[lGL=${withval}], [lGL=GL]
@@ -179,6 +182,9 @@
if test "x$this" != xyes; then
AC_ERROR([missing required library ${lGLU}])
fi
+if test x$L_LIB...