netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* libnfnetlink patches
@ 2011-07-30 19:11 Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-07-30 19:11 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel


The following changes since commit a82107933da41572428b8c882d77c10267cbcef9:

  src: BAD_SIZEOF (2011-06-13 19:53:17 +0200)

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

Jan Engelhardt (3):
      build: remove unused LIBTOOL_DEPS
      build: use -Wall across the entire source
      utils: resolve compiler warning

 Make_global.am  |    1 +
 configure.ac    |    1 -
 src/Makefile.am |    2 --
 utils/iftest.c  |    3 ++-
 4 files changed, 3 insertions(+), 4 deletions(-)

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

* [PATCH 1/3] build: remove unused LIBTOOL_DEPS
  2011-07-30 19:11 libnfnetlink patches Jan Engelhardt
@ 2011-07-30 19:11 ` Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 2/3] build: use -Wall across the entire source Jan Engelhardt
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-07-30 19:11 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 configure.ac |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 3d62082..dedf2f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,6 @@ AC_PROG_CC
 AC_EXEEXT
 AC_DISABLE_STATIC
 AM_PROG_LIBTOOL
-AC_SUBST(LIBTOOL_DEPS)
 
 case "$host" in 
 *-*-linux*) ;;
-- 
1.7.3.4


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

* [PATCH 2/3] build: use -Wall across the entire source
  2011-07-30 19:11 libnfnetlink patches Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
@ 2011-07-30 19:11 ` Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 3/3] utils: resolve compiler warning Jan Engelhardt
  2011-08-01  9:30 ` libnfnetlink patches Patrick McHardy
  3 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-07-30 19:11 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 Make_global.am  |    1 +
 src/Makefile.am |    2 --
 2 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/Make_global.am b/Make_global.am
index 8b406a9..f091860 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -5,3 +5,4 @@
 LIBVERSION=2:0:2
 
 AM_CPPFLAGS = -I$(top_srcdir)/include
+AM_CFLAGS = -Wall
diff --git a/src/Makefile.am b/src/Makefile.am
index e6bc7c4..d0098cc 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,7 +1,5 @@
 include $(top_srcdir)/Make_global.am
 
-AM_CFLAGS = -Wall
-
 lib_LTLIBRARIES = libnfnetlink.la
 
 libnfnetlink_la_LDFLAGS = -Wc,-nostartfiles	\
-- 
1.7.3.4


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

* [PATCH 3/3] utils: resolve compiler warning
  2011-07-30 19:11 libnfnetlink patches Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
  2011-07-30 19:11 ` [PATCH 2/3] build: use -Wall across the entire source Jan Engelhardt
@ 2011-07-30 19:11 ` Jan Engelhardt
  2011-08-01  9:30 ` libnfnetlink patches Patrick McHardy
  3 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2011-07-30 19:11 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel

iftest.c:36:1: warning: control reaches end of non-void function

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 utils/iftest.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/utils/iftest.c b/utils/iftest.c
index 2bbe3a3..523a17a 100644
--- a/utils/iftest.c
+++ b/utils/iftest.c
@@ -7,7 +7,7 @@
 
 #include <libnfnetlink/libnfnetlink.h>
 
-int main()
+int main(void)
 {
 	int i;
 	struct nlif_handle *h;
@@ -33,4 +33,5 @@ int main()
 	}
 
 	nlif_close(h);
+	return EXIT_SUCCESS;
 }
-- 
1.7.3.4


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

* Re: libnfnetlink patches
  2011-07-30 19:11 libnfnetlink patches Jan Engelhardt
                   ` (2 preceding siblings ...)
  2011-07-30 19:11 ` [PATCH 3/3] utils: resolve compiler warning Jan Engelhardt
@ 2011-08-01  9:30 ` Patrick McHardy
  3 siblings, 0 replies; 6+ messages in thread
From: Patrick McHardy @ 2011-08-01  9:30 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On 30.07.2011 21:11, Jan Engelhardt wrote:
> The following changes since commit a82107933da41572428b8c882d77c10267cbcef9:
> 
>   src: BAD_SIZEOF (2011-06-13 19:53:17 +0200)
> 
> are available in the git repository at:
>   git://dev.medozas.de/libnfnetlink master
> 
> Jan Engelhardt (3):
>       build: remove unused LIBTOOL_DEPS
>       build: use -Wall across the entire source
>       utils: resolve compiler warning

Pulled, thanks Jan.

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

* libnfnetlink patches
@ 2012-10-09 14:02 Jan Engelhardt
  0 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2012-10-09 14:02 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit 1166116e34af868bc814aea338c246e49a7a8748:

  bump version to 1.0.1 (2012-10-08 10:51:16 +0200)

are available in the git repository at:

  git://git.inai.de/libnfnetlink master

for you to fetch changes up to 97a3960000c9803f91d3a59a734d1e1aa721fcc3:

  build: resolve automake-1.12 warnings (2012-10-09 15:59:48 +0200)

----------------------------------------------------------------
Jan Engelhardt (1):
      build: resolve automake-1.12 warnings

 configure.ac |    1 +
 1 file changed, 1 insertion(+)

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

end of thread, other threads:[~2012-10-09 14:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-30 19:11 libnfnetlink patches Jan Engelhardt
2011-07-30 19:11 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
2011-07-30 19:11 ` [PATCH 2/3] build: use -Wall across the entire source Jan Engelhardt
2011-07-30 19:11 ` [PATCH 3/3] utils: resolve compiler warning Jan Engelhardt
2011-08-01  9:30 ` libnfnetlink patches Patrick McHardy
  -- strict thread matches above, loose matches on Subject: below --
2012-10-09 14:02 Jan Engelhardt

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).