summaryrefslogtreecommitdiff
path: root/print/teTeX-bin/patches
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>1999-08-03 13:54:56 +0000
committerhubertf <hubertf@pkgsrc.org>1999-08-03 13:54:56 +0000
commit069c061468c274a2537e74f92fd5ea67f967367a (patch)
tree979dc1c3127e792a3bf5305c4feefcae769e75d3 /print/teTeX-bin/patches
parentde169786f0442d28ca18f008f3231958b92cf0e8 (diff)
downloadpkgsrc-069c061468c274a2537e74f92fd5ea67f967367a.tar.gz
This package contains the executables for the teTeX installation
as well as other files that were created when generating the binaries: info files, format files and manual pages. Belongs to teTeX-1.0(.6)
Diffstat (limited to 'print/teTeX-bin/patches')
-rw-r--r--print/teTeX-bin/patches/patch-aa30
-rw-r--r--print/teTeX-bin/patches/patch-ab11
2 files changed, 41 insertions, 0 deletions
diff --git a/print/teTeX-bin/patches/patch-aa b/print/teTeX-bin/patches/patch-aa
new file mode 100644
index 00000000000..05c8091e575
--- /dev/null
+++ b/print/teTeX-bin/patches/patch-aa
@@ -0,0 +1,30 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/08/03 13:54:56 hubertf 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
+
++#ifdef __NetBSD__
++ 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);
++#ifdef __NetBSD__
++ 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));
diff --git a/print/teTeX-bin/patches/patch-ab b/print/teTeX-bin/patches/patch-ab
new file mode 100644
index 00000000000..8f037b01d7b
--- /dev/null
+++ b/print/teTeX-bin/patches/patch-ab
@@ -0,0 +1,11 @@
+--- texk/make/common.mk.orig Fri Jul 16 14:30:41 1999
++++ texk/make/common.mk Fri Jul 16 14:31:02 1999
+@@ -30,7 +30,7 @@
+ # Installation.
+ INSTALL = @INSTALL@
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
+-INSTALL_SCRIPT = $(INSTALL_PROGRAM)
++INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_DATA = @INSTALL_DATA@
+ INSTALL_LIBTOOL_LIBS = INSTALL_DATA='$(INSTALL_DATA)' $(LIBTOOL) install-lib
+ INSTALL_LIBTOOL_PROG = INSTALL_PROGRAM='$(INSTALL_PROGRAM)' $(LIBTOOL) install-prog