summaryrefslogtreecommitdiff
path: root/lang/elk/patches
diff options
context:
space:
mode:
authorjoerg <joerg>2006-01-09 23:00:09 +0000
committerjoerg <joerg>2006-01-09 23:00:09 +0000
commit31ab26dcd2d291b40cd0c4a659c7a5a67316f98d (patch)
tree530436ee1113c955881a2a73aba6aab5729453e9 /lang/elk/patches
parente62989df8d4e366a0bd34c52e5f5a6add27c554f (diff)
downloadpkgsrc-31ab26dcd2d291b40cd0c4a659c7a5a67316f98d.tar.gz
Fix errno.
Diffstat (limited to 'lang/elk/patches')
-rw-r--r--lang/elk/patches/patch-ac12
-rw-r--r--lang/elk/patches/patch-ad12
-rw-r--r--lang/elk/patches/patch-ae13
-rw-r--r--lang/elk/patches/patch-af12
4 files changed, 49 insertions, 0 deletions
diff --git a/lang/elk/patches/patch-ac b/lang/elk/patches/patch-ac
new file mode 100644
index 00000000000..64b43698b38
--- /dev/null
+++ b/lang/elk/patches/patch-ac
@@ -0,0 +1,12 @@
+$NetBSD: patch-ac,v 1.5 2006/01/09 23:00:09 joerg Exp $
+
+--- src/io.c.orig 2006-01-09 22:17:25.000000000 +0000
++++ src/io.c
+@@ -48,7 +48,6 @@
+
+ extern void Flush_Output (Object);
+
+-extern int errno;
+ extern char *getenv();
+
+ Object Curr_Input_Port, Curr_Output_Port;
diff --git a/lang/elk/patches/patch-ad b/lang/elk/patches/patch-ad
new file mode 100644
index 00000000000..750ae718c29
--- /dev/null
+++ b/lang/elk/patches/patch-ad
@@ -0,0 +1,12 @@
+$NetBSD: patch-ad,v 1.4 2006/01/09 23:00:09 joerg Exp $
+
+--- src/libelk.c.orig 2003-12-05 12:38:37.000000000 +0000
++++ src/libelk.c
+@@ -172,7 +172,6 @@ void Elk_Init (int ac, char **av, int in
+ int debug = 0, heap = HEAP_SIZE;
+ Object file;
+ struct stat st;
+- extern int errno;
+ #if defined(CAN_DUMP)
+ # define foo (av[0][0])
+ #else
diff --git a/lang/elk/patches/patch-ae b/lang/elk/patches/patch-ae
new file mode 100644
index 00000000000..05878f6fc5e
--- /dev/null
+++ b/lang/elk/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.4 2006/01/09 23:00:09 joerg Exp $
+
+--- src/print.c.orig 2006-01-09 22:23:12.000000000 +0000
++++ src/print.c
+@@ -49,8 +49,6 @@
+
+ extern void Print_Bignum (Object, Object);
+
+-extern int errno;
+-
+ void Flush_Output (Object);
+ void Print_String (Object, register char *, register unsigned int);
+ void Pr_Char (Object, register int);
diff --git a/lang/elk/patches/patch-af b/lang/elk/patches/patch-af
new file mode 100644
index 00000000000..329a3980c06
--- /dev/null
+++ b/lang/elk/patches/patch-af
@@ -0,0 +1,12 @@
+$NetBSD: patch-af,v 1.5 2006/01/09 23:00:09 joerg Exp $
+
+--- lib/unix/unix.h.orig 2006-01-09 22:28:37.000000000 +0000
++++ lib/unix/unix.h
+@@ -46,7 +46,6 @@
+
+ #include "scheme.h"
+
+-extern int errno;
+ extern char *index();
+
+ extern Object Unix_Errobj, V_Call_Errhandler;