svn commit: r520006 - head/net/pjsip

Tobias Kortkamp tobik at FreeBSD.org
Fri Dec 13 07:23:01 UTC 2019


Author: tobik
Date: Fri Dec 13 07:23:00 2019
New Revision: 520006
URL: https://svnweb.freebsd.org/changeset/ports/520006

Log:
  net/pjsip: Unbreak IPV6 option
  
  - Do not set IPV6_CFLAGS twice
  - Turn off IPv6 support when the option is off
  
  Differential Revision:	https://reviews.freebsd.org/D22693

Modified:
  head/net/pjsip/Makefile

Modified: head/net/pjsip/Makefile
==============================================================================
--- head/net/pjsip/Makefile	Fri Dec 13 07:00:47 2019	(r520005)
+++ head/net/pjsip/Makefile	Fri Dec 13 07:23:00 2019	(r520006)
@@ -2,7 +2,7 @@
 
 PORTNAME=	pjsip
 PORTVERSION=	2.9
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	net
 MASTER_SITES=	http://www.pjsip.org/release/${PORTVERSION}/
 DISTNAME=	pjproject-${DISTVERSION}
@@ -66,9 +66,8 @@ GSM_CONFIGURE_ENABLE=		gsm-codec
 GSM_CONFIGURE_ON=		--with-external-gsm
 GSM_LIB_DEPENDS=		libgsm.so:audio/gsm
 ILBC_CONFIGURE_ENABLE=		ilbc-codec
-IPV6_CFLAGS=			"-DPJ_HAS_IPV6=1"
 IPV6_CFLAGS=			-DPJ_HAS_IPV6=1
-IPV6_CFLAGS_OFF=		-DPJ_HAS_IPV6=1
+IPV6_CFLAGS_OFF=		-DPJ_HAS_IPV6=0
 L16_CONFIGURE_ENABLE=		l16-codec
 OPENH264_CONFIGURE_ENABLE=	openh264
 OPENH264_LIB_DEPENDS=		libopenh264.so:multimedia/openh264


More information about the svn-ports-head mailing list