diff options
| author | Tomas Bzatek <tbzatek@redhat.com> | 2010-02-05 11:06:31 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@redhat.com> | 2010-02-05 11:06:31 +0100 |
| commit | baea7d877d3cf69679a39e8512a120658a478073 (patch) | |
| tree | 37c9a98cb3d3a322f3f91c8ca656ccd6bd2eaebe /libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake | |
| parent | e42a4ff3031aa1c1aaf27aa34d9395fec185924b (diff) | |
| download | tuxcmd-modules-baea7d877d3cf69679a39e8512a120658a478073.tar.xz | |
Rebase libarchive to 2.8.0
Diffstat (limited to 'libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake')
| -rw-r--r-- | libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake b/libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake deleted file mode 100644 index b24fe1c..0000000 --- a/libarchive/libarchive-2.7.1/build/cmake/CheckHeaders.cmake +++ /dev/null @@ -1,36 +0,0 @@ -# - Check if the system has the specified type -# CHECK_HEADERS (HEADER1 HEARDER2 ...) -# -# HEADER - the header(s) where the prototype should be declared -# -# The following variables may be set before calling this macro to -# modify the way the check is run: -# -# CMAKE_REQUIRED_FLAGS = string of compile command line flags -# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar) -# CMAKE_REQUIRED_INCLUDES = list of include directories -# Copyright (c) 2009, Michihiro NAKAJIMA -# -# Redistribution and use is allowed according to the terms of the BSD license. -# For details see the accompanying COPYING-CMAKE-SCRIPTS file. - - -INCLUDE(CheckIncludeFile) -INCLUDE(CheckIncludeFiles) - -MACRO (CHECK_HEADERS _HEADERS) - FOREACH (header ${ARGV}) - SET(_files ${header}) - IF("${_files}" MATCHES "^sys/extattr[.]h$") - SET(_files "sys/types.h" ${header}) - ENDIF("${_files}" MATCHES "^sys/extattr[.]h$") - - STRING(TOUPPER ${header} headervar) - SET(headervar "HAVE_${headervar}") - STRING(REPLACE "/" "_" headervar ${headervar}) - STRING(REPLACE "." "_" headervar ${headervar}) - CHECK_INCLUDE_FILES("${_files}" "${headervar}") - #MESSAGE(STATUS "${_files} --> ${headervar}") - ENDFOREACH (header) -ENDMACRO (CHECK_HEADERS) - |
