diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-27 14:30:23 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-04-27 14:30:23 (GMT) |
commit | 8bf5fdf9e1d9dc7f24b23a35f5a63633a376b8b7 (patch) | |
tree | 2d8f5bc75247dd5e8de4083e7aae5b982df43e02 /generic/tclPort.h | |
parent | e77df0de70554a45c37f813058658b143cbffd2d (diff) | |
download | tcl-8bf5fdf9e1d9dc7f24b23a35f5a63633a376b8b7.zip tcl-8bf5fdf9e1d9dc7f24b23a35f5a63633a376b8b7.tar.gz tcl-8bf5fdf9e1d9dc7f24b23a35f5a63633a376b8b7.tar.bz2 |
Move CYGWIN-specific stuff from tclPort.h to tclUnixPort.h, where it belongs
Diffstat (limited to 'generic/tclPort.h')
-rw-r--r-- | generic/tclPort.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h index 7c9bf3c..7021b8d 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -25,18 +25,6 @@ # include "tclUnixPort.h" #endif -#if defined(__CYGWIN__) -# define USE_PUTENV 1 -# define USE_PUTENV_FOR_UNSET 1 -/* On Cygwin, the environment is imported from the Cygwin DLL. */ -# define environ __cygwin_environ -# define timezone _timezone - DLLIMPORT extern char **__cygwin_environ; - DLLIMPORT extern int cygwin_conv_to_win32_path(const char *, char *); - DLLIMPORT extern int cygwin_posix_to_win32_path_list_buf_size(char *value); - DLLIMPORT extern void cygwin_posix_to_win32_path_list(char *buf, char *value); -#endif - #if !defined(LLONG_MIN) # ifdef TCL_WIDE_INT_IS_LONG # define LLONG_MIN LONG_MIN |