aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-02-08 16:02:36 -0800
committerPaul Eggert2015-02-08 16:03:15 -0800
commitdb3fc07caf71b6d7a34f80333ba54ed6d67ee144 (patch)
treeb00a60733472fae8312363ac053f9a8db06270c6
parent5c20aa7486f9cb8871f40bca9ac5fee09caefca3 (diff)
downloademacs-db3fc07caf71b6d7a34f80333ba54ed6d67ee144.tar.gz
emacs-db3fc07caf71b6d7a34f80333ba54ed6d67ee144.zip
* configure.ac (HAVE_LIBXML2): Add missing comma.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ab551e1f65f..a574ac86e24 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12015-02-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 * configure.ac (HAVE_LIBXML2): Add missing comma.
4
12015-02-08 Paul Eggert <eggert@cs.ucla.edu> 52015-02-08 Paul Eggert <eggert@cs.ucla.edu>
2 6
3 Port to platforms lacking test -a and -o 7 Port to platforms lacking test -a and -o
diff --git a/configure.ac b/configure.ac
index 6a5c73eda5c..68291b8950b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3505,7 +3505,7 @@ if test "${with_xml2}" != "no"; then
3505 fi 3505 fi
3506 if test "${HAVE_LIBXML2}" = "yes"; then 3506 if test "${HAVE_LIBXML2}" = "yes"; then
3507 if test "${opsys}" != "mingw32"; then 3507 if test "${opsys}" != "mingw32"; then
3508 AC_CHECK_LIB(xml2, htmlReadMemory, HAVE_LIBXML2=yes, HAVE_LIBXML2=no 3508 AC_CHECK_LIB(xml2, htmlReadMemory, HAVE_LIBXML2=yes, HAVE_LIBXML2=no,
3509 [$LIBXML2_LIBS]) 3509 [$LIBXML2_LIBS])
3510 else 3510 else
3511 LIBXML2_LIBS="" 3511 LIBXML2_LIBS=""