diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-07 11:38:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-07 11:38:35 (GMT) |
commit | ebbffb3ea5b1b5609e3fb86ddea543aa3d24693d (patch) | |
tree | 4e2d01a6d7f150901977e08a3cdd1e95ad52aad0 /unix/Makefile.in | |
parent | 9d84efaa149ad0656809cbb06f7c05ffbab65c60 (diff) | |
download | tcl-ebbffb3ea5b1b5609e3fb86ddea543aa3d24693d.zip tcl-ebbffb3ea5b1b5609e3fb86ddea543aa3d24693d.tar.gz tcl-ebbffb3ea5b1b5609e3fb86ddea543aa3d24693d.tar.bz2 |
No longer link Cygwin executables with zlib1.dll, but with cygz.dll.
On Cygwin64 this doesn't work, and on Cygwin32 it was a bad idea anyway.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 00e694d..3b14752 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -614,9 +614,6 @@ doc: ${LIB_FILE}: ${OBJS} ${STUB_LIB_FILE} rm -f $@ @MAKE_LIB@ - @if test "x$(DLL_INSTALL_DIR)" = "x$(BIN_INSTALL_DIR)"; then\ - cp ${ZLIB_DIR}/win32/zlib1.dll .;\ - fi ${STUB_LIB_FILE}: ${STUB_LIB_OBJS} @@ -787,11 +784,6 @@ install-binaries: binaries else true; \ fi; \ done; - @if test "x$(DLL_INSTALL_DIR)" = "x$(BIN_INSTALL_DIR)"; then\ - echo "Installing zlib1.dll to $(BIN_INSTALL_DIR)/";\ - $(INSTALL_LIBRARY) zlib1.dll "$(BIN_INSTALL_DIR)";\ - chmod 555 "$(BIN_INSTALL_DIR)/zlib1.dll";\ - fi @echo "Installing $(LIB_FILE) to $(DLL_INSTALL_DIR)/" @@INSTALL_LIB@ @chmod 555 "$(DLL_INSTALL_DIR)/$(LIB_FILE)" |