summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-06-28 21:22:35 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-06-28 21:22:35 (GMT)
commit9c7b8c79869e1ea5d01f1a1e8b2bbbce162032c4 (patch)
treee416d3aabefe3ed1f0cf68a0632430cde922fb6a /unix/tcl.m4
parente2e50195740d759a7ac232d202129e0425c64903 (diff)
downloadtcl-9c7b8c79869e1ea5d01f1a1e8b2bbbce162032c4.zip
tcl-9c7b8c79869e1ea5d01f1a1e8b2bbbce162032c4.tar.gz
tcl-9c7b8c79869e1ea5d01f1a1e8b2bbbce162032c4.tar.bz2
only expect tcldde.dll when --enable-shared
FossilOrigin-Name: 306e9b334eb1569575e862a50574ca1997be507e
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index ac9b3bf..2dc6576 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -1229,7 +1229,7 @@ dnl AC_CHECK_TOOL(AR, ar)
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
+ if test "x${SHARED_BUILD}" = "x1" -a ! -f "../win/tcldde12.dll" -a ! -f "../win/tk84.dll"; then
AC_MSG_ERROR([Please configure and make the ../win directory first.])
fi
;;