diff options
author | marcus <marcus@FreeBSD.org> | 2004-10-11 10:22:21 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-10-11 10:22:21 +0800 |
commit | 4f691c882385311f6cd1a98e82b2a641da68dac5 (patch) | |
tree | 3c2b7a43c7c3d3526b6d68ff33b9975cfb05a98a /net | |
parent | deea1bb15d57e5d228cd0935cb1a85739295ba75 (diff) | |
download | freebsd-ports-gnome-4f691c882385311f6cd1a98e82b2a641da68dac5.tar.gz freebsd-ports-gnome-4f691c882385311f6cd1a98e82b2a641da68dac5.tar.zst freebsd-ports-gnome-4f691c882385311f6cd1a98e82b2a641da68dac5.zip |
Fix build with bind9 in the base system.
Reported by: pointyhat via kris
Approved by: portmgr (implicit)
Diffstat (limited to 'net')
-rw-r--r-- | net/b2bua/files/patch-util::transport::UdpStack.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/b2bua/files/patch-util::transport::UdpStack.cxx b/net/b2bua/files/patch-util::transport::UdpStack.cxx new file mode 100644 index 000000000000..bab283ef1c98 --- /dev/null +++ b/net/b2bua/files/patch-util::transport::UdpStack.cxx @@ -0,0 +1,13 @@ +--- util/transport/UdpStack.cxx.orig Sun Oct 10 21:24:12 2004 ++++ util/transport/UdpStack.cxx Sun Oct 10 21:26:32 2004 +@@ -97,7 +97,10 @@ + #endif + + #ifdef __FreeBSD__ ++#include <sys/param.h> ++#if __FreeBSD_version < 503001 + #include <isc/eventlib.h> ++#endif + #endif + + #ifdef __APPLE__ |