summaryrefslogtreecommitdiff
path: root/menuselect
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2014-07-17 19:31:05 +0000
committerMatthew Jordan <mjordan@digium.com>2014-07-17 19:31:05 +0000
commit3f64ca0c04f3b0482125d99c6b9566a406af48ed (patch)
tree621fd1361b167d88735a380c8a329dade3b8a335 /menuselect
parent26c7e684eaffe2c7f08219984147b23f66c7dca5 (diff)
configure: Fix libxml2 development library dependency checking
The commit that added libxml2 support didn't fully check for the libxml2 development script in the Asterisk configure file. As a result, Asterisk could be configured, then fail on menuselect. This patch fixes it so that Asterisk should detect the libxml2 dependency failure first. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@418850 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'menuselect')
-rwxr-xr-xmenuselect/configure4
-rw-r--r--menuselect/configure.ac2
2 files changed, 3 insertions, 3 deletions
diff --git a/menuselect/configure b/menuselect/configure
index 4316ccf5f..eded6ab93 100755
--- a/menuselect/configure
+++ b/menuselect/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 418832 .
+# From configure.ac Revision: 418834 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68.
#
@@ -4685,7 +4685,7 @@ $as_echo "#define HAVE_LIBXML2 1" >>confdefs.h
if test "${PBX_LIBXML2}" != 1; then
- as_fn_error $? "coult not find required 'Libxml2' development package" "$LINENO" 5
+ as_fn_error $? "Could not find required 'Libxml2' development package" "$LINENO" 5
fi
PBX_GTK2=0
diff --git a/menuselect/configure.ac b/menuselect/configure.ac
index 516d19eb5..5989f5cd3 100644
--- a/menuselect/configure.ac
+++ b/menuselect/configure.ac
@@ -131,7 +131,7 @@ AST_EXT_TOOL_CHECK([LIBXML2], [xml2-config], , ,
[LIBXML_TEST_VERSION])
if test "${PBX_LIBXML2}" != 1; then
- AC_MSG_ERROR([coult not find required 'Libxml2' development package])
+ AC_MSG_ERROR([Could not find required 'Libxml2' development package])
fi
PBX_GTK2=0