[GRASS-SVN] r32341 - grass/trunk
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jul 27 13:26:08 EDT 2008
Author: glynn
Date: 2008-07-27 13:26:08 -0400 (Sun, 27 Jul 2008)
New Revision: 32341
Modified:
grass/trunk/configure
grass/trunk/configure.in
Log:
Fix bug in --with-tcltk-framework= handling
Modified: grass/trunk/configure
===================================================================
--- grass/trunk/configure 2008-07-27 17:12:06 UTC (rev 32340)
+++ grass/trunk/configure 2008-07-27 17:26:08 UTC (rev 32341)
@@ -8581,7 +8581,7 @@
if eval "test \"`echo '$ac_cv_func_'Tk_MainWindow`\" = yes"; then
echo "$ac_t""yes" 1>&6
-TCLTKLIBS = -framework Tcl -framework Tk
+TCLTKLIBS="-framework Tcl -framework Tk"
else
echo "$ac_t""no" 1>&6
Modified: grass/trunk/configure.in
===================================================================
--- grass/trunk/configure.in 2008-07-27 17:12:06 UTC (rev 32340)
+++ grass/trunk/configure.in 2008-07-27 17:26:08 UTC (rev 32341)
@@ -812,7 +812,7 @@
ac_save_ldflags="$LDFLAGS"
LDFLAGS="$TCLTKLIBPATH -framework Tcl -framework Tk $LIBS"
AC_CHECK_FUNC(Tk_MainWindow,[
-TCLTKLIBS = -framework Tcl -framework Tk
+TCLTKLIBS="-framework Tcl -framework Tk"
],[
AC_MSG_ERROR([*** Unable to locate Tcl/Tk libraries.])
])
More information about the grass-commit
mailing list