From: Braden M. <br...@us...> - 2006-07-27 01:49:22
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11883 Modified Files: ChangeLog configure.ac Log Message: Fail if the user attempts to build the Mozilla plug-in without building the GL renderer. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.88 retrieving revision 1.89 diff -C2 -d -r1.88 -r1.89 *** configure.ac 26 Jul 2006 22:09:48 -0000 1.88 --- configure.ac 26 Jul 2006 22:14:15 -0000 1.89 *************** *** 251,254 **** --- 251,259 ---- [AC_HELP_STRING([--disable-mozilla-plugin], [do not build the Mozilla plug-in])]) + if test X$enable_mozilla_plugin != Xno; then + if test X$enable_gl_renderer = Xno; then + AC_MSG_FAILURE([the Mozilla plug-in cannot be built without the GL renderer]) + fi + fi # Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1280 retrieving revision 1.1281 diff -C2 -d -r1.1280 -r1.1281 *** ChangeLog 26 Jul 2006 22:09:48 -0000 1.1280 --- ChangeLog 26 Jul 2006 22:14:15 -0000 1.1281 *************** *** 1,4 **** --- 1,9 ---- 2006-07-26 Braden McDaniel <br...@en...> + * configure.ac: Fail if the user attempts to build the Mozilla + plug-in without building the GL renderer. + + 2006-07-26 Braden McDaniel <br...@en...> + * configure.ac: Fail if libGLU cannot be found and building the GL renderer is enabled. |