diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-23 07:10:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-23 07:10:06 (GMT) |
commit | a723a46ec900cb50d6eafea71fd59fdaf7844df1 (patch) | |
tree | 604f9ee615167d13590b0c33c245b7a898e1ced5 /unix/tcl.m4 | |
parent | 03225cdf465de309c4c7835017c13ebf751e0b51 (diff) | |
parent | 343b3d72bdaf36f842ef906958568fb42510754f (diff) | |
download | tcl-a723a46ec900cb50d6eafea71fd59fdaf7844df1.zip tcl-a723a46ec900cb50d6eafea71fd59fdaf7844df1.tar.gz tcl-a723a46ec900cb50d6eafea71fd59fdaf7844df1.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 4e0ac62..744d6ed 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1260,6 +1260,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" |