config.h.in (3404B)
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 <GLUT/glut.h> header file. */ 20 #cmakedefine HAVE_GLUT_GLUT_H 1 21 22 /* Define to 1 if you have the <GL/glut.h> header file. */ 23 #cmakedefine HAVE_GL_GLUT_H 1 24 25 /* Define to 1 if you have the <OpenGL/glut.h> header file. */ 26 #cmakedefine HAVE_OPENGL_GLUT_H 1 27 28 /* Define to 1 if you have the <shlwapi.h> header file. */ 29 #cmakedefine HAVE_SHLWAPI_H 1 30 31 /* Define to 1 if you have the <unistd.h> header file. */ 32 #cmakedefine HAVE_UNISTD_H 1 33 34 /* Define to 1 if you have the <wincodec.h> header file. */ 35 #cmakedefine HAVE_WINCODEC_H 1 36 37 /* Define to 1 if you have the <windows.h> header file. */ 38 #cmakedefine HAVE_WINDOWS_H 1 39 40 /* Define to the sub-directory in which libtool stores uninstalled libraries. 41 */ 42 /* TODO: handle properly in CMake */ 43 #cmakedefine LT_OBJDIR "@LT_OBJDIR@" 44 45 /* Name of package */ 46 #cmakedefine PACKAGE "@PROJECT_NAME@" 47 48 /* Define to the address where bug reports for this package should be sent. */ 49 #cmakedefine PACKAGE_BUGREPORT "@PACKAGE_BUGREPORT@" 50 51 /* Define to the full name of this package. */ 52 #cmakedefine PACKAGE_NAME "@PACKAGE_NAME@" 53 54 /* Define to the full name and version of this package. */ 55 #cmakedefine PACKAGE_STRING "@PACKAGE_STRING@" 56 57 /* Define to the one symbol short name of this package. */ 58 #cmakedefine PACKAGE_TARNAME "@PACKAGE_TARNAME@" 59 60 /* Define to the home page for this package. */ 61 #cmakedefine PACKAGE_URL "@PACKAGE_URL@" 62 63 /* Define to the version of this package. */ 64 #cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@" 65 66 /* Version number of package */ 67 #cmakedefine VERSION "@VERSION@" 68 69 /* Set to 1 if GIF library is installed */ 70 #cmakedefine WEBP_HAVE_GIF 1 71 72 /* Set to 1 if OpenGL is supported */ 73 #cmakedefine WEBP_HAVE_GL 1 74 75 /* Set to 1 if JPEG library is installed */ 76 #cmakedefine WEBP_HAVE_JPEG 1 77 78 /* Set to 1 if NEON is supported */ 79 #cmakedefine WEBP_HAVE_NEON 80 81 /* Set to 1 if runtime detection of NEON is enabled */ 82 /* TODO: handle properly in CMake */ 83 #cmakedefine WEBP_HAVE_NEON_RTCD 84 85 /* Set to 1 if PNG library is installed */ 86 #cmakedefine WEBP_HAVE_PNG 1 87 88 /* Set to 1 if SDL library is installed */ 89 #cmakedefine WEBP_HAVE_SDL 1 90 91 /* Set to 1 if SSE2 is supported */ 92 #cmakedefine WEBP_HAVE_SSE2 1 93 94 /* Set to 1 if SSE4.1 is supported */ 95 #cmakedefine WEBP_HAVE_SSE41 1 96 97 /* Set to 1 if AVX2 is supported */ 98 #cmakedefine WEBP_HAVE_AVX2 1 99 100 /* Set to 1 if TIFF library is installed */ 101 #cmakedefine WEBP_HAVE_TIFF 1 102 103 /* Enable near lossless encoding */ 104 #cmakedefine WEBP_NEAR_LOSSLESS 1 105 106 /* Undefine this to disable thread support. */ 107 #cmakedefine WEBP_USE_THREAD 1 108 109 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most 110 significant byte first (like Motorola and SPARC, unlike Intel). */ 111 #if defined AC_APPLE_UNIVERSAL_BUILD 112 # if defined __BIG_ENDIAN__ 113 # define WORDS_BIGENDIAN 1 114 # endif 115 #else 116 # ifndef WORDS_BIGENDIAN 117 # undef WORDS_BIGENDIAN 118 # endif 119 #endif