2024-07-27 17:47:56 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
|
|
|
#
|
|
|
|
###########################################################################
|
2024-08-05 02:35:13 +08:00
|
|
|
# Find the nettle library
|
2024-07-27 17:47:56 +08:00
|
|
|
#
|
2024-08-05 02:35:13 +08:00
|
|
|
# Result Variables:
|
|
|
|
#
|
|
|
|
# NETTLE_FOUND System has nettle
|
|
|
|
# NETTLE_INCLUDE_DIRS The nettle include directories
|
|
|
|
# NETTLE_LIBRARIES The nettle library names
|
|
|
|
# NETTLE_VERSION Version of nettle
|
2024-07-27 17:47:56 +08:00
|
|
|
|
2024-08-12 21:35:50 +08:00
|
|
|
if(CURL_USE_PKGCONFIG)
|
2024-07-27 17:47:56 +08:00
|
|
|
find_package(PkgConfig QUIET)
|
2024-08-05 02:35:13 +08:00
|
|
|
pkg_search_module(NETTLE "nettle")
|
2024-07-27 17:47:56 +08:00
|
|
|
endif()
|
|
|
|
|
|
|
|
if(NETTLE_FOUND)
|
|
|
|
set(NETTLE_LIBRARIES ${NETTLE_LINK_LIBRARIES})
|
|
|
|
else()
|
|
|
|
find_path(NETTLE_INCLUDE_DIR NAMES "nettle/sha2.h")
|
|
|
|
find_library(NETTLE_LIBRARY NAMES "nettle")
|
|
|
|
|
|
|
|
if(NETTLE_INCLUDE_DIR)
|
|
|
|
if(EXISTS "${NETTLE_INCLUDE_DIR}/nettle/version.h")
|
|
|
|
set(_version_regex_major "^#define[ \t]+NETTLE_VERSION_MAJOR[ \t]+([0-9]+).*")
|
|
|
|
set(_version_regex_minor "^#define[ \t]+NETTLE_VERSION_MINOR[ \t]+([0-9]+).*")
|
2024-08-13 16:45:37 +08:00
|
|
|
file(STRINGS "${NETTLE_INCLUDE_DIR}/nettle/version.h" _version_major REGEX "${_version_regex_major}")
|
|
|
|
file(STRINGS "${NETTLE_INCLUDE_DIR}/nettle/version.h" _version_minor REGEX "${_version_regex_minor}")
|
2024-07-27 17:47:56 +08:00
|
|
|
string(REGEX REPLACE "${_version_regex_major}" "\\1" _version_major "${_version_major}")
|
|
|
|
string(REGEX REPLACE "${_version_regex_minor}" "\\1" _version_minor "${_version_minor}")
|
|
|
|
unset(_version_regex_major)
|
|
|
|
unset(_version_regex_minor)
|
|
|
|
set(NETTLE_VERSION "${_version_major}.${_version_minor}")
|
|
|
|
unset(_version_major)
|
|
|
|
unset(_version_minor)
|
|
|
|
else()
|
|
|
|
set(NETTLE_VERSION "0.0")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args("nettle"
|
|
|
|
REQUIRED_VARS
|
|
|
|
NETTLE_INCLUDE_DIR
|
|
|
|
NETTLE_LIBRARY
|
2024-08-05 02:35:13 +08:00
|
|
|
VERSION_VAR
|
|
|
|
NETTLE_VERSION
|
|
|
|
)
|
2024-07-27 17:47:56 +08:00
|
|
|
|
|
|
|
if(NETTLE_FOUND)
|
|
|
|
set(NETTLE_INCLUDE_DIRS ${NETTLE_INCLUDE_DIR})
|
|
|
|
set(NETTLE_LIBRARIES ${NETTLE_LIBRARY})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
mark_as_advanced(NETTLE_INCLUDE_DIR NETTLE_LIBRARY)
|
|
|
|
endif()
|