summaryrefslogtreecommitdiff
path: root/print/teTeX-bin/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'print/teTeX-bin/patches/patch-aa')
-rw-r--r--print/teTeX-bin/patches/patch-aa30
1 files changed, 0 insertions, 30 deletions
diff --git a/print/teTeX-bin/patches/patch-aa b/print/teTeX-bin/patches/patch-aa
deleted file mode 100644
index 253158d1634..00000000000
--- a/print/teTeX-bin/patches/patch-aa
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2003/10/10 01:11:20 danw Exp $
-
-Note that POSIX uses SIGCHLD ...! - HF
-
---- texk/web2c/window/mftalk.c.orig Thu Jul 15 16:52:02 1999
-+++ texk/web2c/window/mftalk.c Thu Jul 15 16:52:44 1999
-@@ -102,7 +102,11 @@
- fatal (setmode, setmode (cs_pipe[1], O_BINARY) == -1);
- #endif
-
-+#ifndef SIGCLD
-+ old = signal (SIGCHLD, child_died);
-+#else
- old = signal (SIGCLD, child_died);
-+#endif
- fatal (old, old == SIG_ERR);
-
- sprintf (height, "-h%d", screendepth);
-@@ -145,7 +149,11 @@
- fatal (close, close (sc_pipe[1]) == -1);
- fatal (close, close (cs_pipe[0]) == -1);
- fatal (close, close (cs_pipe[1]) == -1);
-+#ifndef SIGCLD
-+ fatal (signal, signal (SIGCHLD, old) == SIG_ERR);
-+#else
- fatal (signal, signal (SIGCLD, old) == SIG_ERR);
-+#endif
- break;
- default:
- res = read (cs_pipe[0], &ack, sizeof (int));