| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- ################################################################################
- #
- # configure
- #
- ################################################################################
- ########################################
- # FUNCTION check_includes
- ########################################
- function(check_includes files)
- foreach(F ${${files}})
- set(name ${F})
- string(REPLACE "-" "_" name ${name})
- string(REPLACE "." "_" name ${name})
- string(REPLACE "/" "_" name ${name})
- string(TOUPPER ${name} name)
- check_include_files(${F} HAVE_${name})
- file(APPEND ${AUTOCONFIG_SRC} "/* Define to 1 if you have the <${F}> header file. */\n")
- file(APPEND ${AUTOCONFIG_SRC} "#cmakedefine HAVE_${name} 1\n")
- file(APPEND ${AUTOCONFIG_SRC} "\n")
- endforeach()
- endfunction(check_includes)
- ########################################
- # FUNCTION check_functions
- ########################################
- function(check_functions functions)
- foreach(F ${${functions}})
- set(name ${F})
- string(TOUPPER ${name} name)
- check_function_exists(${F} HAVE_${name})
- file(APPEND ${AUTOCONFIG_SRC} "/* Define to 1 if you have the `${F}' function. */\n")
- file(APPEND ${AUTOCONFIG_SRC} "#cmakedefine HAVE_${name} 1\n")
- file(APPEND ${AUTOCONFIG_SRC} "\n")
- endforeach()
- endfunction(check_functions)
- ########################################
- file(WRITE ${AUTOCONFIG_SRC})
- include(CheckCSourceCompiles)
- include(CheckCSourceRuns)
- include(CheckCXXSourceCompiles)
- include(CheckCXXSourceRuns)
- include(CheckFunctionExists)
- include(CheckIncludeFiles)
- include(CheckLibraryExists)
- include(CheckPrototypeDefinition)
- include(CheckStructHasMember)
- include(CheckSymbolExists)
- include(CheckTypeSize)
- include(TestBigEndian)
- set(include_files_list
- dlfcn.h
- inttypes.h
- memory.h
- stdint.h
- stdlib.h
- strings.h
- string.h
- sys/stat.h
- sys/types.h
- unistd.h
- )
- check_includes(include_files_list)
- set(functions_list
- fmemopen
- fstatat
- )
- check_functions(functions_list)
- test_big_endian(BIG_ENDIAN)
- if(BIG_ENDIAN)
- set(ENDIANNESS L_BIG_ENDIAN)
- else()
- set(ENDIANNESS L_LITTLE_ENDIAN)
- endif()
- set(APPLE_UNIVERSAL_BUILD "defined (__APPLE_CC__)")
- configure_file(
- ${PROJECT_SOURCE_DIR}/src/endianness.h.in
- ${PROJECT_BINARY_DIR}/src/endianness.h
- @ONLY)
- if (GIF_FOUND)
- set(HAVE_LIBGIF 1)
- endif()
- if (JPEG_FOUND)
- set(HAVE_LIBJPEG 1)
- endif()
- if (OPENJPEG_SUPPORT)
- set(HAVE_LIBJP2K 1)
- endif()
- if (PNG_FOUND)
- set(HAVE_LIBPNG 1)
- endif()
- if (TIFF_FOUND)
- set(HAVE_LIBTIFF 1)
- endif()
- if (LIBWEBP_SUPPORT)
- set(HAVE_LIBWEBP 1)
- set(HAVE_LIBWEBP_ANIM 1)
- endif()
- if (ZLIB_FOUND)
- set(HAVE_LIBZ 1)
- endif()
- file(APPEND ${AUTOCONFIG_SRC} "
- /* Define to 1 if you have giflib. */
- #cmakedefine HAVE_LIBGIF 1
- /* Define to 1 if you have libopenjp2. */
- #cmakedefine HAVE_LIBJP2K 1
- /* Define to 1 if you have jpeg. */
- #cmakedefine HAVE_LIBJPEG 1
- /* Define to 1 if you have libpng. */
- #cmakedefine HAVE_LIBPNG 1
- /* Define to 1 if you have libtiff. */
- #cmakedefine HAVE_LIBTIFF 1
- /* Define to 1 if you have libwebp. */
- #cmakedefine HAVE_LIBWEBP 1
- /* Define to 1 if you have libwebpmux. */
- #cmakedefine HAVE_LIBWEBP_ANIM 1
- /* Define to 1 if you have zlib. */
- #cmakedefine HAVE_LIBZ 1
- ")
- ########################################
- ################################################################################
|