diff options
author | nijtmans <nijtmans> | 2010-01-22 13:02:50 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-01-22 13:02:50 (GMT) |
commit | 054ab462a502b5dd37f904ad14e46190554dd8ba (patch) | |
tree | 55e1b5a3324a9e4ba5914c4e528a6d7c4f81933d /win/configure.in | |
parent | cc52b4d3c7d8a2d088216976f32ca253b404c75d (diff) | |
download | tcl-054ab462a502b5dd37f904ad14e46190554dd8ba.zip tcl-054ab462a502b5dd37f904ad14e46190554dd8ba.tar.gz tcl-054ab462a502b5dd37f904ad14e46190554dd8ba.tar.bz2 |
Revert [2009-12-21] change in tcl.h, in stead
resolve the CYGWIN inclusion problems by
re-arranging the inclusions at other places.
Make cygwin configuration error into
a warning: CYGWIN compilation works
although there still are test failures.
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/win/configure.in b/win/configure.in index f8d54ce..7995106 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.119 2009/11/23 20:17:36 nijtmans Exp $ +# RCS: @(#) $Id: configure.in,v 1.120 2010/01/22 13:02:50 nijtmans Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -101,24 +101,6 @@ dnl under autoconf 2.5X. dnl dnl AC_CYGWIN -AC_CACHE_CHECK(for Cygwin version of gcc, - ac_cv_cygwin, -AC_TRY_COMPILE([ -#ifdef __CYGWIN__ -#error cygwin -#endif -], -[], - ac_cv_cygwin=no, - ac_cv_cygwin=yes) -) -if test "$ac_cv_cygwin" = "yes" ; then - AC_MSG_ERROR([Compiling under Cygwin is not currently supported. -A maintainer for the Cygwin port of Tcl/Tk is needed. See the README -file for information about building with Mingw.]) -fi - - AC_CACHE_CHECK(for SEH support in compiler, tcl_cv_seh, AC_TRY_RUN([ |