diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2010-10-02 06:57:04 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2010-10-02 06:57:04 +0000 |
commit | be31153629808972e5d23b96d548a04163aca95f (patch) | |
tree | 5e5fdfb5e5323d0a13a6b36baf705c3714773ef1 /Makefile-libbz2_so | |
parent | 5a93e3ae7b2612a3cee5ab42acdb8c807af3eedf (diff) | |
download | src-be31153629808972e5d23b96d548a04163aca95f.tar.gz src-be31153629808972e5d23b96d548a04163aca95f.zip |
Vendor import bzip2 -- upgrade to version 1.0.6.vendor/bzip2/1.0.6
Notes
Notes:
svn path=/vendor/bzip2/dist/; revision=213350
svn path=/vendor/bzip2/1.0.6/; revision=213351; tag=vendor/bzip2/1.0.6
Diffstat (limited to 'Makefile-libbz2_so')
-rw-r--r-- | Makefile-libbz2_so | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile-libbz2_so b/Makefile-libbz2_so index 9a13c77e4873..e58791b3b337 100644 --- a/Makefile-libbz2_so +++ b/Makefile-libbz2_so @@ -1,6 +1,6 @@ # This Makefile builds a shared version of the library, -# libbz2.so.1.0.4, with soname libbz2.so.1.0, +# libbz2.so.1.0.6, with soname libbz2.so.1.0, # at least on x86-Linux (RedHat 7.2), # with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98). # Please see the README file for some important info @@ -10,8 +10,8 @@ # This file is part of bzip2/libbzip2, a program and library for # lossless, block-sorting data compression. # -# bzip2/libbzip2 version 1.0.5 of 10 December 2007 -# Copyright (C) 1996-2007 Julian Seward <jseward@bzip.org> +# bzip2/libbzip2 version 1.0.6 of 6 September 2010 +# Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org> # # Please read the WARNING, DISCLAIMER and PATENTS sections in the # README file. @@ -35,13 +35,13 @@ OBJS= blocksort.o \ bzlib.o all: $(OBJS) - $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.4 $(OBJS) - $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.4 + $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.6 $(OBJS) + $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.6 rm -f libbz2.so.1.0 - ln -s libbz2.so.1.0.4 libbz2.so.1.0 + ln -s libbz2.so.1.0.6 libbz2.so.1.0 clean: - rm -f $(OBJS) bzip2.o libbz2.so.1.0.4 libbz2.so.1.0 bzip2-shared + rm -f $(OBJS) bzip2.o libbz2.so.1.0.6 libbz2.so.1.0 bzip2-shared blocksort.o: blocksort.c $(CC) $(CFLAGS) -c blocksort.c |