netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* libmnl: build updates
@ 2011-12-17 15:37 Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 1/4] Update .gitignore Jan Engelhardt
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:37 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit bae830bbfc10b3892d48cde9bafc6f7356f0affc:

  build: abort autogen on subcommand failure (2011-08-09 14:28:49 +0200)

are available in the git repository at:
  git://dev.medozas.de/libmnl master

Jan Engelhardt (4):
      Update .gitignore
      build: use AC_CONFIG_AUX_DIR and stash away tools
      m4: resolve autoconf-2.68 warnings
      build: disable implicit .tar.gz archive generation and use POSIX mode

 .gitignore            |   12 ++++--------
 configure.ac          |    3 ++-
 m4/gcc4_visibility.m4 |    4 ++--
 3 files changed, 8 insertions(+), 11 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] Update .gitignore
  2011-12-17 15:37 libmnl: build updates Jan Engelhardt
@ 2011-12-17 15:37 ` Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 2/4] build: use AC_CONFIG_AUX_DIR and stash away tools Jan Engelhardt
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:37 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

Only ignore these paths if they are a directory.
---
 .gitignore |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 04462c0..44f7088 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,13 +2,13 @@
 *.la
 *.lo
 *.o
-.deps
-.libs
+.deps/
+.libs/
 Makefile
 Makefile.in
 
 /aclocal.m4
-/autom4te.cache
+/autom4te.cache/
 /compile
 /config.*
 /configure
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] build: use AC_CONFIG_AUX_DIR and stash away tools
  2011-12-17 15:37 libmnl: build updates Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 1/4] Update .gitignore Jan Engelhardt
@ 2011-12-17 15:37 ` Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 3/4] m4: resolve autoconf-2.68 warnings Jan Engelhardt
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:37 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

---
 .gitignore   |    6 +-----
 configure.ac |    1 +
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/.gitignore b/.gitignore
index 44f7088..9a7d86c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,14 +9,10 @@ Makefile.in
 
 /aclocal.m4
 /autom4te.cache/
-/compile
+/build-aux/
 /config.*
 /configure
-/depcomp
-/install-sh
 /libtool
-/ltmain.sh
-/missing
 /stamp-h1
 
 /doxygen.cfg
diff --git a/configure.ac b/configure.ac
index a9fde6c..130ca75 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,7 @@
 dnl Process this file with autoconf to create configure.
 
 AC_INIT([libmnl], [1.0.1])
+AC_CONFIG_AUX_DIR([build-aux])
 AC_CANONICAL_HOST
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([config.h])
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] m4: resolve autoconf-2.68 warnings
  2011-12-17 15:37 libmnl: build updates Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 1/4] Update .gitignore Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 2/4] build: use AC_CONFIG_AUX_DIR and stash away tools Jan Engelhardt
@ 2011-12-17 15:37 ` Jan Engelhardt
  2011-12-17 15:37 ` [PATCH 4/4] build: disable implicit .tar.gz archive generation and use POSIX mode Jan Engelhardt
  2011-12-27 18:50 ` libmnl: build updates Pablo Neira Ayuso
  4 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:37 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

Newer autoconf desires proper full quoting and use of AC_LANG_SOURCE.
Import new m4 file from git://dev.medozas.de/m4_jengelh.

m4/gcc4_visibility.m4:4: CHECK_GCC_FVISIBILITY is expanded from...
configure.ac:15: the top level
configure.ac:15: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call
detected in body
---
 m4/gcc4_visibility.m4 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/m4/gcc4_visibility.m4 b/m4/gcc4_visibility.m4
index 84959f3..214d3f3 100644
--- a/m4/gcc4_visibility.m4
+++ b/m4/gcc4_visibility.m4
@@ -7,13 +7,13 @@ AC_DEFUN([CHECK_GCC_FVISIBILITY], [
 	CFLAGS="$saved_CFLAGS -fvisibility=hidden"
 	AC_CACHE_CHECK([whether compiler accepts -fvisibility=hidden],
 	  [ac_cv_fvisibility_hidden], AC_COMPILE_IFELSE(
-		AC_LANG_PROGRAM([], []),
+		[AC_LANG_SOURCE()],
 		[ac_cv_fvisibility_hidden=yes],
 		[ac_cv_fvisibility_hidden=no]
 	))
 	if test "$ac_cv_fvisibility_hidden" = "yes"; then
 		AC_DEFINE([HAVE_VISIBILITY_HIDDEN], [1],
-		  [True if compiler supports -fvisibility=hidden])
+			[True if compiler supports -fvisibility=hidden])
 		AC_SUBST([GCC_FVISIBILITY_HIDDEN], [-fvisibility=hidden])
 	fi
 	CFLAGS="$saved_CFLAGS"
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] build: disable implicit .tar.gz archive generation and use POSIX mode
  2011-12-17 15:37 libmnl: build updates Jan Engelhardt
                   ` (2 preceding siblings ...)
  2011-12-17 15:37 ` [PATCH 3/4] m4: resolve autoconf-2.68 warnings Jan Engelhardt
@ 2011-12-17 15:37 ` Jan Engelhardt
  2011-12-27 18:50 ` libmnl: build updates Pablo Neira Ayuso
  4 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:37 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

---
 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 130ca75..69173e6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ AC_CONFIG_AUX_DIR([build-aux])
 AC_CANONICAL_HOST
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([foreign dist-bzip2 1.6 subdir-objects])
+AM_INIT_AUTOMAKE([foreign tar-pax no-dist-gzip dist-bzip2 1.6 subdir-objects])
 
 AC_PROG_CC
 AM_PROG_CC_C_O
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: libmnl: build updates
  2011-12-17 15:37 libmnl: build updates Jan Engelhardt
                   ` (3 preceding siblings ...)
  2011-12-17 15:37 ` [PATCH 4/4] build: disable implicit .tar.gz archive generation and use POSIX mode Jan Engelhardt
@ 2011-12-27 18:50 ` Pablo Neira Ayuso
  4 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2011-12-27 18:50 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Sat, Dec 17, 2011 at 04:37:06PM +0100, Jan Engelhardt wrote:
> 
> The following changes since commit bae830bbfc10b3892d48cde9bafc6f7356f0affc:
> 
>   build: abort autogen on subcommand failure (2011-08-09 14:28:49 +0200)
> 
> are available in the git repository at:
>   git://dev.medozas.de/libmnl master
> 
> Jan Engelhardt (4):
>       Update .gitignore
>       build: use AC_CONFIG_AUX_DIR and stash away tools
>       m4: resolve autoconf-2.68 warnings
>       build: disable implicit .tar.gz archive generation and use POSIX mode

Pulled and pushed out, thanks Jan

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-12-27 18:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-17 15:37 libmnl: build updates Jan Engelhardt
2011-12-17 15:37 ` [PATCH 1/4] Update .gitignore Jan Engelhardt
2011-12-17 15:37 ` [PATCH 2/4] build: use AC_CONFIG_AUX_DIR and stash away tools Jan Engelhardt
2011-12-17 15:37 ` [PATCH 3/4] m4: resolve autoconf-2.68 warnings Jan Engelhardt
2011-12-17 15:37 ` [PATCH 4/4] build: disable implicit .tar.gz archive generation and use POSIX mode Jan Engelhardt
2011-12-27 18:50 ` libmnl: build updates Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).