* libnetfilter_log: build updates
@ 2011-12-17 15:36 Jan Engelhardt
2011-12-27 18:58 ` 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 253172652d9f91f47b3bef79499d7994a9997f7f:
build: fix error with automake-1.9 (2011-08-01 20:00:02 +0200)
are available in the git repository at:
git://dev.medozas.de/libnetfilter_log 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 | 5 +++--
2 files changed, 7 insertions(+), 10 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: libnetfilter_log: build updates
2011-12-17 15:36 Jan Engelhardt
@ 2011-12-27 18:58 ` Pablo Neira Ayuso
0 siblings, 0 replies; 6+ messages in thread
From: Pablo Neira Ayuso @ 2011-12-27 18:58 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: netfilter-devel
On Sat, Dec 17, 2011 at 04:36:08PM +0100, Jan Engelhardt wrote:
>
> The following changes since commit 253172652d9f91f47b3bef79499d7994a9997f7f:
>
> build: fix error with automake-1.9 (2011-08-01 20:00:02 +0200)
>
> are available in the git repository at:
> git://dev.medozas.de/libnetfilter_log 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 | 5 +++--
> 2 files changed, 7 insertions(+), 10 deletions(-)
Applied, thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
* 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ 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; 6+ 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] 6+ messages in thread
end of thread, other threads:[~2012-06-26 14:51 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: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 --
2011-12-17 15:36 Jan Engelhardt
2011-12-27 18:58 ` 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).