]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
2.6.992a
authorTim Kientzle <kientzle@gmail.com>
Fri, 10 Apr 2009 23:00:22 +0000 (19:00 -0400)
committerTim Kientzle <kientzle@gmail.com>
Fri, 10 Apr 2009 23:00:22 +0000 (19:00 -0400)
SVN-Revision: 949

NEWS
build/version
configure.ac
cpio/Makefile
libarchive/archive.h
tar/Makefile

diff --git a/NEWS b/NEWS
index a3c816fb9dd8e5f83dc78455901a0cdc48ec5c49..fd1f143853cab7d35380bfb4b5208c82f5cdc7e3 100644 (file)
--- 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
index d99e98f739748ba619949fc951deb3e1c719288d..da7f3faba9de3b1f4b35404c5d0180dc4fbb286e 100644 (file)
@@ -1 +1 @@
-2006991a
+2006992a
index da60a4fa9ca6c23888d511d568f46c52ee5e5eea..c0695c06bb559d1fb82c09f400d88b862c83d54b 100644 (file)
@@ -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())
index 0f63c819af974ef1df1dd8aea403cb29740b2f6e..547d428006338736c6b57456ac4fd198ddfc2a2e 100644 (file)
@@ -3,7 +3,7 @@
 .include <bsd.own.mk>
 
 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}
index 6040c987667b932d53236183925adedbb107cf02..8d36df79cd493b23807321e03a064ebfd1750d4b 100644 (file)
@@ -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
index 1c714fd41772974f5af8498b6d07601267acf2ca..6fd5b17d616409df6d9fb62d0d983ab413511efc 100644 (file)
@@ -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}