Index: src/verbinsert/verbinsert.cc
===================================================================
--- src/verbinsert/verbinsert.cc.orig
+++ src/verbinsert/verbinsert.cc
@@ -1,3 +1,4 @@
+#include <cstdlib>
 #include <iostream>
 #include <fstream>
 #include <iomanip>
@@ -37,19 +38,19 @@ int main(int argc, char **argv)
             continue;
 
             case 's':
-                indent.append(stoul(optarg), ' ');
+                indent.append(strtoul(optarg, NULL, 10), ' ');
             continue;
 
             case 't':
-                indent.insert(0, stoul(optarg), '\t');
+                indent.insert(0, strtoul(optarg, NULL, 10), '\t');
             continue;
 
             case 'S':
-                vindent.append(stoul(optarg), ' ');
+                vindent.append(strtoul(optarg, NULL, 10), ' ');
             continue;
 
             case 'T':
-                vindent.insert(0, stoul(optarg), '\t');
+                vindent.insert(0, strtoul(optarg, NULL, 10), '\t');
             continue;
 
             case 'N':
Index: icmake/program
===================================================================
--- icmake/program.orig
+++ icmake/program
@@ -26,7 +26,7 @@ void _programYodlverbinsert()
 {
     if ("src/verbinsert/verbinsert.cc" younger 
             g_install + BIN + "/yodlverbinsert")
-        run(CXX + " --std=c++11 -o " + g_install + BIN + "/yodlverbinsert " + 
+        run(CXX + " -o " + g_install + BIN + "/yodlverbinsert " + 
             g_copt + " src/verbinsert/verbinsert.cc " + g_lopt);
 }