X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=configure.ac;h=4f02052dcb3456e7876861d09ffe8ac698bb9431;hp=38eaec699f1050f7035e7b3fad83b39062a86795;hb=1c32d75c7e3e617082c9572f0e6ababc6bacc336;hpb=b5aad71a2f512277e6abd4e0ca2d6d9fdb44120a diff --git a/configure.ac b/configure.ac index 38eaec6..4f02052 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ dnl Boston, MA 02110-1301, USA. dnl This keeps being the first instruction. dnl Change the 2nd argument if the version increases dnl 1st + 2nd argument is used for distribution package name -AC_INIT(lcr, 1.11, andreas@eversberg.eu) +AC_INIT(lcr, 1.12, andreas@eversberg.eu) AC_PREREQ(2.59) AC_CONFIG_SRCDIR([main.c]) AM_CONFIG_HEADER(config.h) @@ -33,7 +33,7 @@ AM_CONFIG_HEADER(config.h) # fix warnings from autoconf + automake AC_GNU_SOURCE # AC_USE_SYSTEM_EXTENSIONS -AM_INIT_AUTOMAKE(lcr,1.11) +AM_INIT_AUTOMAKE(lcr,1.12) @@ -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