Upgrade to version 0.9.5b. (the "b" here does not stand for "beta")

This commit is contained in:
David E. O'Brien 1999-08-01 03:11:10 +00:00
parent b98520e879
commit 36b695754e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=20441
3 changed files with 11 additions and 26 deletions

View file

@ -4,13 +4,14 @@
# Date created: 19 Nov 1997
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id: Makefile,v 1.10 1999/04/19 22:28:11 obrien Exp $
# $Id: Makefile,v 1.11 1999/08/01 01:49:16 cpiazza Exp $
#
DISTNAME= bzip2-0.9.0c
DISTNAME= bzip2-0.9.5b
CATEGORIES= archivers
MASTER_SITES= http://www.bzip2.org/bzip2/v090/ \
http://www.digistar.com/bzip2/
MASTER_SITES= http://www.bzip2.org/bzip2/v095/ \
http://www.digistar.com/bzip2/ \
http://www.muraroa.demon.co.uk/
MAINTAINER= obrien@FreeBSD.org

View file

@ -1 +1 @@
MD5 (bzip2-0.9.0c.tar.gz) = 29993af5282e817fafc5a76b4e0c98fa
MD5 (bzip2-0.9.5b.tar.gz) = 4f00eb4429452932b1689c53a4621d49

View file

@ -1,29 +1,13 @@
--- Makefile.orig Fri Oct 23 04:57:22 1998
+++ Makefile Wed Mar 24 00:19:11 1999
@@ -1,6 +1,7 @@
--- Makefile.orig Tue Jul 6 15:38:07 1999
+++ Makefile Sat Jul 31 19:48:44 1999
@@ -1,7 +1,8 @@
SHELL=/bin/sh
-CC=gcc
-CFLAGS=-Wall -O2 -fomit-frame-pointer -fno-strength-reduce
-CFLAGS=-Wall -Winline -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: