Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-6]: src/lib/libbz2 Pull up revision 1.8 (requested by thorpej i...
details: https://anonhg.NetBSD.org/src/rev/ac18e949c0ff
branches: netbsd-1-6
changeset: 528116:ac18e949c0ff
user: lukem <lukem%NetBSD.org@localhost>
date: Fri Jun 28 10:14:40 2002 +0000
description:
Pull up revision 1.8 (requested by thorpej in ticket #386):
Work around compiler problem on VAX by building with -O0 on that
platform.
diffstat:
lib/libbz2/Makefile | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diffs (32 lines):
diff -r 223e3dc208b9 -r ac18e949c0ff lib/libbz2/Makefile
--- a/lib/libbz2/Makefile Thu Jun 27 17:22:03 2002 +0000
+++ b/lib/libbz2/Makefile Fri Jun 28 10:14:40 2002 +0000
@@ -1,4 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2002/03/15 01:50:40 mjl Exp $
+# $NetBSD: Makefile,v 1.7.2.1 2002/06/28 10:14:40 lukem Exp $
+
+.include <bsd.own.mk>
LIB= bz2
NOMAN= # defined
@@ -13,6 +15,11 @@
TEXINFO= bzip2.info
CLEANFILES+= bzip2.texi
+# XXX huffman.c gets mis-compiled with 2.95.3
+.if ${MACHINE_ARCH} == "vax"
+COPTS+= -O0
+.endif
+
bzip2.texi: manual.texi
@-rm -f $@
sed -e 's/@parindent.*//' \
@@ -22,8 +29,6 @@
-e 's/@bf{\(.*\)}/\1/' \
<$> >$@
-.include <bsd.own.mk>
-
.if ${MKSHARE} != "no"
FILESDIR= ${HTMLDOCDIR}/bzip2
FILES= manual_toc.html manual_1.html manual_2.html manual_3.html \
Home |
Main Index |
Thread Index |
Old Index