From owner-svn-ports-all@freebsd.org Mon Jun 6 20:07:27 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6063FB6D5E2; Mon, 6 Jun 2016 20:07:27 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 323C01C08; Mon, 6 Jun 2016 20:07:27 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u56K7QGf095453; Mon, 6 Jun 2016 20:07:26 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u56K7Q1j095451; Mon, 6 Jun 2016 20:07:26 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201606062007.u56K7Q1j095451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 6 Jun 2016 20:07:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r416484 - in head/net: asterisk11 asterisk13 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jun 2016 20:07:27 -0000 Author: madpilot Date: Mon Jun 6 20:07:26 2016 New Revision: 416484 URL: https://svnweb.freebsd.org/changeset/ports/416484 Log: Force asterisk to use it's internal iLBC implementation. This prevents asterisk configure script from being confused by net/libilbc (which is not compatible) if installed on the system. PR: 210074 Submitted by: Nikolay Modified: head/net/asterisk11/Makefile head/net/asterisk13/Makefile Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Mon Jun 6 18:41:24 2016 (r416483) +++ head/net/asterisk11/Makefile Mon Jun 6 20:07:26 2016 (r416484) @@ -29,7 +29,8 @@ USE_OPENSSL= yes USE_RC_SUBR= asterisk GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-crypto=${OPENSSLBASE} \ +CONFIGURE_ARGS+= --with-ilbc=internal \ + --with-crypto=${OPENSSLBASE} \ --with-ssl=${OPENSSLBASE} CPE_VENDOR= digium Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Mon Jun 6 18:41:24 2016 (r416483) +++ head/net/asterisk13/Makefile Mon Jun 6 20:07:26 2016 (r416484) @@ -32,6 +32,7 @@ USE_RC_SUBR= asterisk GNU_CONFIGURE= yes CONFIGURE_ARGS+= --datarootdir=${DATADIR} \ + --with-ilbc=internal \ --with-crypto=${OPENSSLBASE} \ --with-ssl=${OPENSSLBASE}