aboutsummaryrefslogtreecommitdiffstats
path: root/autoconf/ast_c_define_check.m4
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-05-09 02:14:04 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-05-09 02:14:04 +0000
commit79d0cd4b17065438433ed8e95c4b70401482d0e8 (patch)
tree053a57eed4fb47a80a181651e177cb0992974680 /autoconf/ast_c_define_check.m4
parentc5c5d512610a1d6290e3248d8f5b6a9684e9158c (diff)
Cleanup a bit more by getting rid of useless version defines. Also make library detection use passed CFLAGS.
(closes issue #17309) Reported by: stuarth git-svn-id: http://svn.digium.com/svn/asterisk/trunk@262102 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'autoconf/ast_c_define_check.m4')
-rw-r--r--autoconf/ast_c_define_check.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/ast_c_define_check.m4 b/autoconf/ast_c_define_check.m4
index adf31223e..52b979110 100644
--- a/autoconf/ast_c_define_check.m4
+++ b/autoconf/ast_c_define_check.m4
@@ -23,7 +23,7 @@ AC_DEFUN([AST_C_DEFINE_CHECK],
[ AC_MSG_RESULT(yes)
PBX_$1=1
AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 headers.])
- AC_DEFINE([HAVE_$1_VERSION], $4, [Define $1 headers version])
+ m4_ifval([$4], [AC_DEFINE([HAVE_$1_VERSION], $4, [Define $1 headers version])])
],
[ AC_MSG_RESULT(no) ]
)