|
From: <br...@us...> - 2008-11-10 05:21:26
|
Revision: 3766
http://openvrml.svn.sourceforge.net/openvrml/?rev=3766&view=rev
Author: braden
Date: 2008-11-10 05:21:20 +0000 (Mon, 10 Nov 2008)
Log Message:
-----------
Updated to 20081110 release of Autoconf GL Macros. This addresses some quoting issues in the AX_CHECK_GL macro.
Modified Paths:
--------------
branches/0.17/ChangeLog
branches/0.17/m4/ax_check_gl.m4
Modified: branches/0.17/ChangeLog
===================================================================
--- branches/0.17/ChangeLog 2008-11-09 05:31:48 UTC (rev 3765)
+++ branches/0.17/ChangeLog 2008-11-10 05:21:20 UTC (rev 3766)
@@ -1,3 +1,10 @@
+2008-11-10 Braden McDaniel <br...@en...>
+
+ Updated to 20081110 release of Autoconf GL Macros. This addresses
+ some quoting issues in the AX_CHECK_GL macro.
+
+ * m4/ax_check_gl.m4
+
2008-11-09 Braden McDaniel <br...@en...>
Updated to 20081109 release of Autoconf GL Macros. This addresses
Modified: branches/0.17/m4/ax_check_gl.m4
===================================================================
--- branches/0.17/m4/ax_check_gl.m4 2008-11-09 05:31:48 UTC (rev 3765)
+++ branches/0.17/m4/ax_check_gl.m4 2008-11-10 05:21:20 UTC (rev 3766)
@@ -11,7 +11,7 @@
# "OpenGL/gl.h" is found, HAVE_OPENGL_GL_H is defined. These preprocessor
# definitions may not be mutually exclusive.
#
-# version: 2.3
+# version: 2.4
# author: Braden McDaniel <br...@en...>
#
# This program is free software; you can redistribute it and/or modify
@@ -50,9 +50,9 @@
# AC_PATH_X).
#
AS_IF([test X$no_x != Xyes],
- [AS_IF([test -n $x_includes],
+ [AS_IF([test -n "$x_includes"],
[GL_CFLAGS="-I$x_includes $GL_CFLAGS"])]
- AS_IF([test -n $x_libraries],
+ AS_IF([test -n "$x_libraries"],
[GL_LIBS="-L$x_libraries -lX11 $GL_LIBS"]))
ax_save_CPPFLAGS=$CPPFLAGS
@@ -87,7 +87,7 @@
ax_save_LIBS=$LIBS
LIBS=""
ax_check_libs="-lopengl32 -lGL"
-for ax_lib in ${ax_check_libs}; do
+for ax_lib in $ax_check_libs; do
AS_IF([test X$ax_compiler_ms = Xyes],
[ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'`],
[ax_try_lib=$ax_lib])
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|