aboutsummaryrefslogtreecommitdiff
path: root/lang/ocaml/files
diff options
context:
space:
mode:
authorR. Imura <imura@FreeBSD.org>2000-02-28 15:44:36 +0000
committerR. Imura <imura@FreeBSD.org>2000-02-28 15:44:36 +0000
commitfb3062ab446b9ad598f5608edcdef64e451b5e18 (patch)
tree5aae67020019f5681fb6a129180c4e10fddf4af4 /lang/ocaml/files
parentb6983955fda99d4d3adcff1ef58659ecf686f27c (diff)
downloadports-fb3062ab446b9ad598f5608edcdef64e451b5e18.tar.gz
ports-fb3062ab446b9ad598f5608edcdef64e451b5e18.zip
Notes
Diffstat (limited to 'lang/ocaml/files')
-rw-r--r--lang/ocaml/files/patch-af10
-rw-r--r--lang/ocaml/files/patch-ag10
2 files changed, 20 insertions, 0 deletions
diff --git a/lang/ocaml/files/patch-af b/lang/ocaml/files/patch-af
new file mode 100644
index 000000000000..80b281f790ea
--- /dev/null
+++ b/lang/ocaml/files/patch-af
@@ -0,0 +1,10 @@
+--- otherlibs/graph/open.c.orig Fri Feb 11 18:00:12 2000
++++ otherlibs/graph/open.c Fri Feb 11 17:59:18 2000
+@@ -13,6 +13,7 @@
+ /* $Id: open.c,v 1.12 1999/11/18 13:33:53 xleroy Exp $ */
+
+ #include <fcntl.h>
++#include <unistd.h>
+ #include <signal.h>
+ #include "libgraph.h"
+ #include <alloc.h>
diff --git a/lang/ocaml/files/patch-ag b/lang/ocaml/files/patch-ag
new file mode 100644
index 000000000000..7862542d05c7
--- /dev/null
+++ b/lang/ocaml/files/patch-ag
@@ -0,0 +1,10 @@
+--- byterun/config.h.orig Fri Feb 11 18:34:29 2000
++++ byterun/config.h Fri Feb 11 18:34:06 2000
+@@ -27,6 +27,7 @@
+
+ #ifdef HAS_MEMMOVE
+ #undef bcopy
++#include <string.h>
+ #define bcopy(src,dst,len) memmove((dst), (src), (len))
+ #else
+ #ifdef HAS_BCOPY