Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jan 2014 15:34:54 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r338899 - in head/net/net6: . files
Message-ID:  <201401061534.s06FYs3p011531@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Mon Jan  6 15:34:53 2014
New Revision: 338899
URL: http://svnweb.freebsd.org/changeset/ports/338899

Log:
  - Fix the build with clang/libc++.
  - Support staging.

Added:
  head/net/net6/files/
  head/net/net6/files/patch-inc__address.hpp   (contents, props changed)
Modified:
  head/net/net6/Makefile

Modified: head/net/net6/Makefile
==============================================================================
--- head/net/net6/Makefile	Mon Jan  6 15:23:30 2014	(r338898)
+++ head/net/net6/Makefile	Mon Jan  6 15:34:53 2014	(r338899)
@@ -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}

Added: head/net/net6/files/patch-inc__address.hpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/net6/files/patch-inc__address.hpp	Mon Jan  6 15:34:53 2014	(r338899)
@@ -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
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401061534.s06FYs3p011531>