From: Janis Ruksans Date: Thu, 28 Jun 2012 05:59:48 +0000 (+0200) Subject: Use AC_CHECK_TYPE and correct quoting for Asterisk struct checks, and add X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=1c32d75c7e3e617082c9572f0e6ababc6bacc336;hp=14da759465d6597908f27a31ec14eda3d5a47520 Use AC_CHECK_TYPE and correct quoting for Asterisk struct checks, and add case for ind_tone_zone_sound (Asterisk 1.6.0). Signed-off-by: Andreas Eversberg --- diff --git a/chan_lcr.c b/chan_lcr.c index a2951ae..2903243 100644 --- a/chan_lcr.c +++ b/chan_lcr.c @@ -2948,7 +2948,7 @@ static int lcr_indicate(struct ast_channel *ast, int cond, const void *data, siz union parameter newparam; int res = 0; struct chan_call *call; - const struct tone_zone_sound *ts = NULL; + const struct ast_tone_zone_sound *ts = NULL; ast_mutex_lock(&chan_lock); #if ASTERISK_VERSION_NUM < 110000 diff --git a/configure.ac b/configure.ac index 697a778..4f02052 100644 --- a/configure.ac +++ b/configure.ac @@ -90,60 +90,45 @@ AS_IF([test "x$with_asterisk" != xno], ]) if test "x$with_asterisk" = "xyes"; then + dnl detect whether asterisk/indications.h defines ast_tone_zone_sound (1.6.2 + dnl and later), ind_tone_zone_sound (1.6.0) or tone_zone_sound (1.4) ast_tone_zone_sound= + apc_test_result= ast_1_8_or_higher= - AC_MSG_CHECKING([for struct tone_zone_sound in asterisk/indications.h]) - tzs_test_result=no - AC_COMPILE_IFELSE([ - AC_LANG_PROGRAM( - [[#include ], - [#include ], - [#include ]], - [[struct tone_zone_sound * ts = NULL; (void) ts->data;]])], - [tzs_test_result=yes]) - AC_MSG_RESULT([$tzs_test_result]) - - if test "x$tzs_test_result" = "xyes"; then - ast_tone_zone_sound=tone_zone_sound - fi - - if test "x$ast_tone_zone_sound" = "x"; then - AC_MSG_CHECKING([for struct ast_tone_zone_sound in asterisk/indications.h]) - tzs_test_result=no - AC_COMPILE_IFELSE([ - AC_LANG_PROGRAM( - [[#include ], - [#include ], - [#include ]], - [[struct ast_tone_zone_sound * ts = NULL; (void) ts->name;]])], - [tzs_test_result=yes]) - AC_MSG_RESULT([$tzs_test_result]) - - if test "x$tzs_test_result" = "xyes"; then - ast_tone_zone_sound=ast_tone_zone_sound - fi - fi + AC_CHECK_TYPE([struct ast_tone_zone_sound], + [ast_tone_zone_sound=ast_tone_zone_sound], [], [ +#include +#include +#include ]) + + AS_IF([test "x$ast_tone_zone_sound" = "x"], + [AC_CHECK_TYPE([struct ind_tone_zone_sound], + [ast_tone_zone_sound=ind_tone_zone_sound], [], [ +#include +#include +#include ])]) + AS_IF([test "x$ast_tone_zone_sound" = "x"], + [AC_CHECK_TYPE([struct tone_zone_sound], + [ast_tone_zone_sound=tone_zone_sound], [], [ +#include +#include ])]) if test "x$ast_tone_zone_sound" = "x"; then AC_MSG_FAILURE([No ast_tone_zone_sound, confused...]) fi - AC_MSG_CHECKING([for struct ast_party_caller in asterisk/channel.h]) - apc_test_result=no - AC_COMPILE_IFELSE([ - AC_LANG_PROGRAM( - [[#include ], - [#include ]], - [[struct ast_party_caller * caller = NULL; (void) caller->id;]])], - [apc_test_result=yes]) - AC_MSG_RESULT([$apc_test_result]) + + AC_CHECK_TYPE([struct ast_party_caller], + [apc_test_result=yes], [], [ +#include +#include ]) if test "x$apc_test_result" = "xyes"; then ast_1_8_or_higher="-DAST_1_8_OR_HIGHER" fi - AST_CFLAGS="-Dtone_zone_sound=$ast_tone_zone_sound $ast_1_8_or_higher" + AST_CFLAGS="-Dast_tone_zone_sound=$ast_tone_zone_sound $ast_1_8_or_higher" AC_SUBST([AST_CFLAGS]) fi