summaryrefslogtreecommitdiff
path: root/main/ast_expr2.y
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 /main/ast_expr2.y
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 'main/ast_expr2.y')
-rw-r--r--main/ast_expr2.y12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/ast_expr2.y b/main/ast_expr2.y
index 89baf91bd..126a02856 100644
--- a/main/ast_expr2.y
+++ b/main/ast_expr2.y
@@ -41,9 +41,13 @@
#define FUNC_RINT rintl
#define FUNC_TRUNC truncl
#define FUNC_EXP expl
+#ifdef HAVE_EXP2
#define FUNC_EXP2 exp2l
+#endif
#define FUNC_LOG logl
+#ifdef HAVE_LOG2
#define FUNC_LOG2 log2l
+#endif
#define FUNC_LOG10 log10l
#define FUNC_REMAINDER remainderl
#else
@@ -66,9 +70,13 @@
#define FUNC_RINT rint
#define FUNC_TRUNC trunc
#define FUNC_EXP exp
+#ifdef HAVE_EXP2
#define FUNC_EXP2 exp2
+#endif
#define FUNC_LOG log
+#ifdef HAVE_LOG2
#define FUNC_LOG2 log2
+#endif
#define FUNC_LOG10 log10
#define FUNC_REMAINDER remainder
#endif
@@ -803,6 +811,7 @@ static struct val *op_func(struct val *funcname, struct expr_node *arglist, stru
ast_log(LOG_WARNING,"Wrong args to %s() function\n",funcname->u.s);
return make_number(0.0);
}
+#ifdef HAVE_EXP2
} else if (strcmp(funcname->u.s,"EXP2") == 0) {
if (arglist && !arglist->right && arglist->val){
to_number(arglist->val);
@@ -812,6 +821,7 @@ static struct val *op_func(struct val *funcname, struct expr_node *arglist, stru
ast_log(LOG_WARNING,"Wrong args to %s() function\n",funcname->u.s);
return make_number(0.0);
}
+#endif
} else if (strcmp(funcname->u.s,"LOG") == 0) {
if (arglist && !arglist->right && arglist->val){
to_number(arglist->val);
@@ -821,6 +831,7 @@ static struct val *op_func(struct val *funcname, struct expr_node *arglist, stru
ast_log(LOG_WARNING,"Wrong args to %s() function\n",funcname->u.s);
return make_number(0.0);
}
+#ifdef HAVE_LOG2
} else if (strcmp(funcname->u.s,"LOG2") == 0) {
if (arglist && !arglist->right && arglist->val){
to_number(arglist->val);
@@ -830,6 +841,7 @@ static struct val *op_func(struct val *funcname, struct expr_node *arglist, stru
ast_log(LOG_WARNING,"Wrong args to %s() function\n",funcname->u.s);
return make_number(0.0);
}
+#endif
} else if (strcmp(funcname->u.s,"LOG10") == 0) {
if (arglist && !arglist->right && arglist->val){
to_number(arglist->val);