File: config.h

package info (click to toggle)
p7zip 16.02%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 14,148 kB
  • sloc: cpp: 167,145; ansic: 14,992; python: 1,911; asm: 1,688; sh: 1,132; makefile: 703
file content (82 lines) | stat: -rw-r--r-- 1,543 bytes parent folder | download | duplicates (5)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82

#if !defined(__DJGPP__)

#ifndef __CYGWIN__
  #define FILESYSTEM_IS_CASE_SENSITIVE 1
#endif

  #if !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_BEOS */

  #ifdef ENV_HAIKU  /* AFTER !defined(ENV_BEOS) because ENV_HAIKU and ENV_BEOS are defined */
    /* <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

    /* towupper */
    #define ENV_HAVE_TOWUPPER
  #endif
		
  
  
  #if !defined(ENV_BEOS) && !defined(ANDROID_NDK)

    #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

/* ANDROID don't have wcstombs or mbstowcs ? */
#if defined(ENV_MACOSX) || defined(ANDROID_NDK)
#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