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 necessary symbol if this constant uses a non-standard name on
97   your system. */
98#cmakedefine PTHREAD_CREATE_JOINABLE 1
99
100/* Define to 1 if you have the ANSI C header files. */
101#cmakedefine STDC_HEADERS 1
102
103/* Version number of package */
104#cmakedefine VERSION "@VERSION@"
105
106/* Set to 1 if GIF library is installed */
107#cmakedefine WEBP_HAVE_GIF 1
108
109/* Set to 1 if OpenGL is supported */
110#cmakedefine WEBP_HAVE_GL 1
111
112/* Set to 1 if JPEG library is installed */
113#cmakedefine WEBP_HAVE_JPEG 1
114
115/* Set to 1 if NEON is supported */
116#cmakedefine WEBP_HAVE_NEON
117
118/* Set to 1 if runtime detection of NEON is enabled */
119/* TODO: handle properly in CMake */
120#cmakedefine WEBP_HAVE_NEON_RTCD
121
122/* Set to 1 if PNG library is installed */
123#cmakedefine WEBP_HAVE_PNG 1
124
125/* Set to 1 if SDL library is installed */
126#cmakedefine WEBP_HAVE_SDL 1
127
128/* Set to 1 if SSE2 is supported */
129#cmakedefine WEBP_HAVE_SSE2 1
130
131/* Set to 1 if SSE4.1 is supported */
132#cmakedefine WEBP_HAVE_SSE41 1
133
134/* Set to 1 if TIFF library is installed */
135#cmakedefine WEBP_HAVE_TIFF 1
136
137/* Enable near lossless encoding */
138#cmakedefine WEBP_NEAR_LOSSLESS 1
139
140/* Undefine this to disable thread support. */
141#cmakedefine WEBP_USE_THREAD 1
142
143/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
144   significant byte first (like Motorola and SPARC, unlike Intel). */
145#if defined AC_APPLE_UNIVERSAL_BUILD
146# if defined __BIG_ENDIAN__
147#  define WORDS_BIGENDIAN 1
148# endif
149#else
150# ifndef WORDS_BIGENDIAN
151#  undef WORDS_BIGENDIAN
152# endif
153#endif
154