From: Tim Kientzle Date: Fri, 10 Apr 2009 23:00:22 +0000 (-0400) Subject: 2.6.992a X-Git-Tag: v2.7.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90542fd75eb73e96775deb099b72b03552392437;p=thirdparty%2Flibarchive.git 2.6.992a SVN-Revision: 949 --- diff --git a/NEWS b/NEWS index a3c816fb9..fd1f14385 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ +Apr 10, 2009: libarchive 2.6.992a released +Apr 09, 2009: Fix SIGPIPE issue building with MSVC. +Apr 09, 2009: Fix several minor memory leaks in libarchive and libarchive_test + Apr 08, 2009: libarchive 2.6.991a released +Apr 07, 2009: Additional tests added to bsdcpio_test Apr 01, 2009: libarchive 2.6.990a released Apr 01, 2009: Use command-line gunzip, bunzip2, unxz, unlzma for diff --git a/build/version b/build/version index d99e98f73..da7f3faba 100644 --- a/build/version +++ b/build/version @@ -1 +1 @@ -2006991a +2006992a diff --git a/configure.ac b/configure.ac index da60a4fa9..c0695c06b 100644 --- a/configure.ac +++ b/configure.ac @@ -4,8 +4,8 @@ dnl First, define all of the version numbers up front. dnl In particular, this allows the version macro to be used in AC_INIT dnl These first two version numbers are updated automatically on each release. -m4_define([LIBARCHIVE_VERSION_S],[2.6.991a]) -m4_define([LIBARCHIVE_VERSION_N],[2006991]) +m4_define([LIBARCHIVE_VERSION_S],[2.6.992a]) +m4_define([LIBARCHIVE_VERSION_N],[2006992]) dnl bsdtar and bsdcpio versioning tracks libarchive m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S()) diff --git a/cpio/Makefile b/cpio/Makefile index 0f63c819a..547d42800 100644 --- a/cpio/Makefile +++ b/cpio/Makefile @@ -3,7 +3,7 @@ .include PROG= bsdcpio -BSDCPIO_VERSION_STRING=2.6.991a +BSDCPIO_VERSION_STRING=2.6.992a SRCS= cpio.c cmdline.c err.c matching.c pathmatch.c WARNS?= 6 DPADD= ${LIBARCHIVE} ${LIBZ} ${LIBBZ2} diff --git a/libarchive/archive.h b/libarchive/archive.h index 6040c9876..8d36df79c 100644 --- a/libarchive/archive.h +++ b/libarchive/archive.h @@ -118,13 +118,13 @@ extern "C" { * (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000) * #endif */ -#define ARCHIVE_VERSION_NUMBER 2006991 +#define ARCHIVE_VERSION_NUMBER 2006992 __LA_DECL int archive_version_number(void); /* * Textual name/version of the library, useful for version displays. */ -#define ARCHIVE_VERSION_STRING "libarchive 2.6.991a" +#define ARCHIVE_VERSION_STRING "libarchive 2.6.992a" __LA_DECL const char * archive_version_string(void); #if ARCHIVE_VERSION_NUMBER < 3000000 diff --git a/tar/Makefile b/tar/Makefile index 1c714fd41..6fd5b17d6 100644 --- a/tar/Makefile +++ b/tar/Makefile @@ -1,7 +1,7 @@ # $FreeBSD: src/usr.bin/tar/Makefile,v 1.40 2008/12/06 07:38:14 kientzle Exp $ PROG= bsdtar -BSDTAR_VERSION_STRING=2.6.991a +BSDTAR_VERSION_STRING=2.6.992a SRCS= bsdtar.c cmdline.c getdate.c matching.c read.c siginfo.c subst.c tree.c util.c write.c WARNS?= 5 DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ}