aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-19 22:48:48 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-19 22:48:48 +0000
commit584ef75f7ae18fe3e22d7c00b1477874e24b727d (patch)
treeb986ea1c57c309908d2afa78d00c53820188df24 /configure.ac
parentb5a5889a6a776cc6a883788ded03f4ce80bfae84 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.4@94077 f38db490-d61c-443f-a65b-d21fe96a405b
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 8f1d95c0d..cc065c605 100644
--- a/configure.ac
+++ b/configure.ac
@@ -151,6 +151,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)