summaryrefslogtreecommitdiffstats
path: root/win/configure.in
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2003-04-18 20:02:25 (GMT)
committerhobbs <hobbs@noemail.net>2003-04-18 20:02:25 (GMT)
commita4bfa822b1b8e8d76960c4a0567143f06bcb4a93 (patch)
treeaa43af42d65917cc1c0db92a57ec670896dde1bd /win/configure.in
parent25d3946d5ed80c529417e5e013131ec86cf80b0b (diff)
downloadtcl-a4bfa822b1b8e8d76960c4a0567143f06bcb4a93.zip
tcl-a4bfa822b1b8e8d76960c4a0567143f06bcb4a93.tar.gz
tcl-a4bfa822b1b8e8d76960c4a0567143f06bcb4a93.tar.bz2
* win/configure: regen
* win/configure.in (SHELL): force it to /bin/sh as autoconf 2.5x uses /bin/bash, which can fail to find exes in the path (ie: lib). FossilOrigin-Name: 893b32703739b716df843c8b408610f9b1291054
Diffstat (limited to 'win/configure.in')
-rw-r--r--win/configure.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/win/configure.in b/win/configure.in
index dbc36d6..f1b5bbd 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,11 +3,16 @@
# generate the file "configure", which is run during Tcl installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.73 2003/04/14 02:36:58 mdejong Exp $
+# RCS: @(#) $Id: configure.in,v 1.74 2003/04/18 20:02:27 hobbs Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.57)
+# The following define is needed when building with Cygwin since newer
+# versions of autoconf incorrectly set SHELL to /bin/bash instead of
+# /bin/sh. The bash shell seems to suffer from some strange failures.
+SHELL=/bin/sh
+
TCL_VERSION=8.5
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=5