From owner-svn-ports-head@freebsd.org Sun Jun 28 21:34:07 2015 Return-Path: Delivered-To: svn-ports-head@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 B57C298F1F5; Sun, 28 Jun 2015 21:34:07 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 8265915B2; Sun, 28 Jun 2015 21:34:07 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5SLY7XD060448; Sun, 28 Jun 2015 21:34:07 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5SLY7jE060445; Sun, 28 Jun 2015 21:34:07 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201506282134.t5SLY7jE060445@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 28 Jun 2015 21:34:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390868 - in head/textproc/libxslt: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Jun 2015 21:34:07 -0000 Author: kwm Date: Sun Jun 28 21:34:06 2015 New Revision: 390868 URL: https://svnweb.freebsd.org/changeset/ports/390868 Log: Add patch to support the --maxvars argument in xsltproc. Submitted by: wblock@ Obtained from: libxslt upstream. Added: head/textproc/libxslt/files/patch-xsltproc_xsltproc.c (contents, props changed) Modified: head/textproc/libxslt/Makefile Modified: head/textproc/libxslt/Makefile ============================================================================== --- head/textproc/libxslt/Makefile Sun Jun 28 21:05:41 2015 (r390867) +++ head/textproc/libxslt/Makefile Sun Jun 28 21:34:06 2015 (r390868) @@ -3,7 +3,7 @@ PORTNAME= libxslt PORTVERSION= 1.1.28 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES?= textproc gnome MASTER_SITES= ftp://xmlsoft.org/libxml2/ \ http://xmlsoft.org/sources/ \ Added: head/textproc/libxslt/files/patch-xsltproc_xsltproc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/libxslt/files/patch-xsltproc_xsltproc.c Sun Jun 28 21:34:06 2015 (r390868) @@ -0,0 +1,24 @@ +From 5af7ad745323004984287e48b42712e7305de35c Mon Sep 17 00:00:00 2001 +From: Per Hedeland +Date: Fri, 13 Dec 2013 14:43:06 +0100 +Subject: Make --maxvars option work + + +diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c +index b22df37..66d8cbb 100644 +--- xsltproc/xsltproc.c ++++ xsltproc/xsltproc.c +@@ -803,6 +803,10 @@ main(int argc, char **argv) + (!strcmp(argv[i], "--maxdepth"))) { + i++; + continue; ++ } else if ((!strcmp(argv[i], "-maxvars")) || ++ (!strcmp(argv[i], "--maxvars"))) { ++ i++; ++ continue; + } else if ((!strcmp(argv[i], "-maxparserdepth")) || + (!strcmp(argv[i], "--maxparserdepth"))) { + i++; +-- +cgit v0.10.2 +