summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
diff options
context:
space:
mode:
authorredman <redman>1999-07-22 23:45:52 (GMT)
committerredman <redman>1999-07-22 23:45:52 (GMT)
commit9e9f6a1ae649463e3d3cc5f0b052e6ad644cc5ac (patch)
tree91e7b73adabbe60410c1d3bfbf80a468f97cd3f3 /win/Makefile.in
parent56b77d9d6c418f3dee04f0b31834ad76e69e11dd (diff)
downloadtcl-9e9f6a1ae649463e3d3cc5f0b052e6ad644cc5ac.zip
tcl-9e9f6a1ae649463e3d3cc5f0b052e6ad644cc5ac.tar.gz
tcl-9e9f6a1ae649463e3d3cc5f0b052e6ad644cc5ac.tar.bz2
Fix hange with socket code (win32) with threads enabled, fixed
the semaphores for threads disabled. Fixed calling of tcltest in Makefile.in (win32) and fixed safe-6.3 for threads enabled.
Diffstat (limited to 'win/Makefile.in')
-rw-r--r--win/Makefile.in8
1 files changed, 5 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 0c9f350..c60db65 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.16 1999/07/20 00:11:56 hershey Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.17 1999/07/22 23:45:53 redman Exp $
VERSION = @TCL_VERSION@
@@ -102,6 +102,8 @@ GENERIC_DIR_NATIVE = $(shell cygpath $(PATHTYPE) '$(GENERIC_DIR)')
WIN_DIR_NATIVE = $(shell cygpath $(PATHTYPE) '$(WIN_DIR)')
ROOT_DIR_NATIVE = $(shell cygpath $(PATHTYPE) '$(ROOT_DIR)')
+LIBRARY_DIR = $(shell echo '$(ROOT_DIR_NATIVE)/library' | sed 's/\\/\//g' )
+
DLLSUFFIX = @DLLSUFFIX@
LIBSUFFIX = @LIBSUFFIX@
EXESUFFIX = @EXESUFFIX@
@@ -443,13 +445,13 @@ install-libraries:
install-doc:
test: binaries $(TCLTEST)
- TCL_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TCL_LIBRARY; \
+ TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
./$(TCLTEST) "$(ROOT_DIR_NATIVE)/tests/all.tcl" $(TESTFLAGS) \
| ./$(CAT32)
# Useful target to launch a built tcltest with the proper path,...
runtest: tcltest
- @TCL_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TCL_LIBRARY; \
+ @TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
./tcltest
depend: