These are improvements for the autoconf input of libosmocore. Please integrate them, if they seem useful.
Alexander Huemer (2): libosmocore: add missing AC_LANG_SOURCE for current autoconf libosmocore: rename configure.in -> configure.ac
configure.in => configure.ac | 2 +- 1 files changed, 1 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.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.in b/configure.in index 2e22bb2..b923a21 100644 --- a/configure.in +++ b/configure.in @@ -24,7 +24,7 @@ AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h) 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]))
rename autoconf input file to align with osmocom-bb host applications, and because that suffix is preferred nowadays. --- configure.in => configure.ac | 0 1 files changed, 0 insertions(+), 0 deletions(-) rename configure.in => configure.ac (100%)
diff --git a/configure.in b/configure.ac similarity index 100% rename from configure.in rename to configure.ac
On Tue, May 24, 2011 at 03:16:12PM +0200, Alexander Huemer wrote:
These are improvements for the autoconf input of libosmocore. Please integrate them, if they seem useful.
thanks, I've just merged them. I'll also merge the openbsc and libosmo-sccp related patches.