1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-23 05:30:31 -04:00
ports/sysutils/pflogx/files/patch-include_LogEntry.h
Alexey Dokuchaev f1405f0ddc Unbreak the build on sparc64: it was caused by #include <net/pfvar.h> that
was conflicting with C++ headers, leading to the following errors:

  In file included from /usr/include/c++/4.2/iostream:45,
                   from ../include/XmlFileWriter.h:36,
                   from pflogx.cpp:36:
  /usr/include/c++/4.2/ostream:566:47: error: macro "flush" passed 2
  arguments, but takes just 1

This header was required before PF_* enums were moved to <netpfil/pf/pf.h>,
which applies to all supported versions of FreeBSD.  Thus, do not #include
offending and nowadays useless header file, only #include <netpfil/pf/pf.h>
(which is #included by <net/pfvar.h>) when its definitions are needed.

Tested on:	i386, amd64, powerpc, sparc64
2017-12-27 10:39:58 +00:00

10 lines
229 B
C++

--- include/LogEntry.h.orig 2006-04-16 13:43:43 UTC
+++ include/LogEntry.h
@@ -36,7 +36,6 @@
#include <sys/time.h>
#include <net/if.h>
#include <netinet/in.h>
-#include <net/pfvar.h>
#include <string>
using namespace std;