Fixed two long-standing locale bugs.
[p5sagit/p5-mst-13.2.git] / dosish.h
index 5704c78..4116dec 100644 (file)
--- a/dosish.h
+++ b/dosish.h
 #    define NO_LOCALECONV_MON_THOUSANDS_SEP
 #  endif
 #  ifdef USE_THREADS
-#    define NEED_PTHREAD_INIT
 #    define OLD_PTHREADS_API
-#    define YIELD pthread_yield(NULL)
-#    define DETACH(t)                          \
-       STMT_START {                            \
-         if (pthread_detach(&(t)->self)) {     \
-             MUTEX_UNLOCK(&(t)->mutex);                \
-             croak("panic: DETACH");           \
-         }                                     \
-       } STMT_END
-#    define pthread_mutexattr_default NULL
-#    define pthread_condattr_default NULL
-#    define pthread_attr_default NULL
-#    define pthread_addr_t any_t
 #  endif
 #else  /* DJGPP */
 #  ifdef WIN32
 #    define PERL_SYS_INIT(c,v) Perl_win32_init(c,v)
 #    define BIT_BUCKET "nul"
 #  else
-#    define PERL_SYS_INIT(c,v)
-#    define BIT_BUCKET "\\dev\\nul" /* "wanna be like, umm, Newlined, or somethin?" */
+#    ifdef CYGWIN32
+#      define PERL_SYS_INIT(c,v)       \
+               MALLOC_INIT;
+#      define OP_BINARY O_BINARY
+#      define BIT_BUCKET "nul"
+#      define HAS_IOCTL
+#      define HAS_UTIME
+#      define HAS_KILL
+#      define HAS_WAIT
+#      define HAS_CHOWN
+#      define HAS_GROUP
+#    else
+#      define PERL_SYS_INIT(c,v)
+#      define BIT_BUCKET "\\dev\\nul" /* "wanna be like, umm, Newlined, or somethin?" */
+#    endif
 #  endif
 #endif /* DJGPP */
 
 #define dXSUB_SYS
 #define TMPPATH "plXXXXXX"
 
-#ifdef WIN32
-#define HAS_IOCTL
-#define HAS_UTIME
-#define HAS_KILL
-#endif
-
 /*
  * 5.003_07 and earlier keyed on #ifdef MSDOS for determining if we were 
  * running on DOS, *and* if we had to cope with 16 bit memory addressing 
 #ifndef WIN32
 #  define Stat(fname,bufptr) stat((fname),(bufptr))
 #else
-/*
- * This provides a layer of functions and macros to ensure extensions will
- * get to use the same RTL functions as the core.
- */
-#ifndef HASATTRIBUTE
-#  include <win32iop.h>
-#endif
+#  define HAS_IOCTL
+#  define HAS_UTIME
+#  define HAS_KILL
+#  define HAS_WAIT
+#  define HAS_CHOWN
 #endif /* WIN32 */