blob: 8cadb2bbab2436a07730266ad68449d3b7989a90 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 12414304245cce6ef0e8b9547949be5109845353 Mon Sep 17 00:00:00 2001
2From: Changqing Li <changqing.li@windriver.com>
3Date: Tue, 24 Jul 2018 13:33:33 +0800
Brad Bishopd7bf8c12018-02-25 22:55:05 -05004Subject: [PATCH] cmake: Install libcares.pc
5
6Prepare and install libcares.pc file during cmake build, so libraries
7using pkg-config to find libcares will not fail.
8
9Signed-off-by: Alexey Firago <alexey_firago@mentor.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010
11update to 1.14.0, fix patch warning
12
13Signed-off-by: Changqing Li <changqing.li@windriver.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014---
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080015 CMakeLists.txt | 23 +++++++++++++++++++++++
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016 libcares.pc.cmakein | 20 ++++++++++++++++++++
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080017 2 files changed, 43 insertions(+)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018 create mode 100644 libcares.pc.cmakein
19
20diff --git a/CMakeLists.txt b/CMakeLists.txt
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021index 60a880c..71eaa53 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050022--- a/CMakeLists.txt
23+++ b/CMakeLists.txt
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080024@@ -193,22 +193,30 @@ ADD_DEFINITIONS(${SYSFLAGS})
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025
26
27 # Tell C-Ares about libraries to depend on
28+# Also pass these libraries to pkg-config file
29+SET(CARES_PRIVATE_LIBS_LIST)
30 IF (HAVE_LIBRESOLV)
31 LIST (APPEND CARES_DEPENDENT_LIBS resolv)
32+ LIST (APPEND CARES_PRIVATE_LIBS_LIST "-lresolv")
33 ENDIF ()
34 IF (HAVE_LIBNSL)
35 LIST (APPEND CARES_DEPENDENT_LIBS nsl)
36+ LIST (APPEND CARES_PRIVATE_LIBS_LIST "-lnsl")
37 ENDIF ()
38 IF (HAVE_LIBSOCKET)
39 LIST (APPEND CARES_DEPENDENT_LIBS socket)
40+ LIST (APPEND CARES_PRIVATE_LIBS_LIST "-lsocket")
41 ENDIF ()
42 IF (HAVE_LIBRT)
43 LIST (APPEND CARES_DEPENDENT_LIBS rt)
44+ LIST (APPEND CARES_PRIVATE_LIBS_LIST "-lrt")
45 ENDIF ()
46 IF (WIN32)
47 LIST (APPEND CARES_DEPENDENT_LIBS ws2_32)
48+ LIST (APPEND CARES_PRIVATE_LIBS_LIST "-lws2_32")
49 ENDIF ()
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080050
Brad Bishopd7bf8c12018-02-25 22:55:05 -050051+string (REPLACE ";" " " CARES_PRIVATE_LIBS "${CARES_PRIVATE_LIBS_LIST}")
52
Brad Bishopd7bf8c12018-02-25 22:55:05 -050053 # When checking for symbols, we need to make sure we set the proper
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080054 # headers, libraries, and definitions for the detection to work properly
55@@ -514,6 +522,15 @@ CONFIGURE_FILE (ares_build.h.cmake ${PROJECT_BINARY_DIR}/ares_build.h)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050056 # Write ares_config.h configuration file. This is used only for the build.
57 CONFIGURE_FILE (ares_config.h.cmake ${PROJECT_BINARY_DIR}/ares_config.h)
58
59+# Pass required CFLAGS to pkg-config in case of static library
60+IF (CARES_STATIC)
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080061+ SET (CPPFLAG_CARES_STATICLIB "-DCARES_STATICLIB")
Brad Bishopd7bf8c12018-02-25 22:55:05 -050062+ENDIF()
63+
64+# Write ares_config.h configuration file. This is used only for the build.
65+CONFIGURE_FILE (libcares.pc.cmakein ${PROJECT_BINARY_DIR}/libcares.pc @ONLY)
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080066+
67+
Brad Bishopd7bf8c12018-02-25 22:55:05 -050068
69 # TRANSFORM_MAKEFILE_INC
70 #
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080071@@ -664,6 +681,12 @@ IF (CARES_INSTALL)
72 INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcares.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
Brad Bishopd7bf8c12018-02-25 22:55:05 -050073 ENDIF ()
74
75+# pkg-config file
76+IF (CARES_INSTALL)
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080077+ SET (PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
78+ INSTALL (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcares.pc" DESTINATION ${PKGCONFIG_INSTALL_DIR})
Brad Bishopd7bf8c12018-02-25 22:55:05 -050079+ENDIF ()
80+
81 # Legacy chain-building variables (provided for compatibility with old code).
82 # Don't use these, external code should be updated to refer to the aliases directly (e.g., Cares::cares).
83 SET (CARES_FOUND 1 CACHE INTERNAL "CARES LIBRARY FOUND")
84diff --git a/libcares.pc.cmakein b/libcares.pc.cmakein
85new file mode 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080086index 0000000..3579256
Brad Bishopd7bf8c12018-02-25 22:55:05 -050087--- /dev/null
88+++ b/libcares.pc.cmakein
89@@ -0,0 +1,20 @@
90+#***************************************************************************
91+# Project ___ __ _ _ __ ___ ___
92+# / __|____ / _` | '__/ _ \/ __|
93+# | (_|_____| (_| | | | __/\__ \
94+# \___| \__,_|_| \___||___/
95+#
96+prefix=@CMAKE_INSTALL_PREFIX@
97+exec_prefix=@CMAKE_INSTALL_PREFIX@
98+libdir=@CMAKE_INSTALL_FULL_LIBDIR@
99+includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
100+
101+Name: c-ares
102+URL: http://daniel.haxx.se/projects/c-ares/
103+Description: asynchronous DNS lookup library
104+Version: @VERSION@
105+Requires:
106+Requires.private:
107+Cflags: -I${includedir} @CPPFLAG_CARES_STATICLIB@
108+Libs: -L${libdir} -lcares
109+Libs.private: @CARES_PRIVATE_LIBS@
110--
1112.7.4
112