* libnetfilter_acct: build updates
@ 2011-12-29 21:24 Jan Engelhardt
2011-12-29 21:24 ` [PATCH 1/5] build: enable automake warnings Jan Engelhardt
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
The following changes since commit dc5ae69f1cff7f9001187f7c630597f670137f06:
update .gitignore file (2011-12-29 19:37:47 +0100)
are available in the git repository at:
git://dev.medozas.de/libnetfilter_acct master
Jan Engelhardt (5):
build: enable automake warnings
build: remove unnecessary AC_EXEEXT
Update .gitignore
Add examples/.gitignore
build: add missing LIBMNL_CFLAGS to compilation process
.gitignore | 6 +++---
Make_global.am | 2 +-
configure.ac | 4 ++--
examples/.gitignore | 3 +++
4 files changed, 9 insertions(+), 6 deletions(-)
create mode 100644 examples/.gitignore
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/5] build: enable automake warnings
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
@ 2011-12-29 21:24 ` Jan Engelhardt
2011-12-29 21:24 ` [PATCH 2/5] build: remove unnecessary AC_EXEEXT Jan Engelhardt
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
configure.ac | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 62322c6..98d163c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,8 @@ AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
-AM_INIT_AUTOMAKE([foreign tar-pax no-dist-gzip dist-bzip2 1.6 subdir-objects])
+AM_INIT_AUTOMAKE([-Wall foreign tar-pax no-dist-gzip dist-bzip2
+ 1.6 subdir-objects])
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/5] build: remove unnecessary AC_EXEEXT
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
2011-12-29 21:24 ` [PATCH 1/5] build: enable automake warnings Jan Engelhardt
@ 2011-12-29 21:24 ` Jan Engelhardt
2011-12-29 21:24 ` [PATCH 3/5] Update .gitignore Jan Engelhardt
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
${EXEEXT} is nowhere used in Makefiles.
---
configure.ac | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 98d163c..56c033b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,6 @@ PKG_CHECK_MODULES([LIBMNL], [libmnl >= 1.0.0])
AC_PROG_CC
AM_PROG_CC_C_O
-AC_EXEEXT
AC_DISABLE_STATIC
LT_INIT
CHECK_GCC_FVISIBILITY
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 3/5] Update .gitignore
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
2011-12-29 21:24 ` [PATCH 1/5] build: enable automake warnings Jan Engelhardt
2011-12-29 21:24 ` [PATCH 2/5] build: remove unnecessary AC_EXEEXT Jan Engelhardt
@ 2011-12-29 21:24 ` Jan Engelhardt
2011-12-29 21:24 ` [PATCH 4/5] Add examples/.gitignore Jan Engelhardt
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Only ignore these paths if they are a directory.
---
.gitignore | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
index 1c00b39..ddc214f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,13 +2,13 @@
*.la
*.lo
*.o
-.deps
-.libs
+.deps/
+.libs/
Makefile
Makefile.in
/aclocal.m4
-/autom4te.cache
+/autom4te.cache/
/build-aux/
/config.*
/configure
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 4/5] Add examples/.gitignore
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
` (2 preceding siblings ...)
2011-12-29 21:24 ` [PATCH 3/5] Update .gitignore Jan Engelhardt
@ 2011-12-29 21:24 ` Jan Engelhardt
2011-12-29 21:24 ` [PATCH 5/5] build: add missing LIBMNL_CFLAGS to compilation process Jan Engelhardt
2011-12-29 23:39 ` libnetfilter_acct: build updates Pablo Neira Ayuso
5 siblings, 0 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
---
examples/.gitignore | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
create mode 100644 examples/.gitignore
diff --git a/examples/.gitignore b/examples/.gitignore
new file mode 100644
index 0000000..12c9223
--- /dev/null
+++ b/examples/.gitignore
@@ -0,0 +1,3 @@
+/nfacct-add
+/nfacct-del
+/nfacct-get
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 5/5] build: add missing LIBMNL_CFLAGS to compilation process
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
` (3 preceding siblings ...)
2011-12-29 21:24 ` [PATCH 4/5] Add examples/.gitignore Jan Engelhardt
@ 2011-12-29 21:24 ` Jan Engelhardt
2011-12-29 23:39 ` libnetfilter_acct: build updates Pablo Neira Ayuso
5 siblings, 0 replies; 7+ messages in thread
From: Jan Engelhardt @ 2011-12-29 21:24 UTC (permalink / raw)
To: pablo; +Cc: netfilter-devel
Otherwise, the preprocessor may fail to find libmnl if it is not in a
standard-searched directory.
---
Make_global.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Make_global.am b/Make_global.am
index caab49a..1654f10 100644
--- a/Make_global.am
+++ b/Make_global.am
@@ -20,5 +20,5 @@
#
LIBVERSION=0:0:0
-AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_srcdir}/include
+AM_CPPFLAGS = ${regular_CPPFLAGS} -I${top_srcdir}/include ${LIBMNL_CFLAGS}
AM_CFLAGS = ${regular_CFLAGS} ${GCC_FVISIBILITY_HIDDEN}
--
1.7.3.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: libnetfilter_acct: build updates
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
` (4 preceding siblings ...)
2011-12-29 21:24 ` [PATCH 5/5] build: add missing LIBMNL_CFLAGS to compilation process Jan Engelhardt
@ 2011-12-29 23:39 ` Pablo Neira Ayuso
5 siblings, 0 replies; 7+ messages in thread
From: Pablo Neira Ayuso @ 2011-12-29 23:39 UTC (permalink / raw)
To: Jan Engelhardt; +Cc: netfilter-devel
On Thu, Dec 29, 2011 at 10:24:45PM +0100, Jan Engelhardt wrote:
>
> The following changes since commit dc5ae69f1cff7f9001187f7c630597f670137f06:
>
> update .gitignore file (2011-12-29 19:37:47 +0100)
>
> are available in the git repository at:
> git://dev.medozas.de/libnetfilter_acct master
Pulled, thanks Jan!
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-12-29 23:39 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-29 21:24 libnetfilter_acct: build updates Jan Engelhardt
2011-12-29 21:24 ` [PATCH 1/5] build: enable automake warnings Jan Engelhardt
2011-12-29 21:24 ` [PATCH 2/5] build: remove unnecessary AC_EXEEXT Jan Engelhardt
2011-12-29 21:24 ` [PATCH 3/5] Update .gitignore Jan Engelhardt
2011-12-29 21:24 ` [PATCH 4/5] Add examples/.gitignore Jan Engelhardt
2011-12-29 21:24 ` [PATCH 5/5] build: add missing LIBMNL_CFLAGS to compilation process Jan Engelhardt
2011-12-29 23:39 ` libnetfilter_acct: build updates 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).