summaryrefslogtreecommitdiffstats
path: root/unix/configure.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-06-28 21:30:13 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-06-28 21:30:13 (GMT)
commitefe98906ec39464aa29a252ebf213a7365c7fc90 (patch)
tree3d10ba7765344575dde5a4b7b37f837a82946c1b /unix/configure.in
parent327d5a1c1c8394f99c4d0a4f8cf82ebc4f527430 (diff)
parent50f846b8e0f664d9d8c2e92aef3ea676db9cf172 (diff)
downloadtcl-efe98906ec39464aa29a252ebf213a7365c7fc90.zip
tcl-efe98906ec39464aa29a252ebf213a7365c7fc90.tar.gz
tcl-efe98906ec39464aa29a252ebf213a7365c7fc90.tar.bz2
only expect tcldde.dll when --enable-shared
Diffstat (limited to 'unix/configure.in')
-rw-r--r--unix/configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/unix/configure.in b/unix/configure.in
index 440988b..79a546d 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -303,7 +303,9 @@ SC_TIME_HANDLER
#--------------------------------------------------------------------
if test "$ac_cv_cygwin" = "yes"; then
- TCL_SHLIB_LD_EXTRAS="${TCL_SHLIB_LD_EXTRAS} \${COMPAT_DIR}/zlib/win32/zdll.lib"
+ if test "x${SHARED_BUILD}" = "x1"; then
+ TCL_SHLIB_LD_EXTRAS="${TCL_SHLIB_LD_EXTRAS} \${COMPAT_DIR}/zlib/win32/zdll.lib"
+ fi
else
AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
fi