From a89aa806371095580e77ccaf5c25497739d60f40 Mon Sep 17 00:00:00 2001 From: "Peter A. Bigot" Date: Tue, 5 Aug 2014 16:39:58 -0500 Subject: [PATCH] configure.ac: remove explicit default path for libxml2 OpenEmbedded needs to cross-compile rrdtool, and historically has applied this patch locally because the implementation of EX_CHECK_ALL unconditionally added -I/usr/include. Since the correct include path is automatically provided by a successful pkg-config invocation there is no need to set it explicitly. Signed-off-by: Peter A. Bigot --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8e4a0361..4b769094 100644 --- a/configure.ac +++ b/configure.ac @@ -549,7 +549,7 @@ EX_CHECK_ALL(cairo, cairo_ps_surface_create, cairo-ps.h, EX_CHECK_ALL(pangocairo-1.0, pango_font_map_create_context, pango/pango.h, pangocairo, 1.28.4, http://ftp.gnome.org/pub/GNOME/sources/pango/1.28, "") fi -EX_CHECK_ALL(xml2, xmlParseFile, libxml/parser.h, libxml-2.0, 2.7.8, http://xmlsoft.org/downloads.html, /usr/include/libxml2) +EX_CHECK_ALL(xml2, xmlParseFile, libxml/parser.h, libxml-2.0, 2.7.8, http://xmlsoft.org/downloads.html, "") if test "$EX_CHECK_ALL_ERR" = "YES"; then AC_MSG_ERROR([Please fix the library issues listed above and try again.]) -- 2.47.2