From owner-svn-ports-all@freebsd.org Mon Jul 18 19:59:31 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 0B23BB9D630; Mon, 18 Jul 2016 19:59:31 +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 A491A1A39; Mon, 18 Jul 2016 19:59:30 +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 u6IJxTpU000901; Mon, 18 Jul 2016 19:59:29 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6IJxT1N000899; Mon, 18 Jul 2016 19:59:29 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607181959.u6IJxT1N000899@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 18 Jul 2016 19:59:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418740 - in branches/2016Q3/net/asterisk13: . files X-SVN-Group: ports-branches 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, 18 Jul 2016 19:59:31 -0000 Author: madpilot Date: Mon Jul 18 19:59:29 2016 New Revision: 418740 URL: https://svnweb.freebsd.org/changeset/ports/418740 Log: MFH: r418726 FreeBSD's regexec() libc function is more restrictive than the linux one and will not accept an empty expression. Add patch (from PR) to fix this problem. PR: 211187 Submitted by: Dmitry Vagin Approved by: ports-secteam (feld) Added: branches/2016Q3/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c - copied unchanged from r418726, head/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c Modified: branches/2016Q3/net/asterisk13/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/asterisk13/Makefile ============================================================================== --- branches/2016Q3/net/asterisk13/Makefile Mon Jul 18 19:56:42 2016 (r418739) +++ branches/2016Q3/net/asterisk13/Makefile Mon Jul 18 19:59:29 2016 (r418740) @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Copied: branches/2016Q3/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c (from r418726, head/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c Mon Jul 18 19:59:29 2016 (r418740, copy of r418726, head/net/asterisk13/files/patch-res_res__pjsip_pjsip__cli.c) @@ -0,0 +1,11 @@ +--- res/res_pjsip/pjsip_cli.c.orig 2016-05-13 17:41:41 UTC ++++ res/res_pjsip/pjsip_cli.c +@@ -172,7 +172,7 @@ char *ast_sip_cli_traverse_objects(struc + } + regex = a->argv[4]; + } else { +- regex = ""; ++ regex = "."; + } + + if (cmd == CLI_GENERATE