summaryrefslogtreecommitdiffstats
path: root/win/configure.in
diff options
context:
space:
mode:
authormdejong <mdejong>2003-02-11 02:18:45 (GMT)
committermdejong <mdejong>2003-02-11 02:18:45 (GMT)
commit63ac9ae8f0c55210a985fccf6b5320a726745fa8 (patch)
tree7e7437ce9a5ac7d36ea587aa58c4b77a875b50b2 /win/configure.in
parent6c78de9b6653cdfb497937cfa98a389a6a653dea (diff)
downloadtcl-63ac9ae8f0c55210a985fccf6b5320a726745fa8.zip
tcl-63ac9ae8f0c55210a985fccf6b5320a726745fa8.tar.gz
tcl-63ac9ae8f0c55210a985fccf6b5320a726745fa8.tar.bz2
* win/configure:
* win/configure.in: Generate error when attempting to build under Cygwin. The Cygwin port of Tcl/Tk does not build and people are filing bug reports under the mistaken impression that someone is actually maintaining the Cygwin port. A post to comp.lang.tcl asking someone to volunteer as an area maintainer has generated no results. Closing bugs 680840, 630199, and 634772 and marking as "Won't fix".
Diffstat (limited to 'win/configure.in')
-rw-r--r--win/configure.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/win/configure.in b/win/configure.in
index b195e2b..6efda06 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.65 2003/01/27 02:19:57 mdejong Exp $
+# RCS: @(#) $Id: configure.in,v 1.66 2003/02/11 02:18:46 mdejong Exp $
AC_INIT(../generic/tcl.h)
AC_PREREQ(2.13)
@@ -89,10 +89,11 @@ AC_PROG_MAKE_SET
AC_CYGWIN
-#if test "$ac_cv_cygwin" = "yes" ; then
-# AC_MSG_ERROR([Compiling with the Cygwin version of gcc is not supported.
-# Use the Mingw version of gcc from www.mingw.org instead.])
-#fi
+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,