From 20229139b5fc715392d6ea39bb9648d13b6a05cd Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Fri, 13 Jun 2008 17:36:56 +0000 Subject: [PATCH] (closes issue #12846) Reported by: Netview Tested by: jpeeler Use correct location to search for tonezone. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@122613 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- configure | 4 ++-- configure.ac | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 8f3bce1a39..c992e24a54 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Revision: 121802 . +# From configure.ac Revision: 122314 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for asterisk 1.4. # @@ -32918,7 +32918,7 @@ if test "${host_os}" != "linux-gnu" ; then tonezone_extra="-lm" fi -if test "${USE_DAHDI}" != "no" ; then +if test "${PBX_DAHDI}" = "1" || test "${USE_ZAPTEL}" = "no"; then tonezone_dir="dahdi" else tonezone_dir="zaptel" diff --git a/configure.ac b/configure.ac index f8548b7565..79ebbe8edc 100644 --- a/configure.ac +++ b/configure.ac @@ -1358,7 +1358,7 @@ if test "${host_os}" != "linux-gnu" ; then tonezone_extra="-lm" fi -if test "${USE_DAHDI}" != "no" ; then +if test "${PBX_DAHDI}" = "1" || test "${USE_ZAPTEL}" = "no"; then tonezone_dir="dahdi" else tonezone_dir="zaptel" -- 2.47.3