diff options
author | agc <agc@pkgsrc.org> | 2004-01-23 08:42:14 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2004-01-23 08:42:14 +0000 |
commit | 9ef3c2570d567985662acdd1201c9961d2972d8a (patch) | |
tree | 8fc9e648463c648e39b32b85d7f219e042bec124 | |
parent | 2526dad9fef9b0f56b9157a2e8dd385b6bd167e5 (diff) | |
download | pkgsrc-9ef3c2570d567985662acdd1201c9961d2972d8a.tar.gz |
Make this compile with gcc3.
-rw-r--r-- | emulators/BasiliskII/distinfo | 3 | ||||
-rw-r--r-- | emulators/BasiliskII/patches/patch-ad | 22 |
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; |