mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
package/c-ares: fix install
c-ares 1.17.0 removed install of ares_dns.h which will result in build
failures with libeXosip and resiprocate
Fixes:
- http://autobuild.buildroot.org/results/51573434303118fd92f32819e038971edee8bc28
- http://autobuild.buildroot.org/results/cbf158f0c037d44ef293a8804d18c84e3b731059
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit b359d0e7e5)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
fa4716cba0
commit
9d84300d6f
@@ -0,0 +1,37 @@
|
|||||||
|
From e2180d95fb67f57b6ffba01fefb4844a1ca4f792 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
|
Date: Wed, 18 Nov 2020 08:12:45 +0100
|
||||||
|
Subject: [PATCH] src/lib/Makefile.am: install ares_dns.h
|
||||||
|
|
||||||
|
This will avoid the following build failure with resiprocate:
|
||||||
|
|
||||||
|
In file included from dns/DnsCnameRecord.cxx:7:
|
||||||
|
dns/AresCompat.hxx:5:10: fatal error: ares_dns.h: No such file or directory
|
||||||
|
#include "ares_dns.h"
|
||||||
|
^~~~~~~~~~~~
|
||||||
|
|
||||||
|
Fixes:
|
||||||
|
- http://autobuild.buildroot.org/results/cbf158f0c037d44ef293a8804d18c84e3b731059
|
||||||
|
|
||||||
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||||
|
[Upstream status: https://github.com/c-ares/c-ares/pull/376]
|
||||||
|
---
|
||||||
|
src/lib/Makefile.am | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
|
||||||
|
index c918667..92a4152 100644
|
||||||
|
--- a/src/lib/Makefile.am
|
||||||
|
+++ b/src/lib/Makefile.am
|
||||||
|
@@ -14,6 +14,8 @@ lib_LTLIBRARIES = libcares.la
|
||||||
|
|
||||||
|
man_MANS = $(MANPAGES)
|
||||||
|
|
||||||
|
+include_HEADERS = ares_dns.h
|
||||||
|
+
|
||||||
|
# adig and ahost are just sample programs and thus not mentioned with the
|
||||||
|
# regular sources and headers
|
||||||
|
EXTRA_DIST = Makefile.inc config-win32.h CMakeLists.txt \
|
||||||
|
--
|
||||||
|
2.29.2
|
||||||
|
|
||||||
@@ -10,6 +10,8 @@ C_ARES_INSTALL_STAGING = YES
|
|||||||
C_ARES_CONF_OPTS = --with-random=/dev/urandom
|
C_ARES_CONF_OPTS = --with-random=/dev/urandom
|
||||||
C_ARES_LICENSE = MIT
|
C_ARES_LICENSE = MIT
|
||||||
C_ARES_LICENSE_FILES = LICENSE.md
|
C_ARES_LICENSE_FILES = LICENSE.md
|
||||||
|
# We're patching src/lib/Makefile.am
|
||||||
|
C_ARES_AUTORECONF = YES
|
||||||
|
|
||||||
$(eval $(autotools-package))
|
$(eval $(autotools-package))
|
||||||
$(eval $(host-autotools-package))
|
$(eval $(host-autotools-package))
|
||||||
|
|||||||
Reference in New Issue
Block a user