summaryrefslogtreecommitdiff
path: root/print/teTeX-bin/patches/patch-am
diff options
context:
space:
mode:
Diffstat (limited to 'print/teTeX-bin/patches/patch-am')
-rw-r--r--print/teTeX-bin/patches/patch-am40
1 files changed, 0 insertions, 40 deletions
diff --git a/print/teTeX-bin/patches/patch-am b/print/teTeX-bin/patches/patch-am
deleted file mode 100644
index b472dd001e5..00000000000
--- a/print/teTeX-bin/patches/patch-am
+++ /dev/null
@@ -1,40 +0,0 @@
-$NetBSD: patch-am,v 1.1 1999/10/04 23:21:47 simonb Exp $
-
---- texk/ps2pkm/spaces.c.orig Sun Feb 7 09:00:18 1999
-+++ texk/ps2pkm/spaces.c Thu Sep 30 13:34:51 1999
-@@ -207,7 +207,7 @@
- int rc = -1; /* return code for QueryDeviceState */
-
- if (rc != 0) /* we only bother with this check once */
-- abort("Context: QueryDeviceState didn't work");
-+ t1_abort("Context: QueryDeviceState didn't work");
-
- M[0][0] = M[1][0] = M[0][1] = M[1][1] = 0.0;
-
-@@ -225,7 +225,7 @@
- M[1][0] = -Yres; M[0][1] = -Xres;
- break;
- default:
-- abort("QueryDeviceState returned invalid orientation");
-+ t1_abort("QueryDeviceState returned invalid orientation");
- }
- return(FindContext(M));
- }
-@@ -249,7 +249,7 @@
-
- if (i >= nextcontext) {
- if (i >= MAXCONTEXTS)
-- abort("Context: out of them");
-+ t1_abort("Context: out of them");
- LONGCOPY(contexts[i].normal, M, sizeof(contexts[i].normal));
- MatrixInvert(M, contexts[i].inverse);
- nextcontext++;
-@@ -886,7 +886,7 @@
-
- D = M[1][1] * M[0][0] - M[1][0] * M[0][1];
- if (D == 0.0)
-- abort("MatrixInvert: can't");
-+ t1_abort("MatrixInvert: can't");
-
- Mprime[0][0] = tyy / D;
- Mprime[1][0] = -txy / D;