summaryrefslogtreecommitdiff
path: root/emulators/BasiliskII
diff options
context:
space:
mode:
authoragc <agc>2004-01-23 08:42:14 +0000
committeragc <agc>2004-01-23 08:42:14 +0000
commit3911795cb5b8d78387666ebf34bdec5b8e3b903c (patch)
tree8fc9e648463c648e39b32b85d7f219e042bec124 /emulators/BasiliskII
parent7245d37507913528855b1ca872bb7303942063b8 (diff)
downloadpkgsrc-3911795cb5b8d78387666ebf34bdec5b8e3b903c.tar.gz
Make this compile with gcc3.
Diffstat (limited to 'emulators/BasiliskII')
-rw-r--r--emulators/BasiliskII/distinfo3
-rw-r--r--emulators/BasiliskII/patches/patch-ad22
2 files changed, 24 insertions, 1 deletions
diff --git a/emulators/BasiliskII/distinfo b/emulators/BasiliskII/distinfo
index dc4307df1aa..2c73b81b8aa 100644
--- a/emulators/BasiliskII/distinfo
+++ b/emulators/BasiliskII/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.5 2003/10/12 21:11:52 wiz Exp $
+$NetBSD: distinfo,v 1.6 2004/01/23 08:42:14 agc Exp $
SHA1 (BasiliskII_src_14032003.tar.bz2) = 935e00e1401fc5dfaad7ac7d54184265bab0aeb8
Size (BasiliskII_src_14032003.tar.bz2) = 649594 bytes
SHA1 (patch-aa) = e41d9a3a932bb312e2ea35372c4e46a45f0fcae9
SHA1 (patch-ab) = 17c94164ece847bd5695e8fb79ff5132c3c53859
SHA1 (patch-ac) = c74b28008032f8f31cbee1085d4873c36c7e71a5
+SHA1 (patch-ad) = 79b26444ea6c2b022ed219f04eb1ae45762cedfc
diff --git a/emulators/BasiliskII/patches/patch-ad b/emulators/BasiliskII/patches/patch-ad
new file mode 100644
index 00000000000..f64ceb5ef9c
--- /dev/null
+++ b/emulators/BasiliskII/patches/patch-ad
@@ -0,0 +1,22 @@
+$NetBSD: patch-ad,v 1.1 2004/01/23 08:42:14 agc Exp $
+
+--- sshpty.c 2004/01/23 07:41:29 1.1
++++ sshpty.c 2004/01/23 07:52:50
+@@ -276,7 +276,7 @@
+ }
+ /* set tty modes to a sane state for broken clients */
+ if (tcgetattr(*ptyfd, &tio) < 0)
+- log("Getting tty modes for pty failed: %.100s", strerror(errno));
++ error("Getting tty modes for pty failed: %.100s", strerror(errno));
+ else {
+ tio.c_lflag |= (ECHO | ISIG | ICANON);
+ tio.c_oflag |= (OPOST | ONLCR);
+@@ -284,7 +284,7 @@
+
+ /* Set the new modes for the terminal. */
+ if (tcsetattr(*ptyfd, TCSANOW, &tio) < 0)
+- log("Setting tty modes for pty failed: %.100s", strerror(errno));
++ error("Setting tty modes for pty failed: %.100s", strerror(errno));
+ }
+
+ return 1;