]> git.ipfire.org Git - thirdparty/asterisk.git/commit
build: Allow autoconf/ast_ext_tool_check to handle cross-compiling better.
authorGeorge Joseph <george.joseph@fairview5.com>
Fri, 20 Jun 2014 23:12:25 +0000 (23:12 +0000)
committerGeorge Joseph <george.joseph@fairview5.com>
Fri, 20 Jun 2014 23:12:25 +0000 (23:12 +0000)
commit356a1f86200bf92223a3da0d0d28aa5011609eea
tree210ae1b1d8deb8bfd0168d1ef0900c2640317201
parent46c8b1eefd10130ac77a2efbed0f65b1a38bc50b
build: Allow autoconf/ast_ext_tool_check to handle cross-compiling better.

ast_ext_tool_check.m4 isn't handling cases where a path to a package is
provided (E.G. --with-mysqlclient=/some/sysroot) and the package has a config
tool (E.G. mysql_config) and the package has its own subdirectories in include
or lib.  For example, mysql's libraries are in ${MYSQLCLIENT_DIR}/usr/lib/mysql
but ast_ext_tool_check sets MYSQLCLIENT_LIB to ${MYSQLCLIENT_DIR}/usr/lib.
libxml2 has the same problem with its includes.  They're in
${LIBXML2_DIR}/usr/include/libxml2 not directly in ${LIBXML2_DIR}/usr/include.
Both cause configure to fail and there are others in the same boat.

The problem is caused by logic in ast_ext_tool_check that overrides the result
of the config tool's --cflags and --libs options if package_DIR is set.

This patch prepends package_DIR (if specified) to the -L and -I results from
the package's config tool instead of overriding them.

A regenerated ./configure and include/asterisk/autoconfig.h.in are included
but can be regenerated by running ./bootstrap.sh at any time.

Tested by: George Joseph
Tested by: Matt Jordan
Review: https://reviewboard.asterisk.org/r/3550/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@416929 65c4cc65-6c06-0410-ace0-fbb531ad65f3
configure
include/asterisk/autoconfig.h.in