summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/TSRM.h8
-rw-r--r--TSRM/tsrm_virtual_cwd.c2
2 files changed, 8 insertions, 2 deletions
diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h
index ada8ab19e3..2e6c481d46 100644
--- a/TSRM/TSRM.h
+++ b/TSRM/TSRM.h
@@ -126,6 +126,14 @@ TSRM_API void *tsrm_set_new_thread_end_handler(void (*new_thread_end_handler)(TH
}
#endif
+#else
+
+#define TSRMLS_D
+#define TSRMLS_DC
+#define TSRMLS_C
+#define TSRMLS_CC
+#define TSRMLS_FETCH()
+
#endif /* ZTS */
#endif /* TSRM_H */
diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c
index 3e12d94345..2c899ee667 100644
--- a/TSRM/tsrm_virtual_cwd.c
+++ b/TSRM/tsrm_virtual_cwd.c
@@ -38,9 +38,7 @@
#define VIRTUAL_CWD_DEBUG 0
-#ifdef ZTS
#include "TSRM.h"
-#endif
/* Only need mutex for popen() in Windows because it doesn't chdir() on UNIX */
#if defined(TSRM_WIN32) && defined(ZTS)