summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2007-07-07 16:44:57 +0000
committerSteve Murphy <murf@digium.com>2007-07-07 16:44:57 +0000
commit1827bcba77c54a2c7b9879f959be73a5c9a9a5a1 (patch)
treee65c44deb1fb71bdd439f2f0931abe2fc11f8749 /configure.ac
parent1da115c8d997bd60b5e31a89e8d79ea8fc775e79 (diff)
These changes fix 10145 and 10150, a prob with BSD and exp2/log2 not existing, as well as the bootstrap needing a small upgrade for openbsd. Many thanks to mvanbaak
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@73821 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 4000f022d..d223ca179 100644
--- a/configure.ac
+++ b/configure.ac
@@ -374,6 +374,10 @@ if test "x${host_os}" = "xlinux-gnu" ; then
AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
fi
+# BSD might not have exp2, and/or log2
+AST_EXT_LIB_CHECK([EXP2], [m], [exp2])
+AST_EXT_LIB_CHECK([LOG2], [m], [log2])
+
GSM_INTERNAL="yes"
AC_SUBST(GSM_INTERNAL)
GSM_SYSTEM="yes"