aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-03 16:12:58 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-03 16:12:58 +0000
commit08d657b9ec52f2237bf0b5d3bd737b5a3992408b (patch)
tree983820b447bff62c71159d528620acd1f14e8dba /configure.ac
parent61b6de4e16736df453e61eead1ac1c574305e0f5 (diff)
ensure that DAHDI_INCLUDE and ZAPTEL_INCLUDE are added in all the places needed
improve AST_EXT_LIB_CHECK to accept (and remember) additional CFLAGS data like it does in trunk already (closes issue #12911) Reported by: tzafrir git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@127754 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 09368851f..4408020f1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1361,12 +1361,12 @@ fi
if test "${PBX_DAHDI}" = "1" || test "${USE_ZAPTEL}" = "no"; then
tonezone_dir="dahdi"
if test "x${DAHDI_DIR}" != "x"; then
- tonezone_extra="${tonezone_extra} -I${DAHDI_DIR}/include"
+ tonezone_extra="${tonezone_extra} ${DAHDI_INCLUDE}"
fi
else
tonezone_dir="zaptel"
if test "x${ZAPTEL_DIR}" != "x"; then
- tonezone_extra="${tonezone_extra} -I${ZAPTEL_DIR}/include"
+ tonezone_extra="${tonezone_extra} ${ZAPTEL_INCLUDE}"
fi
fi