* libnetfilter_queue: build improvements
@ 2010-12-30 23:42 Jan Engelhardt
2010-12-30 23:42 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jan Engelhardt @ 2010-12-30 23:42 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
The following changes since commit e07ff761686629a3a7cf5af67f281a5b6ce4d8c5:
doc: fix wrong documentation on NFQNL_COPY_NONE (2010-12-07 10:06:21 +0100)
are available in the git repository at:
git://dev.medozas.de/libnetfilter_queue master
Jan Engelhardt (3):
build: remove unused LIBTOOL_DEPS
build: create a Make_global.am file
build: use -Wall across the entire source
Make_global.am | 2 ++
configure.ac | 2 --
src/Makefile.am | 3 +--
utils/Makefile.am | 3 +--
4 files changed, 4 insertions(+), 6 deletions(-)
create mode 100644 Make_global.am
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] build: remove unused LIBTOOL_DEPS
2010-12-30 23:42 libnetfilter_queue: build improvements Jan Engelhardt
@ 2010-12-30 23:42 ` Jan Engelhardt
2010-12-30 23:42 ` [PATCH 2/3] build: create a Make_global.am file Jan Engelhardt
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2010-12-30 23:42 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
configure.ac | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3831697..4ea53b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,8 +12,6 @@ AC_DISABLE_STATIC
AM_PROG_LIBTOOL
AC_PROG_INSTALL
-AC_SUBST(LIBTOOL_DEPS)
-
case "$host" in
*-*-linux*) ;;
*) AC_MSG_ERROR([Linux only, dude!]);;
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/3] build: create a Make_global.am file
2010-12-30 23:42 libnetfilter_queue: build improvements Jan Engelhardt
2010-12-30 23:42 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
@ 2010-12-30 23:42 ` Jan Engelhardt
2010-12-30 23:42 ` [PATCH 3/3] build: use -Wall across the entire source Jan Engelhardt
2011-01-06 2:18 ` libnetfilter_queue: build improvements Pablo Neira Ayuso
3 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2010-12-30 23:42 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
Make_global.am | 1 +
src/Makefile.am | 2 +-
utils/Makefile.am | 3 +--
3 files changed, 3 insertions(+), 3 deletions(-)
create mode 100644 Make_global.am
diff --git a/Make_global.am b/Make_global.am
new file mode 100644
index 0000000..fb31d42
--- /dev/null
+++ b/Make_global.am
@@ -0,0 +1 @@
+AM_CPPFLAGS = -I${top_srcdir}/include -I${KERNELDIR}
diff --git a/src/Makefile.am b/src/Makefile.am
index a745129..84892eb 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -20,7 +20,7 @@
#
LIBVERSION=2:0:1
-AM_CPPFLAGS = -I$(top_srcdir)/include -I${KERNELDIR}
+include ${top_srcdir}/Make_global.am
AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS}
lib_LTLIBRARIES = libnetfilter_queue.la
diff --git a/utils/Makefile.am b/utils/Makefile.am
index 1f52864..d3147e3 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -1,5 +1,4 @@
-
-AM_CPPFLAGS = -I$(top_srcdir)/include -I${KERNELDIR}
+include ${top_srcdir}/Make_global.am
check_PROGRAMS = nfqnl_test
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] build: use -Wall across the entire source
2010-12-30 23:42 libnetfilter_queue: build improvements Jan Engelhardt
2010-12-30 23:42 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
2010-12-30 23:42 ` [PATCH 2/3] build: create a Make_global.am file Jan Engelhardt
@ 2010-12-30 23:42 ` Jan Engelhardt
2011-01-06 2:18 ` libnetfilter_queue: build improvements Pablo Neira Ayuso
3 siblings, 0 replies; 5+ messages in thread
From: Jan Engelhardt @ 2010-12-30 23:42 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
Make_global.am | 1 +
src/Makefile.am | 1 -
2 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Make_global.am b/Make_global.am
index fb31d42..a67e104 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -1 +1,2 @@
AM_CPPFLAGS = -I${top_srcdir}/include -I${KERNELDIR}
+AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS}
diff --git a/src/Makefile.am b/src/Makefile.am
index 84892eb..0bd037f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,7 +21,6 @@
LIBVERSION=2:0:1
include ${top_srcdir}/Make_global.am
-AM_CFLAGS = -Wall ${LIBNFNETLINK_CFLAGS}
lib_LTLIBRARIES = libnetfilter_queue.la
--
1.7.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: libnetfilter_queue: build improvements
2010-12-30 23:42 libnetfilter_queue: build improvements Jan Engelhardt
` (2 preceding siblings ...)
2010-12-30 23:42 ` [PATCH 3/3] build: use -Wall across the entire source Jan Engelhardt
@ 2011-01-06 2:18 ` Pablo Neira Ayuso
3 siblings, 0 replies; 5+ messages in thread
From: Pablo Neira Ayuso @ 2011-01-06 2:18 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: netfilter-devel
On 31/12/10 00:42, Jan Engelhardt wrote:
> The following changes since commit e07ff761686629a3a7cf5af67f281a5b6ce4d8c5:
>
> doc: fix wrong documentation on NFQNL_COPY_NONE (2010-12-07 10:06:21 +0100)
>
> are available in the git repository at:
> git://dev.medozas.de/libnetfilter_queue master
>
> Jan Engelhardt (3):
> build: remove unused LIBTOOL_DEPS
> build: create a Make_global.am file
> build: use -Wall across the entire source
>
> Make_global.am | 2 ++
> configure.ac | 2 --
> src/Makefile.am | 3 +--
> utils/Makefile.am | 3 +--
> 4 files changed, 4 insertions(+), 6 deletions(-)
> create mode 100644 Make_global.am
Applied, thanks Jan.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-01-06 2:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-30 23:42 libnetfilter_queue: build improvements Jan Engelhardt
2010-12-30 23:42 ` [PATCH 1/3] build: remove unused LIBTOOL_DEPS Jan Engelhardt
2010-12-30 23:42 ` [PATCH 2/3] build: create a Make_global.am file Jan Engelhardt
2010-12-30 23:42 ` [PATCH 3/3] build: use -Wall across the entire source Jan Engelhardt
2011-01-06 2:18 ` libnetfilter_queue: build improvements 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).