diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 13:27:43 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 13:27:43 (GMT) |
commit | c728c451a4b3e2e2166d49547c49f5e4132b8652 (patch) | |
tree | e80f950b22e0684bc52e4c2917eec9dded867cc1 /unix/tcl.m4 | |
parent | 59051e407213c7a42b2427b17338c30336b82845 (diff) | |
parent | d244749081139cd68d5004e67c30a2ec6f99682e (diff) | |
download | tk-c728c451a4b3e2e2166d49547c49f5e4132b8652.zip tk-c728c451a4b3e2e2166d49547c49f5e4132b8652.tar.gz tk-c728c451a4b3e2e2166d49547c49f5e4132b8652.tar.bz2 |
Link cygwin wish.exe with win32 tk.dll, only in combination with --enable-shared
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 44475c2..a142baf 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1246,7 +1246,7 @@ AC_DEFUN([SC_CONFIG_CFLAGS], [ if test "x${TCL_THREADS}" = "x0"; then AC_MSG_ERROR([CYGWIN compile is only supported with --enable-threads]) fi - if test ! -f "../win/tcldde14.dll" -a ! -f "../win/tk86.dll"; then + if test "x${SHARED_BUILD}" = "x1" -a ! -f "../win/tcldde14.dll" -a ! -f "../win/tk86.dll"; then AC_MSG_ERROR([Please configure and make the ../win directory first.]) fi ;; |