• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/* Adapted from the autotools src/webp/config.h.in.  */
2
3/* Define if building universal (internal helper macro) */
4/* TODO: handle properly in CMake */
5#cmakedefine AC_APPLE_UNIVERSAL_BUILD 1
6
7/* Set to 1 if __builtin_bswap16 is available */
8#cmakedefine HAVE_BUILTIN_BSWAP16 1
9
10/* Set to 1 if __builtin_bswap32 is available */
11#cmakedefine HAVE_BUILTIN_BSWAP32 1
12
13/* Set to 1 if __builtin_bswap64 is available */
14#cmakedefine HAVE_BUILTIN_BSWAP64 1
15
16/* Define to 1 if you have the <cpu-features.h> header file. */
17#cmakedefine HAVE_CPU_FEATURES_H 1
18
19/* Define to 1 if you have the <dlfcn.h> header file. */
20#cmakedefine HAVE_DLFCN_H 1
21
22/* Define to 1 if you have the <GLUT/glut.h> header file. */
23#cmakedefine HAVE_GLUT_GLUT_H 1
24
25/* Define to 1 if you have the <GL/glut.h> header file. */
26#cmakedefine HAVE_GL_GLUT_H 1
27
28/* Define to 1 if you have the <inttypes.h> header file. */
29#cmakedefine HAVE_INTTYPES_H 1
30
31/* Define to 1 if you have the <memory.h> header file. */
32#cmakedefine HAVE_MEMORY_H 1
33
34/* Define to 1 if you have the <OpenGL/glut.h> header file. */
35#cmakedefine HAVE_OPENGL_GLUT_H 1
36
37/* Have PTHREAD_PRIO_INHERIT. */
38#cmakedefine HAVE_PTHREAD_PRIO_INHERIT @HAVE_PTHREAD_PRIO_INHERIT@
39
40/* Define to 1 if you have the <shlwapi.h> header file. */
41#cmakedefine HAVE_SHLWAPI_H 1
42
43/* Define to 1 if you have the <stdint.h> header file. */
44#cmakedefine HAVE_STDINT_H 1
45
46/* Define to 1 if you have the <stdlib.h> header file. */
47#cmakedefine HAVE_STDLIB_H 1
48
49/* Define to 1 if you have the <strings.h> header file. */
50#cmakedefine HAVE_STRINGS_H 1
51
52/* Define to 1 if you have the <string.h> header file. */
53#cmakedefine HAVE_STRING_H 1
54
55/* Define to 1 if you have the <sys/stat.h> header file. */
56#cmakedefine HAVE_SYS_STAT_H 1
57
58/* Define to 1 if you have the <sys/types.h> header file. */
59#cmakedefine HAVE_SYS_TYPES_H 1
60
61/* Define to 1 if you have the <unistd.h> header file. */
62#cmakedefine HAVE_UNISTD_H 1
63
64/* Define to 1 if you have the <wincodec.h> header file. */
65#cmakedefine HAVE_WINCODEC_H 1
66
67/* Define to 1 if you have the <windows.h> header file. */
68#cmakedefine HAVE_WINDOWS_H 1
69
70/* Define to the sub-directory in which libtool stores uninstalled libraries.
71   */
72/* TODO: handle properly in CMake */
73#cmakedefine LT_OBJDIR "@LT_OBJDIR@"
74
75/* Name of package */
76#cmakedefine PACKAGE "@PROJECT_NAME@"
77
78/* Define to the address where bug reports for this package should be sent. */
79#cmakedefine PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@"
80
81/* Define to the full name of this package. */
82#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@"
83
84/* Define to the full name and version of this package. */
85#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
86
87/* Define to the one symbol short name of this package. */
88#cmakedefine PACKAGE_TARNAME "@PACKAGE_TARNAME@"
89
90/* Define to the home page for this package. */
91#cmakedefine PACKAGE_URL "@PACKAGE_URL@"
92
93/* Define to the version of this package. */
94#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
95
96/* Define to 1 if you have the ANSI C header files. */
97#cmakedefine STDC_HEADERS 1
98
99/* Version number of package */
100#cmakedefine VERSION "@VERSION@"
101
102/* Set to 1 if GIF library is installed */
103#cmakedefine WEBP_HAVE_GIF 1
104
105/* Set to 1 if OpenGL is supported */
106#cmakedefine WEBP_HAVE_GL 1
107
108/* Set to 1 if JPEG library is installed */
109#cmakedefine WEBP_HAVE_JPEG 1
110
111/* Set to 1 if NEON is supported */
112#cmakedefine WEBP_HAVE_NEON
113
114/* Set to 1 if runtime detection of NEON is enabled */
115/* TODO: handle properly in CMake */
116#cmakedefine WEBP_HAVE_NEON_RTCD
117
118/* Set to 1 if PNG library is installed */
119#cmakedefine WEBP_HAVE_PNG 1
120
121/* Set to 1 if SDL library is installed */
122#cmakedefine WEBP_HAVE_SDL 1
123
124/* Set to 1 if SSE2 is supported */
125#cmakedefine WEBP_HAVE_SSE2 1
126
127/* Set to 1 if SSE4.1 is supported */
128#cmakedefine WEBP_HAVE_SSE41 1
129
130/* Set to 1 if TIFF library is installed */
131#cmakedefine WEBP_HAVE_TIFF 1
132
133/* Enable near lossless encoding */
134#cmakedefine WEBP_NEAR_LOSSLESS 1
135
136/* Undefine this to disable thread support. */
137#cmakedefine WEBP_USE_THREAD 1
138
139/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
140   significant byte first (like Motorola and SPARC, unlike Intel). */
141#if defined AC_APPLE_UNIVERSAL_BUILD
142# if defined __BIG_ENDIAN__
143#  define WORDS_BIGENDIAN 1
144# endif
145#else
146# ifndef WORDS_BIGENDIAN
147#  undef WORDS_BIGENDIAN
148# endif
149#endif
150