1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#if !defined(__DJGPP__)
#ifndef __CYGWIN__
#define FILESYSTEM_IS_CASE_SENSITIVE 1
#endif
#if !defined(ENV_MACOSX) && !defined(ENV_BEOS)
/* <wchar.h> */
/* ENV_HAVE_WCHAR__H and not ENV_HAVE_WCHAR_H to avoid warning with wxWidgets */
#define ENV_HAVE_WCHAR__H
/* <wctype.h> */
#define ENV_HAVE_WCTYPE_H
/* mbrtowc */
/* #ifndef __hpux */
/* #define ENV_HAVE_MBRTOWC */
/* #endif */
/* towupper */
#define ENV_HAVE_TOWUPPER
#endif /* !ENV_MACOSX && !ENV_BEOS */
#if !defined(ENV_BEOS)
#define ENV_HAVE_GETPASS
#if !defined(sun)
#define ENV_HAVE_TIMEGM
#endif
#endif
/* lstat, readlink and S_ISLNK */
#define ENV_HAVE_LSTAT
/* <locale.h> */
#define ENV_HAVE_LOCALE
/* mbstowcs */
#define ENV_HAVE_MBSTOWCS
/* wcstombs */
#define ENV_HAVE_WCSTOMBS
#endif /* !__DJGPP__ */
#ifndef ENV_BEOS
#define ENV_HAVE_PTHREAD
#endif
#if defined(ENV_MACOSX)
#define LOCALE_IS_UTF8
#endif
#ifdef LOCALE_IS_UTF8
#undef ENV_HAVE_LOCALE
#undef ENV_HAVE_MBSTOWCS
#undef ENV_HAVE_WCSTOMBS
/* #undef ENV_HAVE_MBRTOWC */
#endif
#define MAX_PATHNAME_LEN 1024
|