svn commit: r390868 - in head/textproc/libxslt: . files
Koop Mast
kwm at FreeBSD.org
Sun Jun 28 21:34:07 UTC 2015
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 <per at hedeland.org>
+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
+
More information about the svn-ports-head
mailing list