summaryrefslogtreecommitdiffstats
path: root/win/configure.in
diff options
context:
space:
mode:
authorhobbs <hobbs>2003-04-18 21:55:02 (GMT)
committerhobbs <hobbs>2003-04-18 21:55:02 (GMT)
commitac61e94f1ce8a66b3390232fd5ee69fa6e56ed38 (patch)
treea7d6c41505dd55efb3cf0042d76219ff08b96cf7 /win/configure.in
parentae2c4cb462b2445d5cb0153e187fe77c2c428abc (diff)
downloadtk-ac61e94f1ce8a66b3390232fd5ee69fa6e56ed38.zip
tk-ac61e94f1ce8a66b3390232fd5ee69fa6e56ed38.tar.gz
tk-ac61e94f1ce8a66b3390232fd5ee69fa6e56ed38.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).
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 85fc7c9..f6e4c8d 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,11 +3,16 @@
# generate the file "configure", which is run during Tk installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.54 2003/04/03 02:31:31 mdejong Exp $
+# RCS: @(#) $Id: configure.in,v 1.55 2003/04/18 21:55:03 hobbs Exp $
AC_INIT(../generic/tk.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
+
TK_VERSION=8.5
TK_MAJOR_VERSION=8
TK_MINOR_VERSION=5