diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 21:22:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-06-28 21:22:35 (GMT) |
commit | 000c4e19b196e7fbb12c6cf38589f7b90b8d4127 (patch) | |
tree | e416d3aabefe3ed1f0cf68a0632430cde922fb6a /unix/configure | |
parent | 58bfc878552abf56614cd68e7c64ff5bd4be0352 (diff) | |
download | tcl-000c4e19b196e7fbb12c6cf38589f7b90b8d4127.zip tcl-000c4e19b196e7fbb12c6cf38589f7b90b8d4127.tar.gz tcl-000c4e19b196e7fbb12c6cf38589f7b90b8d4127.tar.bz2 |
only expect tcldde.dll when --enable-shared
Diffstat (limited to 'unix/configure')
-rwxr-xr-x | unix/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/configure b/unix/configure index 8d7cc20..8d7b7f7 100755 --- a/unix/configure +++ b/unix/configure @@ -2884,7 +2884,7 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6 if test "x${TCL_THREADS}" = "x0"; then { echo "configure: error: CYGWIN compile is only supported with --enable-threads" 1>&2; exit 1; } 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 { echo "configure: error: Please configure and make the ../win directory first." 1>&2; exit 1; } fi ;; |