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


The following changes since commit 4b3d0a4763b440ef748d537d86f0869d09544ab2:

  src: add notes on NF_STOLEN and NF_REPEAT to documentation (2011-09-06 13:48:25 +0200)

are available in the git repository at:
  git://dev.medozas.de/libnetfilter_queue 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   |   12 ++++--------
 configure.ac |    4 +++-
 2 files changed, 7 insertions(+), 9 deletions(-)

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

* Re: libnetfilter_queue: build updates
  2011-12-17 15:36 Jan Engelhardt
@ 2011-12-27 19:03 ` Pablo Neira Ayuso
  0 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2011-12-27 19:03 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Sat, Dec 17, 2011 at 04:36:31PM +0100, Jan Engelhardt wrote:
> 
> The following changes since commit 4b3d0a4763b440ef748d537d86f0869d09544ab2:
> 
>   src: add notes on NF_STOLEN and NF_REPEAT to documentation (2011-09-06 13:48:25 +0200)
> 
> are available in the git repository at:
>   git://dev.medozas.de/libnetfilter_queue 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   |   12 ++++--------
>  configure.ac |    4 +++-
>  2 files changed, 7 insertions(+), 9 deletions(-)

Applued, thanks.

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

* libnetfilter_queue: build updates
@ 2012-06-25 18:35 Jan Engelhardt
  2012-06-25 18:35 ` [PATCH 1/2] build: remove unnecessary AC_EXEEXT Jan Engelhardt
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:35 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel


The following changes since commit 08058418ac34c2456c9d010a99e4420dbe5c885f:

  build: bump version to 1.0.1 (2012-01-02 22:49:47 +0100)

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

Jan Engelhardt (2):
      build: remove unnecessary AC_EXEEXT
      build: remove unused lines in Makefile.am

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

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

* [PATCH 1/2] build: remove unnecessary AC_EXEEXT
  2012-06-25 18:35 libnetfilter_queue: build updates Jan Engelhardt
@ 2012-06-25 18:35 ` Jan Engelhardt
  2012-06-25 18:35 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
  2012-06-26 14:52 ` libnetfilter_queue: build updates Pablo Neira Ayuso
  2 siblings, 0 replies; 6+ messages in thread
From: Jan Engelhardt @ 2012-06-25 18:35 UTC (permalink / raw)
  To: pablo; +Cc: netfilter-devel

From: Jan Engelhardt <jengelh@medozas.de>

The result of AC_EXEEXT is never used -- there is no ${EXEEXT} to be
found in the Makefiles.

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 588c9c0..4f17aee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,6 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 AC_PROG_CC
 AM_PROG_CC_C_O
-AC_EXEEXT
 AC_DISABLE_STATIC
 AM_PROG_LIBTOOL
 AC_PROG_INSTALL
-- 
1.7.7


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

* [PATCH 2/2] build: remove unused lines in Makefile.am
  2012-06-25 18:35 libnetfilter_queue: build updates Jan Engelhardt
  2012-06-25 18:35 ` [PATCH 1/2] build: remove unnecessary AC_EXEEXT Jan Engelhardt
@ 2012-06-25 18:35 ` Jan Engelhardt
  2012-06-26 14:52 ` libnetfilter_queue: build updates Pablo Neira Ayuso
  2 siblings, 0 replies; 6+ 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] 6+ messages in thread

* Re: libnetfilter_queue: build updates
  2012-06-25 18:35 libnetfilter_queue: build updates Jan Engelhardt
  2012-06-25 18:35 ` [PATCH 1/2] build: remove unnecessary AC_EXEEXT Jan Engelhardt
  2012-06-25 18:35 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
@ 2012-06-26 14:52 ` Pablo Neira Ayuso
  2 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2012-06-26 14:52 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel

On Mon, Jun 25, 2012 at 08:35:50PM +0200, Jan Engelhardt wrote:
> 
> The following changes since commit 08058418ac34c2456c9d010a99e4420dbe5c885f:
> 
>   build: bump version to 1.0.1 (2012-01-02 22:49:47 +0100)
> 
> are available in the git repository at:
>   git://git.inai.de/libnetfilter_queue master

Pulled, thanks.

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

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

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-25 18:35 libnetfilter_queue: build updates Jan Engelhardt
2012-06-25 18:35 ` [PATCH 1/2] build: remove unnecessary AC_EXEEXT Jan Engelhardt
2012-06-25 18:35 ` [PATCH 2/2] build: remove unused lines in Makefile.am Jan Engelhardt
2012-06-26 14:52 ` libnetfilter_queue: build updates Pablo Neira Ayuso
  -- strict thread matches above, loose matches on Subject: below --
2011-12-17 15:36 Jan Engelhardt
2011-12-27 19:03 ` 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).