summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>1999-07-22 14:34:45 +0000
committerChris Piazza <cpiazza@FreeBSD.org>1999-07-22 14:34:45 +0000
commitc9aca46b2363108b0f3339d9e90175e47d102bc5 (patch)
treead16435747bec9a1d7e9aead7e09e90f8118c935 /devel
parentActivate gdict. (diff)
Add two patches I forgot to add yesterday.
Noticed by: maintainer
Notes
Notes: svn path=/head/; revision=20314
Diffstat (limited to 'devel')
-rw-r--r--devel/astyle/files/patch-ab12
-rw-r--r--devel/astyle/files/patch-ac11
2 files changed, 23 insertions, 0 deletions
diff --git a/devel/astyle/files/patch-ab b/devel/astyle/files/patch-ab
new file mode 100644
index 000000000000..2c70578c7062
--- /dev/null
+++ b/devel/astyle/files/patch-ab
@@ -0,0 +1,12 @@
+--- ASBeautifier.cpp.orig Thu Mar 18 15:47:00 1999
++++ ASBeautifier.cpp Sun Apr 11 10:23:48 1999
+@@ -34,1 +34,1 @@
+-#include <iostream>
++#include <iostream.h>
+--- astyle_main.cpp.orig Thu Mar 18 15:41:30 1999
++++ astyle_main.cpp Sun Apr 11 10:25:00 1999
+@@ -26,2 +26,2 @@
+-#include <iostream>
+-#include <fstream>
++#include <iostream.h>
++#include <fstream.h>
diff --git a/devel/astyle/files/patch-ac b/devel/astyle/files/patch-ac
new file mode 100644
index 000000000000..1328967ade11
--- /dev/null
+++ b/devel/astyle/files/patch-ac
@@ -0,0 +1,11 @@
+--- ASFormatter.cpp.orig Sun Jul 18 19:07:09 1999
++++ ASFormatter.cpp Sun Jul 18 19:08:47 1999
+@@ -33,7 +33,7 @@
+ #include <cctype>
+ #include <vector>
+ #include <algorithm>
+-#include <iostream>
++#include <iostream.h>
+
+
+ #define INIT_CONTAINER(container, value) {if ( (container) != NULL ) delete (container); (container) = (value); }