aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2013-12-28 23:15:01 -0800
committerPaul Eggert2013-12-28 23:15:01 -0800
commita7f7e547d6d011b895cb90ec7963fa05aa7fd21a (patch)
tree2ab73c19da683f2d9558ce78d221f1ce2381adad
parent3f9e3ef3fe78d0f28ed25a99af503ccfba38330f (diff)
downloademacs-a7f7e547d6d011b895cb90ec7963fa05aa7fd21a.tar.gz
emacs-a7f7e547d6d011b895cb90ec7963fa05aa7fd21a.zip
* configure.ac (LIBXML2_CFLAGS): Fix xcrun-related quoting problem.
Reported by YAMAMOTO Mitsuharu in: http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00995.html
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ba555fc7169..aeebb19684b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12013-12-29 Paul Eggert <eggert@cs.ucla.edu>
2
3 * configure.ac (LIBXML2_CFLAGS): Fix xcrun-related quoting problem.
4 Reported by YAMAMOTO Mitsuharu in:
5 http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00995.html
6
12013-12-28 Jan Djärv <jan.h.d@swipnet.se> 72013-12-28 Jan Djärv <jan.h.d@swipnet.se>
2 8
3 * configure.ac: Fix CC detection for xcrun case. 9 * configure.ac: Fix CC detection for xcrun case.
diff --git a/configure.ac b/configure.ac
index cf4ca9814e6..92741443fe7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3296,7 +3296,7 @@ if test "${with_xml2}" != "no"; then
3296 # Built-in libxml2 on OS X 10.8 lacks libxml-2.0.pc. 3296 # Built-in libxml2 on OS X 10.8 lacks libxml-2.0.pc.
3297 if test "${HAVE_LIBXML2}" != "yes" -a "$opsys" = "darwin"; then 3297 if test "${HAVE_LIBXML2}" != "yes" -a "$opsys" = "darwin"; then
3298 SAVE_CPPFLAGS="$CPPFLAGS" 3298 SAVE_CPPFLAGS="$CPPFLAGS"
3299 CPPFLAGS="$CPPFLAGS -I'$xcsdkdir/usr/include/libxml2'" 3299 CPPFLAGS=$CPPFLAGS' -I"$xcsdkdir"/usr/include/libxml2'
3300 AC_CHECK_HEADER(libxml/HTMLparser.h, 3300 AC_CHECK_HEADER(libxml/HTMLparser.h,
3301 [AC_CHECK_DECL(HTML_PARSE_RECOVER, HAVE_LIBXML2=yes, , 3301 [AC_CHECK_DECL(HTML_PARSE_RECOVER, HAVE_LIBXML2=yes, ,
3302 [#include <libxml/HTMLparser.h>])]) 3302 [#include <libxml/HTMLparser.h>])])