diff options
author | rakuco <rakuco@FreeBSD.org> | 2014-01-06 23:34:53 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2014-01-06 23:34:53 +0800 |
commit | e32281507543f6b2d6322f88d798040250f8e422 (patch) | |
tree | 81e819f7a0f21b65b549b2866777834e96c4ed83 /net | |
parent | d5c94a445fbc33bd0d11064bc9b648b85392bb06 (diff) | |
download | freebsd-ports-gnome-e32281507543f6b2d6322f88d798040250f8e422.tar.gz freebsd-ports-gnome-e32281507543f6b2d6322f88d798040250f8e422.tar.zst freebsd-ports-gnome-e32281507543f6b2d6322f88d798040250f8e422.zip |
- Fix the build with clang/libc++.
- Support staging.
Diffstat (limited to 'net')
-rw-r--r-- | net/net6/Makefile | 3 | ||||
-rw-r--r-- | net/net6/files/patch-inc__address.hpp | 14 |
2 files changed, 15 insertions, 2 deletions
diff --git a/net/net6/Makefile b/net/net6/Makefile index 8b9c740aa626..5384123a66e5 100644 --- a/net/net6/Makefile +++ b/net/net6/Makefile @@ -15,11 +15,10 @@ LICENSE= GPLv2 LIB_DEPENDS= sigc-2.0.0:${PORTSDIR}/devel/libsigc++20 \ gnutls.26:${PORTSDIR}/security/gnutls -USES= pathfix pkgconfig +USES= pathfix pkgconfig USE_AUTOTOOLS= libtool USE_LDCONFIG= yes -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MNLS} diff --git a/net/net6/files/patch-inc__address.hpp b/net/net6/files/patch-inc__address.hpp new file mode 100644 index 000000000000..e3131760a675 --- /dev/null +++ b/net/net6/files/patch-inc__address.hpp @@ -0,0 +1,14 @@ +--- inc/address.hpp.orig 2011-09-10 17:59:50.000000000 +0300 ++++ inc/address.hpp 2014-01-06 17:32:36.000000000 +0200 +@@ -25,9 +25,10 @@ + #include <winsock2.h> + #include <ws2tcpip.h> + #else ++#include <sys/types.h> + #include <sys/socket.h> +-#include <netinet/in_systm.h> + #include <netinet/in.h> ++#include <netinet/in_systm.h> + #include <netinet/ip.h> + #endif + |