|
From: <br...@us...> - 2010-03-21 07:01:50
|
Revision: 4115
http://openvrml.svn.sourceforge.net/openvrml/?rev=4115&view=rev
Author: braden
Date: 2010-03-21 07:01:41 +0000 (Sun, 21 Mar 2010)
Log Message:
-----------
Fixed missing comma in --enable-jpeg-textures processing.
Modified Paths:
--------------
trunk/ChangeLog
trunk/configure.ac
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2010-03-21 06:56:39 UTC (rev 4114)
+++ trunk/ChangeLog 2010-03-21 07:01:41 UTC (rev 4115)
@@ -1,5 +1,10 @@
2010-03-21 Braden McDaniel <br...@en...>
+ * configure.ac: Fixed missing comma in --enable-jpeg-textures
+ processing.
+
+2010-03-21 Braden McDaniel <br...@en...>
+
Update AX_CHECK_GL and AX_CHECK_GLU to the 2010-03-21 release.
* m4/ax_check_gl.m4
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2010-03-21 06:56:39 UTC (rev 4114)
+++ trunk/configure.ac 2010-03-21 07:01:41 UTC (rev 4115)
@@ -248,7 +248,7 @@
[AC_HELP_STRING([--disable-jpeg-textures],
[disable support for rendering JPEG textures])])
AS_IF([test X$enable_jpeg_textures = Xno],
- [JPEG_LIBS=""]
+ [JPEG_LIBS=""],
[JPEG_LIBS="-ljpeg"
AC_DEFINE([OPENVRML_ENABLE_JPEG_TEXTURES], [1],
[Defined if support for rendering JPEG textures is enabled.])])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|