netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* libnetfilter_log: build updates
@ 2012-06-25 18:34 Jan Engelhardt
  2012-06-25 18:34 ` [PATCH 1/2] build: remove unnecessary pkgconfig->config.status dependency Jan Engelhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:34 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit 97866a0a7482ca518bad39536c7c667bfb9604b2:

  build: bump version to 1.0.1 (2012-01-02 21:05:56 +0100)

are available in the git repository at:
  git://git.inai.de/libnetfilter_log master

Jan Engelhardt (2):
      build: remove unnecessary pkgconfig->config.status dependency
      build: remove unused lines in Makefile.am

 Make_global.am |    4 ++--
 Makefile.am    |    2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

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

* [PATCH 1/2] build: remove unnecessary pkgconfig->config.status dependency
  2012-06-25 18:34 libnetfilter_log: build updates Jan Engelhardt
@ 2012-06-25 18:34 ` Jan Engelhardt
  2012-06-25 18:34 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
  2012-06-26 14:51 ` libnetfilter_log: build updates Pablo Neira Ayuso
  2 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:34 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

The flags obtained from pkgconfig are in essence preprocessor ones.

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

diff --git a/Make_global.am b/Make_global.am
index b7dab7b..a4e9bd9 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -1,2 +1,2 @@
-AM_CPPFLAGS = -I${top_srcdir}/include
-AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS}
+AM_CPPFLAGS = -I${top_srcdir}/include ${LIBNFNETLINK_CFLAGS}
+AM_CFLAGS = -Wall
-- 
1.7.7


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

* [PATCH 2/2] build: remove unused lines in Makefile.am
  2012-06-25 18:34 libnetfilter_log: build updates Jan Engelhardt
  2012-06-25 18:34 ` [PATCH 1/2] build: remove unnecessary pkgconfig->config.status dependency Jan Engelhardt
@ 2012-06-25 18:34 ` Jan Engelhardt
  2012-06-26 14:51 ` libnetfilter_log: build updates Pablo Neira Ayuso
  2 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:34 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

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

diff --git a/Makefile.am b/Makefile.am
index b758e56..9a1cbcb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,4 @@
-AM_CPPFLAGS = -I$(top_srcdir)/include
 SUBDIRS	= include src utils
-LINKOPTS = -lnfnetlink
 
 ACLOCAL_AMFLAGS = -I m4
 
-- 
1.7.7


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

* [PATCH 2/2] build: remove unused lines in Makefile.am
  2012-06-25 18:35 libnetfilter_queue: " Jan Engelhardt
@ 2012-06-25 18:35 ` Jan Engelhardt
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:35 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

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

diff --git a/Make_global.am b/Make_global.am
index a67e104..c16cb09 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -1,2 +1,2 @@
-AM_CPPFLAGS = -I${top_srcdir}/include -I${KERNELDIR}
-AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS}
+AM_CPPFLAGS = -I${top_srcdir}/include -I${KERNELDIR} ${LIBNFNETLINK_CFLAGS}
+AM_CFLAGS = -Wall
-- 
1.7.7


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

* Re: libnetfilter_log: build updates
  2012-06-25 18:34 libnetfilter_log: build updates Jan Engelhardt
  2012-06-25 18:34 ` [PATCH 1/2] build: remove unnecessary pkgconfig->config.status dependency Jan Engelhardt
  2012-06-25 18:34 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
@ 2012-06-26 14:51 ` Pablo Neira Ayuso
  2 siblings, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2012-06-26 14:51 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Mon, Jun 25, 2012 at 08:34:43PM +0200, Jan Engelhardt wrote:
> 
> The following changes since commit 97866a0a7482ca518bad39536c7c667bfb9604b2:
> 
>   build: bump version to 1.0.1 (2012-01-02 21:05:56 +0100)
> 
> are available in the git repository at:
>   git://git.inai.de/libnetfilter_log master

pulled, thanks.

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

end of thread, other threads:[~2012-06-26 14:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-25 18:34 libnetfilter_log: build updates Jan Engelhardt
2012-06-25 18:34 ` [PATCH 1/2] build: remove unnecessary pkgconfig->config.status dependency Jan Engelhardt
2012-06-25 18:34 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
2012-06-26 14:51 ` libnetfilter_log: build updates Pablo Neira Ayuso
  -- strict thread matches above, loose matches on Subject: below --
2012-06-25 18:35 libnetfilter_queue: " Jan Engelhardt
2012-06-25 18:35 ` [PATCH 2/2] build: remove unused lines in Makefile.am 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).