Update of /cvsroot/openvrml/openvrml
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9941
Modified Files:
ChangeLog configure.ac
Log Message:
Fail if libGLU cannot be found and building the GL renderer is enabled.
Index: configure.ac
===================================================================
RCS file: /cvsroot/openvrml/openvrml/configure.ac,v
retrieving revision 1.87
retrieving revision 1.88
diff -C2 -d -r1.87 -r1.88
*** configure.ac 7 May 2006 03:39:19 -0000 1.87
--- configure.ac 26 Jul 2006 22:09:48 -0000 1.88
***************
*** 235,239 ****
if test "X$enable_gl_renderer" != "Xno"; then
if test "X$no_gl" = "Xyes"; then
! AC_MSG_FAILURE([OpenGL/Mesa is required for the GL renderer])
fi
AC_CONFIG_FILES([openvrml-gl.pc])
--- 235,242 ----
if test "X$enable_gl_renderer" != "Xno"; then
if test "X$no_gl" = "Xyes"; then
! AC_MSG_FAILURE([OpenGL/Mesa (libGL) is required for the GL renderer])
! fi
! if test "X$no_glu" = "Xyes"; then
! AC_MSG_FAILURE([the OpenGL Utility library (libGLU) is required for the GL renderer])
fi
AC_CONFIG_FILES([openvrml-gl.pc])
***************
*** 275,279 ****
#
AC_SUBST([OPENVRML_PKG_REQUIRES])
! if test -n "${openvrml_run_path}"; then
OPENVRML_RPATH="-rpath ${openvrml_run_path}"
fi
--- 278,282 ----
#
AC_SUBST([OPENVRML_PKG_REQUIRES])
! if test -n "${openvrml_run_path}"; then
OPENVRML_RPATH="-rpath ${openvrml_run_path}"
fi
Index: ChangeLog
===================================================================
RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v
retrieving revision 1.1279
retrieving revision 1.1280
diff -C2 -d -r1.1279 -r1.1280
*** ChangeLog 26 Jul 2006 21:49:29 -0000 1.1279
--- ChangeLog 26 Jul 2006 22:09:48 -0000 1.1280
***************
*** 1,4 ****
--- 1,9 ----
2006-07-26 Braden McDaniel <br...@en...>
+ * configure.ac: Fail if libGLU cannot be found and building the GL
+ renderer is enabled.
+
+ 2006-07-26 Braden McDaniel <br...@en...>
+
* openvrml.spec.in: Updates for Fedora Core 5.
|