summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authordas <das@noemail.net>2007-04-29 01:50:23 (GMT)
committerdas <das@noemail.net>2007-04-29 01:50:23 (GMT)
commitb5032411b2478609a6e1ddf9041913a5fbb89258 (patch)
tree94855f156520c768cbbf2521262d960633966030 /unix/configure.in
parent3f1cb4216f6ad59788665d171b11569244d859d0 (diff)
downloadtk-b5032411b2478609a6e1ddf9041913a5fbb89258.zip
tk-b5032411b2478609a6e1ddf9041913a5fbb89258.tar.gz
tk-b5032411b2478609a6e1ddf9041913a5fbb89258.tar.bz2
* unix/configure.in: fix for default case in tk debug build detection.
* unix/configure: autoconf-2.59 FossilOrigin-Name: 69db9a57f8a90427cb43f09c509d5fc88bc6fe0f
Diffstat (limited to 'unix/configure.in')
-rw-r--r--unix/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 5d37c04..2858290 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.132 2007/04/23 21:19:08 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.133 2007/04/29 01:50:25 das Exp $
AC_INIT([tk],[8.5])
AC_PREREQ(2.59)
@@ -278,7 +278,7 @@ if test $tk_aqua = yes; then
LIBS="$LIBS -framework Carbon -framework IOKit"
CFLAGS="$CFLAGS -fpascal-strings"
TK_WINDOWINGSYSTEM=AQUA
- if test "${enable_symbols}" != no; then
+ if test -n "${enable_symbols}" -a "${enable_symbols}" != no; then
AC_DEFINE(TK_MAC_DEBUG, 1, [Are TkAqua debug messages enabled?])
fi
else