These are improvements for the autoconf input of libosmo-sccp, and an update to .gitignore. Please integrate them, if they seem useful.
Alexander Huemer (2): libosmo-sccp: add missing AC_LANG_SOURCE for current autoconf libosmo-sccp: update .gitignore
.gitignore | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletions(-)
autoconf >=2.68 demands the body of an AC_COMPILE_IFELSE to be wrapped in an AC_LANG_SOURCE macro, otherwise outputs annoying warnings on the invocation of `autoreconf -i`. this patch follows that demand. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac index 41495fe..b16b1f3 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.3.0) saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -fvisibility=hidden " AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden]) -AC_COMPILE_IFELSE([char foo;], +AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])], [ AC_MSG_RESULT([yes]) SYMBOL_VISIBILITY="-fvisibility=hidden"], AC_MSG_RESULT([no]))
--- .gitignore | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore index 7c9cb0f..d5c4bc9 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,8 @@ tests/channel/channel_test tests/db/db_test tests/debug/debug_test tests/gsm0408/gsm0408_test +tests/m2ua/m2ua_test +tests/mtp/mtp_parse_test tests/sccp/sccp_test tests/sms/sms_test tests/timer/timer_test