summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-12-19 22:51:03 +0000
committerRussell Bryant <russell@russellbryant.com>2007-12-19 22:51:03 +0000
commit0e08d5e7dcaa6dc76e7291f1058684b28cb70fb0 (patch)
tree5f685fb7bafe4d96678c30f693885dc46cfe9e43 /configure.ac
parentd36381e62947e1ce3e89a098d87c6875e645b97a (diff)
Merged revisions 94077 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r94077 | russell | 2007-12-19 16:48:48 -0600 (Wed, 19 Dec 2007) | 4 lines Check for the existence of the soxmix application on the target platform and have the result available in autoconfig.h. (part of issue #11589) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@94085 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cb521f5f7..9f25e74f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -170,6 +170,11 @@ else
fi
AC_SUBST(DOWNLOAD)
+AC_CHECK_TOOL([SOXMIX], [soxmix], [:])
+if test "${SOXMIX}" != ":" ; then
+ AC_DEFINE([HAVE_SOXMIX], 1, [Define to 1 if your system has soxmix application.])
+fi
+
ACX_PTHREAD
AC_LANG(C)