svn commit: r422716 - head/net/vtun

Cy Schubert cy at FreeBSD.org
Sat Sep 24 13:14:50 UTC 2016


Author: cy
Date: Sat Sep 24 13:14:49 2016
New Revision: 422716
URL: https://svnweb.freebsd.org/changeset/ports/422716

Log:
  Adjust for a deficient ./configure script which fails to detect
  a working fork(2) and vfork(2).
  
  Tested by:	mat

Modified:
  head/net/vtun/Makefile

Modified: head/net/vtun/Makefile
==============================================================================
--- head/net/vtun/Makefile	Sat Sep 24 13:12:30 2016	(r422715)
+++ head/net/vtun/Makefile	Sat Sep 24 13:14:49 2016	(r422716)
@@ -3,7 +3,7 @@
 
 PORTNAME=	vtun
 PORTVERSION=	3.0.4
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	net
 MASTER_SITES=	SF
 
@@ -14,7 +14,8 @@ LICENSE=        GPLv2
 
 LIB_DEPENDS=	liblzo2.so:archivers/lzo2
 
-CFLAGS+=	-ansi -Wno-pointer-sign -I${LOCALBASE}/include
+CFLAGS+=	-ansi -Wno-pointer-sign -I${LOCALBASE}/include \
+		-DHAVE_WORKING_VFORK -DHAVE_WORKING_FORK
 USES=		ssl
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--localstatedir=/var \


More information about the svn-ports-head mailing list