You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.1 KiB

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
9 years ago
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. #.rst:
  4. # FindLibArchive
  5. # --------------
  6. #
  7. # Find libarchive library and headers
  8. #
  9. # The module defines the following variables:
  10. #
  11. # ::
  12. #
  13. # LibArchive_FOUND - true if libarchive was found
  14. # LibArchive_INCLUDE_DIRS - include search path
  15. # LibArchive_LIBRARIES - libraries to link
  16. # LibArchive_VERSION - libarchive 3-component version number
  17. find_path(LibArchive_INCLUDE_DIR
  18. NAMES archive.h
  19. PATHS
  20. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\LibArchive;InstallPath]/include"
  21. )
  22. find_library(LibArchive_LIBRARY
  23. NAMES archive libarchive
  24. PATHS
  25. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\GnuWin32\\LibArchive;InstallPath]/lib"
  26. )
  27. mark_as_advanced(LibArchive_INCLUDE_DIR LibArchive_LIBRARY)
  28. # Extract the version number from the header.
  29. if(LibArchive_INCLUDE_DIR AND EXISTS "${LibArchive_INCLUDE_DIR}/archive.h")
  30. # The version string appears in one of three known formats in the header:
  31. # #define ARCHIVE_LIBRARY_VERSION "libarchive 2.4.12"
  32. # #define ARCHIVE_VERSION_STRING "libarchive 2.8.4"
  33. # #define ARCHIVE_VERSION_ONLY_STRING "3.2.0"
  34. # Match any format.
  35. set(_LibArchive_VERSION_REGEX "^#define[ \t]+ARCHIVE[_A-Z]+VERSION[_A-Z]*[ \t]+\"(libarchive +)?([0-9]+)\\.([0-9]+)\\.([0-9]+)[^\"]*\".*$")
  36. file(STRINGS "${LibArchive_INCLUDE_DIR}/archive.h" _LibArchive_VERSION_STRING LIMIT_COUNT 1 REGEX "${_LibArchive_VERSION_REGEX}")
  37. if(_LibArchive_VERSION_STRING)
  38. string(REGEX REPLACE "${_LibArchive_VERSION_REGEX}" "\\2.\\3.\\4" LibArchive_VERSION "${_LibArchive_VERSION_STRING}")
  39. endif()
  40. unset(_LibArchive_VERSION_REGEX)
  41. unset(_LibArchive_VERSION_STRING)
  42. endif()
  43. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  44. find_package_handle_standard_args(LibArchive
  45. REQUIRED_VARS LibArchive_LIBRARY LibArchive_INCLUDE_DIR
  46. VERSION_VAR LibArchive_VERSION
  47. )
  48. unset(LIBARCHIVE_FOUND)
  49. if(LibArchive_FOUND)
  50. set(LibArchive_INCLUDE_DIRS ${LibArchive_INCLUDE_DIR})
  51. set(LibArchive_LIBRARIES ${LibArchive_LIBRARY})
  52. endif()