Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Dec 2019 07:23:00 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r520006 - head/net/pjsip
Message-ID:  <201912130723.xBD7N0Sh034837@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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