pte-config.h 726 B

12345678910111213141516171819202122232425262728293031323334
  1. /* config.h */
  2. #ifndef PTE_CONFIG_H
  3. #define PTE_CONFIG_H
  4. #include <errno.h>
  5. #include <sys/types.h>
  6. #include <sys/timeb.h>
  7. #define PTE_STATIC_LIB
  8. /*********************************************************************
  9. * Defaults: see target specific redefinitions below.
  10. *********************************************************************/
  11. /* We're building the pthreads-win32 library */
  12. #define PTE_BUILD
  13. typedef int pid_t;
  14. /* Define if you don't have Win32 errno. (eg. WinCE) */
  15. //#undef NEED_ERRNO
  16. /* Do we know about type mode_t? */
  17. //#undef HAVE_MODE_T
  18. //#undef HAVE_TIMEB
  19. //#define HAVE_TIMEB
  20. /* Define if you have the timespec struct */
  21. //#undef HAVE_STRUCT_TIMESPEC
  22. //#define HAVE_STRUCT_TIMESPEC
  23. #endif