summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authordas <das>2006-01-23 00:53:21 (GMT)
committerdas <das>2006-01-23 00:53:21 (GMT)
commit2a147ca9e8cdff6b06499b16942dd0a9b8b92228 (patch)
tree01e7dcc9c69f89fc315f074cf936aef1286a648f /unix
parenta609d7ecc60150ddfed58bbe7cf088bda8cf1771 (diff)
downloadtk-2a147ca9e8cdff6b06499b16942dd0a9b8b92228.zip
tk-2a147ca9e8cdff6b06499b16942dd0a9b8b92228.tar.gz
tk-2a147ca9e8cdff6b06499b16942dd0a9b8b92228.tar.bz2
* unix/configure: minor fix to Darwin specific code removing
* unix/configure.in: 64bit flags from CFLAGS for Tk build.
Diffstat (limited to 'unix')
-rwxr-xr-xunix/configure2
-rw-r--r--unix/configure.in4
2 files changed, 3 insertions, 3 deletions
diff --git a/unix/configure b/unix/configure
index f879d8c..4fec79f 100755
--- a/unix/configure
+++ b/unix/configure
@@ -5065,7 +5065,7 @@ fi
if test $do64bit_ok = no ; then
# remove -arch ppc64 from CFLAGS for fat builds as neither Aqua nor X11
# can be built for 64bit at present (no 64bit GUI libraries).
- CFLAGS="`echo "$CFLAGS" | sed -e 's/-arch ppc64/-arch ppc/'`"
+ CFLAGS="`echo "$CFLAGS" | sed -e 's/-arch ppc64/-arch ppc/g'`"
fi
else
tk_aqua=no
diff --git a/unix/configure.in b/unix/configure.in
index 47b6942..4ec9216 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.83.2.26 2006/01/10 05:38:40 das Exp $
+# RCS: @(#) $Id: configure.in,v 1.83.2.27 2006/01/23 00:53:21 das Exp $
AC_INIT(../generic/tk.h)
AC_PREREQ(2.13)
@@ -249,7 +249,7 @@ if test "`uname -s`" = "Darwin" ; then
if test $do64bit_ok = no ; then
# remove -arch ppc64 from CFLAGS for fat builds as neither Aqua nor X11
# can be built for 64bit at present (no 64bit GUI libraries).
- CFLAGS="`echo "$CFLAGS" | sed -e 's/-arch ppc64/-arch ppc/'`"
+ CFLAGS="`echo "$CFLAGS" | sed -e 's/-arch ppc64/-arch ppc/g'`"
fi
else
tk_aqua=no