diff options
author | das <das> | 2007-04-29 01:50:24 (GMT) |
---|---|---|
committer | das <das> | 2007-04-29 01:50:24 (GMT) |
commit | 458541e13fd91e5f1323f40e835d5d9fca59d32c (patch) | |
tree | 94855f156520c768cbbf2521262d960633966030 /unix/configure | |
parent | ed5a803d319fd3f25446e4f0fa277f0ee44327ff (diff) | |
download | tk-458541e13fd91e5f1323f40e835d5d9fca59d32c.zip tk-458541e13fd91e5f1323f40e835d5d9fca59d32c.tar.gz tk-458541e13fd91e5f1323f40e835d5d9fca59d32c.tar.bz2 |
* unix/configure.in: fix for default case in tk debug build detection.
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index b2be5e4..8a2b396 100755 --- a/unix/configure +++ b/unix/configure @@ -8665,7 +8665,7 @@ _ACEOF 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 cat >>confdefs.h <<\_ACEOF #define TK_MAC_DEBUG 1 |