diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-27 14:30:23 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-27 14:30:23 (GMT) |
commit | 4457676798e94230b3296a67ab9caed2dc95e8d5 (patch) | |
tree | 2d8f5bc75247dd5e8de4083e7aae5b982df43e02 /unix/tclUnixPort.h | |
parent | b412ad6981173a44ab0f31ad66b9c429b52ebe30 (diff) | |
download | tcl-4457676798e94230b3296a67ab9caed2dc95e8d5.zip tcl-4457676798e94230b3296a67ab9caed2dc95e8d5.tar.gz tcl-4457676798e94230b3296a67ab9caed2dc95e8d5.tar.bz2 |
Move CYGWIN-specific stuff from tclPort.h to tclUnixPort.h, where it belongs
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 5abe602..70ea2d4 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -74,8 +74,17 @@ typedef off_t Tcl_SeekOffset; #endif #ifdef __CYGWIN__ -MODULE_SCOPE int TclOSstat(const char *name, Tcl_StatBuf *statBuf); -MODULE_SCOPE int TclOSlstat(const char *name, Tcl_StatBuf *statBuf); +# 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); + MODULE_SCOPE int TclOSstat(const char *name, Tcl_StatBuf *statBuf); + MODULE_SCOPE int TclOSlstat(const char *name, Tcl_StatBuf *statBuf); #elif defined(HAVE_STRUCT_STAT64) # define TclOSstat stat64 # define TclOSlstat lstat64 |