netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] Fwd: Troubles compiling iptables v1.4.8
       [not found] <4BF74E78.1030805@lists.schang.net>
@ 2010-05-24  5:53 ` Jan Engelhardt
  2010-05-26 10:28   ` Patrick McHardy
  2010-05-24  5:53 ` [PATCH] utils: add missing include flags to Makefile Jan Engelhardt
  1 sibling, 1 reply; 4+ messages in thread
From: Jan Engelhardt @ 2010-05-24  5:53 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel, netfilter, netfilter


Posted in the depths of netfilter@vger, Brian Schang wrote on
2010-05-22 3:24:40:

>make[2]: Entering directory `/raida/packages/iptables/utils'
>gcc -DHAVE_CONFIG_H -I. -I..     -g -O2 -MT nfnl_osf.o -MD -MP -MF 
>.deps/nfnl_osf.Tpo -c -o nfnl_osf.o nfnl_osf.c
>nfnl_osf.c:48:36: error: linux/netfilter/xt_osf.h: No such file or directory
>
>I'm not sure where to turn next. Any insight would be appreciated.


The following changes since commit 8532c70fd182057b440b41f013d8021a95bd72b2:

  Revert "Revert "Merge branch 'iptables-next'"" (2010-05-21 12:57:23 +0200)

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

Jan Engelhardt (1):
      utils: add missing include flags to Makefile

 utils/Makefile.am |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

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

* [PATCH] utils: add missing include flags to Makefile
       [not found] <4BF74E78.1030805@lists.schang.net>
  2010-05-24  5:53 ` [patch] Fwd: Troubles compiling iptables v1.4.8 Jan Engelhardt
@ 2010-05-24  5:53 ` Jan Engelhardt
  2010-05-25  1:02   ` Brian Schang
  1 sibling, 1 reply; 4+ messages in thread
From: Jan Engelhardt @ 2010-05-24  5:53 UTC (permalink / raw)
  To: kaber; +Cc: netfilter-devel, netfilter, netfilter

Fixes this compile error:

  CC     nfnl_osf.o
nfnl_osf.c:48:36: fatal error: linux/netfilter/xt_osf.h: No such file or directory
compilation terminated.

References: http://marc.info/?l=netfilter&m=127449929621579&w=2
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
---
 utils/Makefile.am |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/utils/Makefile.am b/utils/Makefile.am
index d023b0c..79ce34b 100644
--- a/utils/Makefile.am
+++ b/utils/Makefile.am
@@ -1,5 +1,7 @@
 # -*- Makefile -*-
 
+AM_CFLAGS = ${regular_CFLAGS} -I${top_builddir}/include -I${top_srcdir}/include
+
 sbin_PROGRAMS = nfnl_osf
 pkgdata_DATA = pf.os
 
-- 
1.7.1


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

* Re: [PATCH] utils: add missing include flags to Makefile
  2010-05-24  5:53 ` [PATCH] utils: add missing include flags to Makefile Jan Engelhardt
@ 2010-05-25  1:02   ` Brian Schang
  0 siblings, 0 replies; 4+ messages in thread
From: Brian Schang @ 2010-05-25  1:02 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: kaber, netfilter-devel, netfilter

Jan:

On 5/24/2010 1:53 AM, Jan Engelhardt wrote:
> Fixes this compile error:
>
>    CC     nfnl_osf.o
> nfnl_osf.c:48:36: fatal error: linux/netfilter/xt_osf.h: No such file or directory
> compilation terminated.
>
> References: http://marc.info/?l=netfilter&m=127449929621579&w=2
> Signed-off-by: Jan Engelhardt<jengelh@medozas.de>
> ---
>   utils/Makefile.am |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/utils/Makefile.am b/utils/Makefile.am
> index d023b0c..79ce34b 100644
> --- a/utils/Makefile.am
> +++ b/utils/Makefile.am
> @@ -1,5 +1,7 @@
>   # -*- Makefile -*-
>
> +AM_CFLAGS = ${regular_CFLAGS} -I${top_builddir}/include -I${top_srcdir}/include
> +
>   sbin_PROGRAMS = nfnl_osf
>   pkgdata_DATA = pf.os

Complied and works great now. Thank you for the help! I appreciate it.

Have a great day.

-- 
Brian

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

* Re: [patch] Fwd: Troubles compiling iptables v1.4.8
  2010-05-24  5:53 ` [patch] Fwd: Troubles compiling iptables v1.4.8 Jan Engelhardt
@ 2010-05-26 10:28   ` Patrick McHardy
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick McHardy @ 2010-05-26 10:28 UTC (permalink / raw)
  To: Jan Engelhardt; +Cc: netfilter-devel, netfilter, netfilter

Jan Engelhardt wrote:
> Posted in the depths of netfilter@vger, Brian Schang wrote on
> 2010-05-22 3:24:40:
> 
>> make[2]: Entering directory `/raida/packages/iptables/utils'
>> gcc -DHAVE_CONFIG_H -I. -I..     -g -O2 -MT nfnl_osf.o -MD -MP -MF 
>> .deps/nfnl_osf.Tpo -c -o nfnl_osf.o nfnl_osf.c
>> nfnl_osf.c:48:36: error: linux/netfilter/xt_osf.h: No such file or directory
>>
>> I'm not sure where to turn next. Any insight would be appreciated.
> 
> 
> The following changes since commit 8532c70fd182057b440b41f013d8021a95bd72b2:
> 
>   Revert "Revert "Merge branch 'iptables-next'"" (2010-05-21 12:57:23 +0200)
> 
> are available in the git repository at:
>   git://dev.medozas.de/iptables master
> 
> Jan Engelhardt (1):
>       utils: add missing include flags to Makefile

Pulled, thanks Jan.

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

end of thread, other threads:[~2010-05-26 10:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <4BF74E78.1030805@lists.schang.net>
2010-05-24  5:53 ` [patch] Fwd: Troubles compiling iptables v1.4.8 Jan Engelhardt
2010-05-26 10:28   ` Patrick McHardy
2010-05-24  5:53 ` [PATCH] utils: add missing include flags to Makefile Jan Engelhardt
2010-05-25  1:02   ` Brian Schang

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).