diff options
author | simonb <simonb> | 1999-09-28 13:15:03 +0000 |
---|---|---|
committer | simonb <simonb> | 1999-09-28 13:15:03 +0000 |
commit | 6368716d2a9942b0e1fa2d4ddf36827c7feadfcb (patch) | |
tree | f19dca5f599ce41d957d645bea573932e63d07b6 /textproc/lout | |
parent | 755f642a4f5e3f9ef941ff6d903e7d1fb6cf3d68 (diff) | |
download | pkgsrc-6368716d2a9942b0e1fa2d4ddf36827c7feadfcb.tar.gz |
Compile with optimisation (-O2). On the mips, we get an error from the
assembler about a branch offset being too large in z06.c. Optimising
must make a function small enough...
Diffstat (limited to 'textproc/lout')
-rw-r--r-- | textproc/lout/patches/patch-aa | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/textproc/lout/patches/patch-aa b/textproc/lout/patches/patch-aa index 42e3408f7ef..ab2bf383a4c 100644 --- a/textproc/lout/patches/patch-aa +++ b/textproc/lout/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.1.1.1 1998/11/09 18:05:10 tsarna Exp $ +$NetBSD: patch-aa,v 1.2 1999/09/28 13:15:03 simonb Exp $ ---- makefile.orig Mon Nov 2 11:31:56 1998 -+++ makefile Mon Nov 2 11:41:40 1998 -@@ -251,14 +251,14 @@ +--- makefile.orig Fri Feb 5 10:13:30 1999 ++++ makefile Tue Sep 28 17:36:53 1999 +@@ -248,14 +248,14 @@ DBFIX = 0 USESTAT = 1 @@ -22,7 +22,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1998/11/09 18:05:10 tsarna Exp $ LIBFONT = font LIBMAPS = maps -@@ -274,8 +274,8 @@ +@@ -271,8 +271,8 @@ LOC_FR = fr LOC_DE = de @@ -33,7 +33,16 @@ $NetBSD: patch-aa,v 1.1.1.1 1998/11/09 18:05:10 tsarna Exp $ ZLIBPATH = CC = gcc -@@ -312,6 +312,9 @@ +@@ -299,7 +299,7 @@ + -DCHAR_OUT=$(CHAROUT) \ + -DLOCALE_ON=$(USELOC) \ + -DASSERT_ON=1 $(COPTS) \ +- -DDEBUG_ON=1 -g \ ++ -DDEBUG_ON=1 -g -O2 \ + -DPDF_COMPRESSION=$(PDF_COMPRESSION) \ + $(ZLIBPATH) + +@@ -309,6 +309,9 @@ z25.o z26.o z27.o z28.o z29.o z30.o z31.o z32.o \ z33.o z34.o z35.o z36.o z37.o z38.o z39.o z40.o \ z41.o z42.o z43.o z44.o z45.o z46.o z47.o z48.o |