diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-23 07:27:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-23 07:27:02 (GMT) |
commit | bb3a478b7fa3eb2c2b4aa2b51358f144873fa750 (patch) | |
tree | 0b9ff1de4e484706f91d772a595884b931ed4a46 /unix/tcl.m4 | |
parent | 77976b1abe48f9ea2bc0f93c347c62995695fcd3 (diff) | |
parent | b3d458c88e93d44e5a0ea594e7da1ed66fd816a4 (diff) | |
download | tcl-bb3a478b7fa3eb2c2b4aa2b51358f144873fa750.zip tcl-bb3a478b7fa3eb2c2b4aa2b51358f144873fa750.tar.gz tcl-bb3a478b7fa3eb2c2b4aa2b51358f144873fa750.tar.bz2 |
[Bug 3508771]: Cygwin notifier for handling win32 events
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 85b48fa..fa31d3d 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1243,6 +1243,12 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ if test "$ac_cv_cygwin" = "no"; then AC_MSG_ERROR([${CC} is not a cygwin compiler.]) fi + if test "x${TCL_THREADS}" = "x0"; then + AC_MSG_ERROR([CYGWIN compile is only supported with --enable-threads]) + fi + if test ! -f "../win/tcldde12.dll" -a ! -f "../win/tk84.dll"; then + AC_MSG_ERROR([Please configure and make the ../win directory first.]) + fi ;; dgux*) SHLIB_CFLAGS="-K PIC" |