summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generic/tclZipfs.c2
-rw-r--r--tests/chanio.test4
-rw-r--r--unix/Makefile.in4
3 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclZipfs.c b/generic/tclZipfs.c
index a5b1413..bef7417 100644
--- a/generic/tclZipfs.c
+++ b/generic/tclZipfs.c
@@ -32,7 +32,7 @@
#define TBLS 1
#endif
-#if !defined(NO_DLFCN_H)
+#if !defined(_WIN32) && !defined(NO_DLFCN_H)
#include <dlfcn.h>
#endif
diff --git a/tests/chanio.test b/tests/chanio.test
index 4e911f9..e8bcc5e 100644
--- a/tests/chanio.test
+++ b/tests/chanio.test
@@ -5511,7 +5511,7 @@ test chan-io-41.5 {Tcl_FileeventCmd: errors} -constraints fileevent -body {
} -returnCodes error -result {bad event name "who-knows": must be readable or writable}
-test chan-io-41.6 {Tcl_FileeventCmd: directory} -constraints fileevent -setup {
+test chan-io-41.6 {Tcl_FileeventCmd: directory} -constraints {fileevent unix} -setup {
set tempdir [::tcltests::tempdir]
} -body {
set chan [open $tempdir]
@@ -5546,7 +5546,7 @@ test chan-io-41.7 {Tcl_FileeventCmd: special} -constraints {
} -result 1
-test chan-io-41.8 {Tcl_FileeventCmd: symbolic link} -constraints fileevent -setup {
+test chan-io-41.8 {Tcl_FileeventCmd: symbolic link} -constraints {fileevent unix} -setup {
set tempdir [::tcltests::tempdir]
} -body {
set target [makeFile {not again} thefile $tempdir]
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 4e5a9af..819cf64 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -2409,9 +2409,9 @@ html-tk: ${NATIVE_TCLSH}
BUILD_HTML = \
@${NATIVE_TCLSH} $(TOOL_DIR)/tcltk-man2html.tcl \
- --useversion=$(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL) \
+ --useversion=$(MAJOR_VERSION).$(MINOR_VERSION) \
--htmldir="$(HTML_INSTALL_DIR)" \
- --srcdir=$(TOP_DIR)/.. $(BUILD_HTML_FLAGS)
+ --srcdir=$(TOP_DIR) $(BUILD_HTML_FLAGS)
#--------------------------------------------------------------------------
# The list of all the targets that do not correspond to real files. This stops