add support for more refined ability to set install paths using the standard

options to configure such as --libdir, --sbindir, etc. All of the default paths
are still the same. (issue #7057, jcollie)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@28747 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-05-19 18:54:21 +00:00
parent d0c36296d2
commit 9993d14f86
5 changed files with 170 additions and 134 deletions

View File

@@ -20,17 +20,17 @@ esac
PBX_LIB$1=0
if test "${USE_$1}" != "no"; then
libdir=""
pbxlibdir=""
if test "x${$1_DIR}" != "x"; then
libdir="-L${$1_DIR}/lib"
pbxlibdir="-L${$1_DIR}/lib"
fi
AC_CHECK_LIB([$1], [$2], [:], [], ${libdir} $6)
AC_CHECK_LIB([$1], [$2], [:], [], ${pbxlibdir} $6)
if test "${ac_cv_lib_$1_$2}" = "yes"; then
$1_LIB="-l$1 $6"
$4_HEADER_FOUND="1"
if test "x${$1_DIR}" != "x"; then
$1_LIB="${libdir} ${$1_LIB}"
$1_LIB="${pbxlibdir} ${$1_LIB}"
$1_INCLUDE="-I${$1_DIR}/include"
if test "x$3" != "x" ; then
AC_CHECK_HEADER([${$1_DIR}/include/$3], [$4_HEADER_FOUND=1], [$4_HEADER_FOUND=0] )