diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rwxr-xr-x | win/configure | 5 | ||||
-rw-r--r-- | win/configure.in | 7 |
3 files changed, 23 insertions, 1 deletions
@@ -1,3 +1,15 @@ +2003-04-18 Jeff Hobbs <jeffh@ActiveState.com> + + * 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). + + * generic/tkCanvBmap.c: s/CreateBitmap/TkcCreateBitmap as Windows + has a CreateBitmap function already. + + * generic/tkCursor.c: s/GetCursor/TkcGetCursor as Windows has a + GetCursor func already, which causes compiler warnings. + 2003-04-14 Mo DeJong <mdejong@users.sourceforge.net> * win/tkWinMenu.c (TkpInitializeMenuBindings): diff --git a/win/configure b/win/configure index 768fde5..56e4200 100755 --- a/win/configure +++ b/win/configure @@ -1266,6 +1266,11 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu +# 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 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 |