netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* libnetfilter_conntrack: build updates
@ 2011-12-17 15:35 Jan Engelhardt
  2011-12-27 18:57 ` Pablo Neira Ayuso
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Engelhardt @ 2011-12-17 15:35 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit 7843632196fd959f3f8f16f3d533c72d315a7e08:

  expect: add nfexp_send() (2011-12-08 02:06:53 +0100)

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

Jan Engelhardt (3):
      Update .gitignore
      build: use AC_CONFIG_AUX_DIR and stash away tools
      build: disable implicit .tar.gz archive generation and use POSIX mode

 .gitignore   |   11 ++++-------
 configure.ac |    4 +++-
 2 files changed, 7 insertions(+), 8 deletions(-)

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

* Re: libnetfilter_conntrack: build updates
  2011-12-17 15:35 Jan Engelhardt
@ 2011-12-27 18:57 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2011-12-27 18:57 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Sat, Dec 17, 2011 at 04:35:40PM +0100, Jan Engelhardt wrote:
> 
> The following changes since commit 7843632196fd959f3f8f16f3d533c72d315a7e08:
> 
>   expect: add nfexp_send() (2011-12-08 02:06:53 +0100)
> 
> are available in the git repository at:
>   git://dev.medozas.de/libnetfilter_conntrack master
> 
> Jan Engelhardt (3):
>       Update .gitignore
>       build: use AC_CONFIG_AUX_DIR and stash away tools
>       build: disable implicit .tar.gz archive generation and use POSIX mode
> 
>  .gitignore   |   11 ++++-------
>  configure.ac |    4 +++-
>  2 files changed, 7 insertions(+), 8 deletions(-)

Applied, thanks!

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

* libnetfilter_conntrack: build updates
@ 2012-06-25 18:25 Jan Engelhardt
  2012-06-25 18:25 ` [PATCH] build: move library flags to CPPFLAGS Jan Engelhardt
  2012-06-26 14:48 ` libnetfilter_conntrack: build updates Pablo Neira Ayuso
  0 siblings, 2 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:25 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit 7ea731b0e8582ff67ef2703e05c4a45220da538c:

  examples: add example using libmnl and the new low-level API (expectation) (2012-05-26 17:24:45 +0200)

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

Jan Engelhardt (1):
      build: move library flags to CPPFLAGS

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

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

* [PATCH] build: move library flags to CPPFLAGS
  2012-06-25 18:25 libnetfilter_conntrack: build updates Jan Engelhardt
@ 2012-06-25 18:25 ` Jan Engelhardt
  2012-06-26 14:48 ` libnetfilter_conntrack: build updates Pablo Neira Ayuso
  1 sibling, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:25 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

Because the obtained flags are essentially that (preprocessor
options).

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 557900d..e3595d2 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -4,5 +4,5 @@
 # http://sources.redhat.com/autobook/autobook/autobook_91.html
 LIBVERSION=6:0:3
 
-AM_CPPFLAGS = -I$(top_srcdir)/include
-AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS} ${LIBMNL_CFLAGS}
+AM_CPPFLAGS = -I$(top_srcdir)/include ${LIBNFNETLINK_CFLAGS} ${LIBMNL_CFLAGS}
+AM_CFLAGS = -Wall
-- 
1.7.7


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

* Re: libnetfilter_conntrack: build updates
  2012-06-25 18:25 libnetfilter_conntrack: build updates Jan Engelhardt
  2012-06-25 18:25 ` [PATCH] build: move library flags to CPPFLAGS Jan Engelhardt
@ 2012-06-26 14:48 ` Pablo Neira Ayuso
  1 sibling, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2012-06-26 14:48 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Mon, Jun 25, 2012 at 08:25:20PM +0200, Jan Engelhardt wrote:
> 
> The following changes since commit 7ea731b0e8582ff67ef2703e05c4a45220da538c:
> 
>   examples: add example using libmnl and the new low-level API (expectation) (2012-05-26 17:24:45 +0200)
> 
> are available in the git repository at:
>   git://git.inai.de/libnetfilter_conntrack master

pulled, thanks.

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

end of thread, other threads:[~2012-06-26 14:49 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:25 libnetfilter_conntrack: build updates Jan Engelhardt
2012-06-25 18:25 ` [PATCH] build: move library flags to CPPFLAGS Jan Engelhardt
2012-06-26 14:48 ` libnetfilter_conntrack: build updates Pablo Neira Ayuso
  -- strict thread matches above, loose matches on Subject: below --
2011-12-17 15:35 Jan Engelhardt
2011-12-27 18:57 ` 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).