diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-06 18:45:49 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-08-06 18:45:49 +0000 |
commit | 4de5ef207008f73ec313e3fedec1cc2c64717581 (patch) | |
tree | 72fe16f401848eab619e0f9d74b1892f73091c03 /archivers/bzip2/files/patch-aa | |
parent | Upgrade to 16.15. (diff) |
Revert back to version 0.9.0c. John Milford <jwm@CSUA.Berkeley.EDU> found
that /usr/ports/textproc/dsssl-docbook-modular/pkg/PLIST cannot be decompressed
with any version of bzip2 if compressed by version 0.9.5b.
Bzip2 author has been notified.
Submitted by: John Milford <jwm@CSUA.Berkeley.EDU>
Notes
Notes:
svn path=/head/; revision=20564
Diffstat (limited to 'archivers/bzip2/files/patch-aa')
-rw-r--r-- | archivers/bzip2/files/patch-aa | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/archivers/bzip2/files/patch-aa b/archivers/bzip2/files/patch-aa index 916a596308a7..fed6f64b57a4 100644 --- a/archivers/bzip2/files/patch-aa +++ b/archivers/bzip2/files/patch-aa @@ -1,13 +1,29 @@ ---- Makefile.orig Tue Jul 6 15:38:07 1999 -+++ Makefile Sat Jul 31 19:48:44 1999 -@@ -1,7 +1,8 @@ +--- Makefile.orig Fri Oct 23 04:57:22 1998 ++++ Makefile Wed Mar 24 00:19:11 1999 +@@ -1,6 +1,7 @@ - SHELL=/bin/sh -CC=gcc --CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce +-CFLAGS=-Wall -O2 -fomit-frame-pointer -fno-strength-reduce +CC?=gcc +CFLAGS?=-O2 +CFLAGS+=-Wall -fomit-frame-pointer -fno-strength-reduce OBJS= blocksort.o \ huffman.o \ +@@ -20,6 +21,7 @@ + lib: $(OBJS) + rm -f libbz2.a + ar clq libbz2.a $(OBJS) ++ ranlib libbz2.a + + test: bzip2 + @cat words1 +@@ -38,7 +40,7 @@ + clean: + rm -f *.o libbz2.a bzip2 bzip2recover sample1.rb2 sample2.rb2 sample1.tst sample2.tst + +-.c.o: $*.o bzlib.h bzlib_private.h ++.c.o: bzlib.h bzlib_private.h + $(CC) $(CFLAGS) -c $*.c -o $*.o + + tarfile: |