diff options
author | mdejong <mdejong> | 2001-06-26 20:31:58 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-06-26 20:31:58 (GMT) |
commit | 8f22f389aad0e1ac27e08aafbc619b8dbae1f50b (patch) | |
tree | 2ab24e9d0ddd87b307d8ff84ffaa662394cdb81c /unix | |
parent | cfb424fdeffdc953975e1dd1174390724fb76583 (diff) | |
download | tk-8f22f389aad0e1ac27e08aafbc619b8dbae1f50b.zip tk-8f22f389aad0e1ac27e08aafbc619b8dbae1f50b.tar.gz tk-8f22f389aad0e1ac27e08aafbc619b8dbae1f50b.tar.bz2 |
* unix/configure: Regen.
* unix/configure.in: Fix last checkin by removing
export since that only works in bash.
* win/configure: Regen.
* win/configure.in: Ditto.
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 4 | ||||
-rw-r--r-- | unix/configure.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/unix/configure b/unix/configure index d68c466..20b4e08 100755 --- a/unix/configure +++ b/unix/configure @@ -537,7 +537,7 @@ else fi -# RCS: @(#) $Id: configure.in,v 1.59 2001/06/22 23:59:48 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.60 2001/06/26 20:17:22 mdejong Exp $ TK_VERSION=8.4 TK_MAJOR_VERSION=8 @@ -563,7 +563,7 @@ TK_SRC_DIR=`cd $srcdir/..; pwd` # If the user did not set CFLAGS, set it now to keep # the AC_PROG_CC macro from adding "-g -O2". if test "${CFLAGS+set}" != "set" ; then - export CFLAGS="" + CFLAGS="" fi # Extract the first word of "gcc", so it can be a program name with args. diff --git a/unix/configure.in b/unix/configure.in index 4a269b6..9da83a1 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. AC_INIT(../generic/tk.h) -# RCS: @(#) $Id: configure.in,v 1.60 2001/06/26 20:17:22 mdejong Exp $ +# RCS: @(#) $Id: configure.in,v 1.61 2001/06/26 20:31:58 mdejong Exp $ TK_VERSION=8.4 TK_MAJOR_VERSION=8 @@ -29,7 +29,7 @@ TK_SRC_DIR=`cd $srcdir/..; pwd` # If the user did not set CFLAGS, set it now to keep # the AC_PROG_CC macro from adding "-g -O2". if test "${CFLAGS+set}" != "set" ; then - export CFLAGS="" + CFLAGS="" fi AC_PROG_CC |