svn commit: r418740 - in branches/2016Q3/net/asterisk13: . files

Guido Falsi madpilot at FreeBSD.org
Mon Jul 18 19:59:31 UTC 2016


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 <daemon.hammer at ya.ru>
  
  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


More information about the svn-ports-all mailing list