libtar version 1.2.14
[libtar.git] / ChangeLog
blob439079ecd529be5abe87c769e8cf071acf2010aa
1 libtar 1.2.14 - 2011/12/22
2 -------------
4         This is a maintenance release by Chris Frey, temporarily stepping in
5         for Mark Roth.  These maintenance releases are git-based only and
6         can be found at: http://repo.or.cz/w/libtar.git
7         Both git downloads and tarball downloads are possible at this site.
9 Chris Frey (1):
10       Fixed truncation check, so 100 char names get GNU extension support when enabled
13 libtar 1.2.13 - 2011/06/13
14 -------------
16 This is a maintenance release by Chris Frey, temporarily stepping in for
17 Mark Roth.  These maintenance releases are git-based only and can be
18 found at: http://repo.or.cz/w/libtar.git
20 Chris Frey (10):
21       Fixed incorrect URL in readme
22       Added autoconf/ as macro dir
23       Added autogen.sh script to build a fresh configure
24       Renamed autoconf/aclocal.m4 to psg.m4 so aclocal isn't so confused
25       Removed m4 includes, and straightened out [] m4 quoting for modern autoconfs
26       Removed auto-generated files
27       Added datarootdir to Makefile.in's
28       Fixed header warnings
29       Applied Marcin Gibula's patch fixing tar_extract_glob()
30       Changed root Makefile.in to Makefile.am, which make autoreconf workable
32 Glenn McGrath (1):
33       Use libtool to build dynamic library
35 James Morrison (1):
36       Document stupidity of tartype_t in libtar.c.
38 Magnus Holmgren (1):
39       Escape hyphens that should be minus signs in man pages.
41 Per Lidén (2):
42       Fix memory leak in th_get_pathname
43       Reduce memory used by libtar when extracting files.
45 ------------------------------------------------------------------------------
47 libtar 1.2.11 - 3/2/03
48 -------------
50 - updated autoconf macros, compat code, and listhash code
51 - fixed tar_extract_regfile() to pass mode argument to open()
52   (caused EPERM on Solaris NFS clients)
53 - updated README
55 ------------------------------------------------------------------------------
57 libtar 1.2.10 - 12/15/02
58 -------------
60 - updated README
61 - minor Makefile fixes
62 - fixed TH_ISREG() macro to not return true for hard links
64 ------------------------------------------------------------------------------
66 libtar 1.2.9 - 11/19/02
67 ------------
69 - fixed th_read() to return 1 on EOF
70   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
71 - minor portability fixes
72   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
73 - fixed segfault on extracting filenames with 8-bit ASCII characters
74   (thanks to Per Liden <per@FUKT.BTH.SE> for the patch)
75 - fixed TH_ISDIR() macro and th_get_mode() function to handle old
76   archives that don't set the typeflag field right for directories
77 - use 0777 instead of 0755 in mkdirhier()
78   (thanks to Yves Crespin <Crespin.Quartz@WANADOO.FR> for the bug report)
80 ------------------------------------------------------------------------------
82 libtar 1.2.8 - 9/13/02
83 ------------
85 - added "-I../listhash" to CPPFLAGS in libtar/Makefile.in
86   (thanks to Kris Warkentin <kewarken@QNX.COM> for the bug report)
87 - added .PHONY target to Makefile.in
88   (thanks to Steven Engelhardt <sengelha@YAHOO.COM> for the bug report)
90 ------------------------------------------------------------------------------
92 libtar 1.2.7 - 9/12/02
93 ------------
95 - fixed minor bugs in listhash code
96   (thanks to Jim Knoble <jmknoble@pobox.com> for the bug reports)
98 ------------------------------------------------------------------------------
100 libtar 1.2.6 - 9/10/02
101 ------------
103 - updated COPYRIGHT file
104 - do not check magic field by default
105   (replaced TAR_IGNORE_MAGIC option with TAR_CHECK_MAGIC to enable check)
106 - fixed th_get_mode() not to modify S_IFMT bits if they were already set
107 - fixed TH_IS*() macros to check the S_IFMT mode bits in addition to typeflag
108   (this allows us to handle old tar archives that set mode bits but not
109   typeflag field for directories and other special files)
110 - updated to autoconf-2.53
111 - restructured autoconf macros
112 - added "b" to gzoflags in gzopen_frontend() for win32 compatibility
113   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
114 - if O_BINARY is defined (as on win32), set that bit in oflags in tar_open()
115   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
116 - also use O_BINARY in when calling open() from tar_extract_regfile()
117   (based on patch from Graeme Peterson <gp@qnx.com>)
118 - added COMPAT_FUNC_MAKEDEV macro to handle 3-arg version of makedev()
119   (based on patch from Graeme Peterson <gp@qnx.com>)
121 ------------------------------------------------------------------------------
123 libtar 1.2.5 - 2/20/02
124 ------------
126 - updated to autoconf-2.52
127 - improved Makefile portability
128 - fixed memory leak in hard-link detection code
129   (thanks to Michael Kamp <kamp@HITT.NL> for the bug report)
130 - fixed memory leak in symlink handling code
131   (thanks to Michael Kamp <kamp@HITT.NL> for the bug report)
132 - fixed memory leak in GNU long filename code
134 ------------------------------------------------------------------------------
136 libtar 1.2.4 - 7/24/01
137 ------------
139 - code cleanups to make gcc -Wall happy
140   (thanks to Jim Knoble <jmknoble@POBOX.COM> for the patch)
141 - call utime() before chmod() in tar_set_file_perms() for cygwin
142   (thanks to Kris Eric Warkentin <kewarken@QNX.COM> for reporting this)
143 - added "-g" flag to trigger GNU extensions in libtar binary
144 - fixed buffer termination bugs in POSIX filename prefix encoding
145   (thanks to Joerg Schilling <schilling@fokus.gmd.de> for reporting this)
146 - fixed bug in th_crc_calc() for filenames with 8-bit ASCII characters
147   (thanks to Hamdouni El Bachir <bach@zehc.net> for reporting the bug
148    and Antoniu-George SAVU <santoniu@libertysurf.fr> for the patch)
149 - fixed backwards conditional expression in th_read()
150   (thanks to Antoniu-George SAVU <santoniu@LIBERTYSURF.FR> for the patch)
151 - added new tar_open() options to replace compile-time settings:
152   TAR_IGNORE_EOT, TAR_IGNORE_MAGIC, TAR_CHECK_VERSION, TAR_IGNORE_CRC
153   (based on feedback from Kris Eric Warkentin <kewarken@QNX.COM>)
155 ------------------------------------------------------------------------------
157 libtar 1.2.3 - 6/26/01
158 ------------
160 - misc portability fixes for OpenBSD
161 - fixed libtar.h to work with C++ programs
162 - fixed tar_extract_file() to properly check for pre-existing symlinks
163   (based on patch from Per Lid?n <per@fukt.hk-r.se>)
164 - fixed hash creation in tar_init()
165 - replaced mkdirhier() with non-recursive version
166 - updated autoconf macros, compat code, and listhash code
167 - reformatted code for readability
169 ------------------------------------------------------------------------------
171 libtar 1.2.2 - 1/12/01
172 ------------
174 - fixed th_print_long_ls() to not truncate user and group names
175 - code cleanups to make -Wall happy
177 ------------------------------------------------------------------------------
179 libtar 1.2.1 - 1/8/01
180 ------------
182 - updated WSG_ENCAP autoconf macro
183 - fixed autoconf macros to behave properly when a config.cache file
184   is present
185 - fixed doc/Makefile.in to create links during compilation, not
186   installation
187 - fixed listhash manpage .so link lists
189 ------------------------------------------------------------------------------
191 libtar 1.2 - 1/4/01
192 ----------
194 - minor code cleanups
196 ------------------------------------------------------------------------------
198 libtar 1.1.b8 - 1/2/01
199 -------------
201 - updated WSG_ENCAP autoconf macro
203 ------------------------------------------------------------------------------
205 libtar 1.1.b7 - 12/13/00
206 -------------
208 - fixed autoconf snprintf() test to make sure it NUL-terminates
210 ------------------------------------------------------------------------------
212 libtar 1.1.b6 - 11/30/00
213 -------------
215 - added $(DESTDIR) to Makefiles
216 - Makefile changes to support WSG_PKG and WSG_ENCAP autoconf macros
217 - changed lib/output.c to use strftime() where available
219 ------------------------------------------------------------------------------
221 libtar 1.1.b5 - 10/29/00
222 -------------
224 - Makefile fix
226 ------------------------------------------------------------------------------
228 libtar 1.1.b4 - 10/29/00
229 -------------
231 - more directory reorganization
232 - minor Makefile cleanups
233 - minor portability fixes
234 - added function typecasting to avoid compiler warnings
236 ------------------------------------------------------------------------------
238 libtar 1.1.b3 - 10/26/00
239 -------------
241 - updated aclocal.m4
242 - updated README
243 - updated manpages
244 - minor directory structure changes because of CVS setup
246 ------------------------------------------------------------------------------
248 libtar 1.1.b2 - 10/5/00
249 -------------
251 - added --without-zlib configure option
252 - minor portability fixes
254 ------------------------------------------------------------------------------
256 libtar 1.1.b1 - 8/21/00
257 -------------
259 - API changes:
260   - implemented tar_fdopen()
261   - implemented tar_fd()
262   - added TAR **t argument to tar_open() instead of returning dynamic memory
263   - if TAR_NOOVERWRITE is set in options and O_CREAT is set in oflags,
264     tar_open() automatically sets O_EXCL as well
266 ------------------------------------------------------------------------------
268 libtar 1.1.b0 - 7/10/00
269 -------------
271 - API changes:
272   - replaced internal table of tar file types with a tartype_t passed to
273     tar_open() by the caller
274     (allows file access methods to be defined dynamically)
275   - fixed tar_append_tree() to grok normal files as well as directories
276   - replaced mk_dirs_for_file() with mkdirhier() from epkg
277   - replaced strtok_r() with strsep()
278   - updated list/hash code to new interface
280 - autoconf changes:
281   - added aclocal.m4 to clean up configure.in
282   - minor portability fixes related to lib/fnmatch.c
284 - fixed a bug in tar_open() where the result of open() was being
285   checked for 0 instead of -1 to detect error
287 - updated libtar driver program to handle both .tar.gz and ordinary .tar
288   via the -z option