OLD | NEW |
---|---|
(Empty) | |
1 /* android/config.h. Based on linux/config.h with manual edits. */ | |
2 | |
3 /* Define to 1 if you have the <dlfcn.h> header file. */ | |
4 #define HAVE_DLFCN_H 1 | |
5 | |
6 /* Define to 1 if you have the <ext/rope> header file. */ | |
7 /* #undef HAVE_EXT_ROPE */ | |
8 | |
9 /* Define to 1 if you have the <fnmatch.h> header file. */ | |
10 #define HAVE_FNMATCH_H 1 | |
11 | |
12 /* Define to 1 if you have the <getopt.h> header file. */ | |
13 #define HAVE_GETOPT_H 1 | |
14 | |
15 /* Define to 1 if you have the `gettimeofday' function. */ | |
16 #define HAVE_GETTIMEOFDAY 1 | |
17 | |
18 /* Define to 1 if you have the <inttypes.h> header file. */ | |
19 #define HAVE_INTTYPES_H 1 | |
20 | |
21 /* Define to 1 if you have the <malloc.h> header file. */ | |
22 /* This is defined in AndroidConfig.h. */ | |
23 #undef HAVE_MALLOC_H | |
24 #define HAVE_MALLOC_H 1 | |
25 | |
26 /* Define to 1 if you have the `memalign' function. */ | |
27 #define HAVE_MEMALIGN 1 | |
28 | |
29 /* Define to 1 if you have the <memory.h> header file. */ | |
30 #define HAVE_MEMORY_H 1 | |
31 | |
32 /* Define to 1 if you have the `mprotect' function. */ | |
33 #define HAVE_MPROTECT 1 | |
34 | |
35 /* Define to 1 if you have the `posix_memalign' function. */ | |
36 #define HAVE_POSIX_MEMALIGN 1 | |
37 | |
38 /* Define to 1 if you have the `QueryPerformanceCounter' function. */ | |
39 /* #undef HAVE_QUERYPERFORMANCECOUNTER */ | |
40 | |
41 /* Define to 1 if you have the <stdint.h> header file. */ | |
42 #define HAVE_STDINT_H 1 | |
43 | |
44 /* Define to 1 if you have the <stdlib.h> header file. */ | |
45 #define HAVE_STDLIB_H 1 | |
46 | |
47 /* Define to 1 if you have the <strings.h> header file. */ | |
48 #define HAVE_STRINGS_H 1 | |
49 | |
50 /* Define to 1 if you have the <string.h> header file. */ | |
51 #define HAVE_STRING_H 1 | |
52 | |
53 /* Define to 1 if you have the `strtoll' function. */ | |
54 #define HAVE_STRTOLL 1 | |
55 | |
56 /* Define to 1 if you have the `strtoq' function. */ | |
57 #define HAVE_STRTOQ 1 | |
58 | |
59 /* Define to 1 if you have the <sys/mman.h> header file. */ | |
60 #define HAVE_SYS_MMAN_H 1 | |
61 | |
62 /* Define to 1 if you have the <sys/stat.h> header file. */ | |
63 #define HAVE_SYS_STAT_H 1 | |
64 | |
65 /* Define to 1 if you have the <sys/time.h> header file. */ | |
66 #define HAVE_SYS_TIME_H 1 | |
67 | |
68 /* Define to 1 if you have the <sys/types.h> header file. */ | |
69 #define HAVE_SYS_TYPES_H 1 | |
70 | |
71 /* Define to 1 if the system has the type `uint16_t'. */ | |
72 #define HAVE_UINT16_T 1 | |
73 | |
74 /* Define to 1 if you have the <unistd.h> header file. */ | |
75 #define HAVE_UNISTD_H 1 | |
76 | |
77 /* Define to 1 if the system has the type `u_int16_t'. */ | |
78 #define HAVE_U_INT16_T 1 | |
79 | |
80 /* Define to 1 if you have the <windows.h> header file. */ | |
81 /* #undef HAVE_WINDOWS_H */ | |
82 | |
83 /* define if your compiler has __attribute__ */ | |
84 #define HAVE___ATTRIBUTE__ 1 | |
85 | |
86 /* Define to 1 if the system has the type `__int16'. */ | |
87 /* #undef HAVE___INT16 */ | |
88 | |
89 /* Name of package */ | |
90 #define PACKAGE "open-vcdiff" | |
91 | |
92 /* Define to the address where bug reports for this package should be sent. */ | |
93 #define PACKAGE_BUGREPORT "opensource@google.com" | |
94 | |
95 /* Define to the full name of this package. */ | |
96 #define PACKAGE_NAME "open-vcdiff" | |
97 | |
98 /* Define to the full name and version of this package. */ | |
99 #define PACKAGE_STRING "open-vcdiff 0.7" | |
100 | |
101 /* Define to the one symbol short name of this package. */ | |
102 #define PACKAGE_TARNAME "open-vcdiff" | |
103 | |
104 /* Define to the version of this package. */ | |
105 #define PACKAGE_VERSION "0.7" | |
106 | |
107 /* Define to 1 if you have the ANSI C header files. */ | |
108 #define STDC_HEADERS 1 | |
109 | |
110 /* Use custom compare function instead of memcmp */ | |
111 #if defined(__i386__) || defined(__x86_64__) | |
wtc
2012/05/09 19:26:47
Note this code here, which is a manual change to t
jar (doing other things)
2012/05/10 06:40:15
+1
Can you take that approach?
On 2012/05/09 19:
| |
112 #define VCDIFF_USE_BLOCK_COMPARE_WORDS 1 | |
113 #else | |
114 /* #undef VCDIFF_USE_BLOCK_COMPARE_WORDS */ | |
115 #endif | |
116 | |
117 /* Version number of package */ | |
118 #define VERSION "0.7" | |
OLD | NEW |