CMake/Modules/FindXMLRPC.cmake

150 lines
4.4 KiB
CMake
Raw Normal View History

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.
2016-09-27 22:01:08 +03:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
#.rst:
# FindXMLRPC
# ----------
#
# Find xmlrpc
#
2006-10-19 20:58:05 +04:00
# Find the native XMLRPC headers and libraries.
#
# ::
#
# XMLRPC_INCLUDE_DIRS - where to find xmlrpc.h, etc.
# XMLRPC_LIBRARIES - List of libraries when using xmlrpc.
# XMLRPC_FOUND - True if xmlrpc found.
#
2006-10-19 20:58:05 +04:00
# XMLRPC modules may be specified as components for this find module.
# Modules may be listed by running "xmlrpc-c-config". Modules include:
#
# ::
#
# c++ C++ wrapper code
# libwww-client libwww-based client
# cgi-server CGI-based server
# abyss-server ABYSS-based server
#
2006-10-19 20:58:05 +04:00
# Typical usage:
#
# ::
#
# find_package(XMLRPC REQUIRED libwww-client)
2006-10-19 20:58:05 +04:00
# First find the config script from which to obtain other values.
find_program(XMLRPC_C_CONFIG NAMES xmlrpc-c-config)
2006-10-19 20:58:05 +04:00
# Check whether we found anything.
if(XMLRPC_C_CONFIG)
set(XMLRPC_FOUND 1)
else()
set(XMLRPC_FOUND 0)
endif()
2006-10-19 20:58:05 +04:00
# Lookup the include directories needed for the components requested.
if(XMLRPC_FOUND)
2006-10-19 20:58:05 +04:00
# Use the newer EXECUTE_PROCESS command if it is available.
if(COMMAND EXECUTE_PROCESS)
execute_process(
2006-10-19 20:58:05 +04:00
COMMAND ${XMLRPC_C_CONFIG} ${XMLRPC_FIND_COMPONENTS} --cflags
OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
else()
exec_program(${XMLRPC_C_CONFIG} ARGS "${XMLRPC_FIND_COMPONENTS} --cflags"
2006-10-19 20:58:05 +04:00
OUTPUT_VARIABLE XMLRPC_C_CONFIG_CFLAGS
RETURN_VALUE XMLRPC_C_CONFIG_RESULT
)
endif()
2006-10-19 20:58:05 +04:00
# Parse the include flags.
if("${XMLRPC_C_CONFIG_RESULT}" STREQUAL "0")
2006-10-19 20:58:05 +04:00
# Convert the compile flags to a CMake list.
string(REGEX REPLACE " +" ";"
2006-10-19 20:58:05 +04:00
XMLRPC_C_CONFIG_CFLAGS "${XMLRPC_C_CONFIG_CFLAGS}")
# Look for -I options.
set(XMLRPC_INCLUDE_DIRS)
foreach(flag ${XMLRPC_C_CONFIG_CFLAGS})
if("${flag}" MATCHES "^-I(.+)")
file(TO_CMAKE_PATH "${CMAKE_MATCH_1}" DIR)
list(APPEND XMLRPC_INCLUDE_DIRS "${DIR}")
endif()
endforeach()
else()
message("Error running ${XMLRPC_C_CONFIG}: [${XMLRPC_C_CONFIG_RESULT}]")
set(XMLRPC_FOUND 0)
endif()
endif()
2006-10-19 20:58:05 +04:00
# Lookup the libraries needed for the components requested.
if(XMLRPC_FOUND)
2006-10-19 20:58:05 +04:00
# Use the newer EXECUTE_PROCESS command if it is available.
if(COMMAND EXECUTE_PROCESS)
execute_process(
2006-10-19 20:58:05 +04:00
COMMAND ${XMLRPC_C_CONFIG} ${XMLRPC_FIND_COMPONENTS} --libs
OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE XMLRPC_C_CONFIG_RESULT
)
else()
exec_program(${XMLRPC_C_CONFIG} ARGS "${XMLRPC_FIND_COMPONENTS} --libs"
2006-10-19 20:58:05 +04:00
OUTPUT_VARIABLE XMLRPC_C_CONFIG_LIBS
RETURN_VALUE XMLRPC_C_CONFIG_RESULT
)
endif()
2006-10-19 20:58:05 +04:00
# Parse the library names and directories.
if("${XMLRPC_C_CONFIG_RESULT}" STREQUAL "0")
string(REGEX REPLACE " +" ";"
2006-10-19 20:58:05 +04:00
XMLRPC_C_CONFIG_LIBS "${XMLRPC_C_CONFIG_LIBS}")
# Look for -L flags for directories and -l flags for library names.
set(XMLRPC_LIBRARY_DIRS)
set(XMLRPC_LIBRARY_NAMES)
foreach(flag ${XMLRPC_C_CONFIG_LIBS})
if("${flag}" MATCHES "^-L(.+)")
file(TO_CMAKE_PATH "${CMAKE_MATCH_1}" DIR)
list(APPEND XMLRPC_LIBRARY_DIRS "${DIR}")
elseif("${flag}" MATCHES "^-l(.+)")
list(APPEND XMLRPC_LIBRARY_NAMES "${CMAKE_MATCH_1}")
endif()
endforeach()
2006-10-19 20:58:05 +04:00
# Search for each library needed using the directories given.
foreach(name ${XMLRPC_LIBRARY_NAMES})
2006-10-19 20:58:05 +04:00
# Look for this library.
find_library(XMLRPC_${name}_LIBRARY
2006-10-19 20:58:05 +04:00
NAMES ${name}
HINTS ${XMLRPC_LIBRARY_DIRS}
2006-10-19 20:58:05 +04:00
)
mark_as_advanced(XMLRPC_${name}_LIBRARY)
2006-10-19 20:58:05 +04:00
# If any library is not found then the whole package is not found.
if(NOT XMLRPC_${name}_LIBRARY)
set(XMLRPC_FOUND 0)
endif()
2006-10-19 20:58:05 +04:00
# Build an ordered list of all the libraries needed.
set(XMLRPC_LIBRARIES ${XMLRPC_LIBRARIES} "${XMLRPC_${name}_LIBRARY}")
endforeach()
else()
message("Error running ${XMLRPC_C_CONFIG}: [${XMLRPC_C_CONFIG_RESULT}]")
set(XMLRPC_FOUND 0)
endif()
endif()
2006-10-19 20:58:05 +04:00
# Report the results.
if(NOT XMLRPC_FOUND)
set(XMLRPC_DIR_MESSAGE
2006-10-19 20:58:05 +04:00
"XMLRPC was not found. Make sure the entries XMLRPC_* are set.")
if(NOT XMLRPC_FIND_QUIETLY)
message(STATUS "${XMLRPC_DIR_MESSAGE}")
else()
if(XMLRPC_FIND_REQUIRED)
message(FATAL_ERROR "${XMLRPC_DIR_MESSAGE}")
endif()
endif()
endif()