svn commit: r475251 - in head/textproc/yodl: . files
Muhammad Moinur Rahman
bofh at FreeBSD.org
Tue Jul 24 13:24:10 UTC 2018
Author: bofh
Date: Tue Jul 24 13:24:09 2018
New Revision: 475251
URL: https://svnweb.freebsd.org/changeset/ports/475251
Log:
textproc/yodl: Fix patches
Added:
head/textproc/yodl/files/patch-src_verbinsert_main.cc (contents, props changed)
Deleted:
head/textproc/yodl/files/patch-src_verbinsert_verbinsert.cc
Modified:
head/textproc/yodl/Makefile
Modified: head/textproc/yodl/Makefile
==============================================================================
--- head/textproc/yodl/Makefile Tue Jul 24 13:07:46 2018 (r475250)
+++ head/textproc/yodl/Makefile Tue Jul 24 13:24:09 2018 (r475251)
@@ -3,6 +3,7 @@
PORTNAME= yodl
PORTVERSION= 3.10.00
+PORTREVISION= 1
CATEGORIES= textproc
MAINTAINER= bofh at FreeBSD.org
Added: head/textproc/yodl/files/patch-src_verbinsert_main.cc
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/yodl/files/patch-src_verbinsert_main.cc Tue Jul 24 13:24:09 2018 (r475251)
@@ -0,0 +1,34 @@
+--- src/verbinsert/main.cc.orig 2018-07-22 13:07:15 UTC
++++ src/verbinsert/main.cc
+@@ -2,6 +2,7 @@
+ #include <fstream>
+ #include <iomanip>
+ #include <string>
++#include <cstdlib>
+ #include <unistd.h>
+ #include <regex>
+
+@@ -43,19 +44,19 @@ int main(int argc, char **argv)
+ continue;
+
+ case 's':
+- indent.append(stoul(optarg), ' ');
++ indent.append(stoul(optarg, NULL, 0), ' ');
+ continue;
+
+ case 't':
+- indent.insert(0, stoul(optarg), '\t');
++ indent.insert(0, stoul(optarg, NULL, 0), '\t');
+ continue;
+
+ case 'S':
+- vindent.append(stoul(optarg), ' ');
++ vindent.append(stoul(optarg, NULL, 0), ' ');
+ continue;
+
+ case 'T':
+- vindent.insert(0, stoul(optarg), '\t');
++ vindent.insert(0, stoul(optarg, NULL, 0), '\t');
+ continue;
+
+ case 'N':
More information about the svn-ports-head
mailing list