]> wimlib.net Git - wimlib/log
wimlib
9 years agoAdd sprint_hash()
Eric Biggers [Sun, 27 Jul 2014 23:50:46 +0000 (18:50 -0500)]
Add sprint_hash()

Delete print_hash() and get_sha1_string()

9 years agowimlib-imagex.1: Update license statement
Eric Biggers [Sun, 27 Jul 2014 19:18:44 +0000 (14:18 -0500)]
wimlib-imagex.1: Update license statement

9 years agoUpdate COMPRESSION RATIO section in README
Eric Biggers [Sun, 27 Jul 2014 18:47:29 +0000 (13:47 -0500)]
Update COMPRESSION RATIO section in README

9 years agolzx-compress.c: Update some comments
Eric Biggers [Sun, 27 Jul 2014 16:11:26 +0000 (11:11 -0500)]
lzx-compress.c: Update some comments

9 years agolzx-compress.c: Don't update recent offset queue unnecessarily
Eric Biggers [Sun, 27 Jul 2014 03:13:26 +0000 (22:13 -0500)]
lzx-compress.c: Don't update recent offset queue unnecessarily

9 years agolzx-compress.c: Speed up rep match cost evaluations
Eric Biggers [Sun, 27 Jul 2014 02:11:31 +0000 (21:11 -0500)]
lzx-compress.c: Speed up rep match cost evaluations

9 years agolzx-compress.c: Use local variable for 'optimum' pointer
Eric Biggers [Sun, 27 Jul 2014 01:32:13 +0000 (20:32 -0500)]
lzx-compress.c: Use local variable for 'optimum' pointer

9 years agodecompress_common.h: Optimize bitstream_ensure_bits()
Eric Biggers [Sat, 26 Jul 2014 23:38:08 +0000 (18:38 -0500)]
decompress_common.h: Optimize bitstream_ensure_bits()

9 years agolz_binary_trees.c: Avoid buffer overrun if min_match_len > 3
Eric Biggers [Sat, 26 Jul 2014 18:46:54 +0000 (13:46 -0500)]
lz_binary_trees.c: Avoid buffer overrun if min_match_len > 3

9 years agolz_hash_chains.c: Avoid buffer overrun if min_match_len > 3
Eric Biggers [Sat, 26 Jul 2014 18:36:31 +0000 (13:36 -0500)]
lz_hash_chains.c: Avoid buffer overrun if min_match_len > 3

9 years agoxpress-compress.c: Use dedicated choose-items function for each parsing strategy
Eric Biggers [Sat, 26 Jul 2014 00:38:20 +0000 (19:38 -0500)]
xpress-compress.c: Use dedicated choose-items function for each parsing strategy

This speeds up lazy and greedy parsing.

9 years agolz_hash_chains.c: Add some comments to lz_hc_get_matches()
Eric Biggers [Sat, 26 Jul 2014 15:42:57 +0000 (10:42 -0500)]
lz_hash_chains.c:  Add some comments to lz_hc_get_matches()

9 years agolz_hash_chains.c: Hand-inline do_search()
Eric Biggers [Fri, 25 Jul 2014 04:35:44 +0000 (23:35 -0500)]
lz_hash_chains.c:  Hand-inline do_search()

On x86_64 this improves performance slightly (XPRESS compression ~3%
faster).  Probably a lot of the difference is due to redundant checks
against 'max_len' getting removed.

9 years agoUpdate NEWS
Eric Biggers [Sat, 26 Jul 2014 13:14:58 +0000 (08:14 -0500)]
Update NEWS

9 years agolzms-common.c: Don't process first byte in x86 filter
Eric Biggers [Sat, 26 Jul 2014 05:58:40 +0000 (00:58 -0500)]
lzms-common.c:  Don't process first byte in x86 filter

Microsoft's LZMS compressor and decompressor seemingly skip this byte.

This resulted in different behavior on the following uncompressed data:

0000000 e8 6b e8 fb ff 5e 1f 03 e8 63 e8 fb ff 5e c0 02
0000016 e8 5b e8 fb ff 5e 51 01 e8 53 e8 fb ff 5e c4 00

wimlib would do a translation following the e8 byte at offset 16, since
it would enable x86 translations following the identification of matching
absolute addresses following the potential opcodes at offsets 0 and 8.
But as far as I can tell, the Microsoft implementation just skips byte 0
entirely and doesn't consider it as beginning a potential instruction.

9 years agolzms-common.c: Add comment to lzms_x86_filter()
Eric Biggers [Sat, 26 Jul 2014 05:44:29 +0000 (00:44 -0500)]
lzms-common.c: Add comment to lzms_x86_filter()

9 years agoimagex-export.1.in: Add ESD <=> WIM examples
Eric Biggers [Fri, 25 Jul 2014 03:45:09 +0000 (22:45 -0500)]
imagex-export.1.in: Add ESD <=> WIM examples

9 years agoimagex-capture.1.in: Update
Eric Biggers [Fri, 25 Jul 2014 03:40:01 +0000 (22:40 -0500)]
imagex-capture.1.in: Update

9 years agoRemove "brute force" match-finding algorithm
Eric Biggers [Fri, 25 Jul 2014 02:58:02 +0000 (21:58 -0500)]
Remove "brute force" match-finding algorithm

It's not of much use, and the code ended up being more complicated than I
had planned.  Just get rid of it.

9 years agoresource.c: Make extract_chunk_to_fd() static
Eric Biggers [Fri, 25 Jul 2014 02:30:41 +0000 (21:30 -0500)]
resource.c: Make extract_chunk_to_fd() static

9 years agowim.c: Cleanup
Eric Biggers [Fri, 25 Jul 2014 01:57:40 +0000 (20:57 -0500)]
wim.c: Cleanup

Starting to remove some error messages that are mostly or entirely
redundant with the returned error code.

9 years agoCheck return value of wimlib_global_init() when called in lib
Eric Biggers [Fri, 25 Jul 2014 01:04:29 +0000 (20:04 -0500)]
Check return value of wimlib_global_init() when called in lib

On Windows, wimlib_global_init() can fail if functions are missing from
ntdll.  It's best to fail fast in this case rather than plowing ahead and
assuming the user would have already called wimlib_global_init()
themselves if they cared.

9 years agoinode.c: cleanup
Eric Biggers [Thu, 24 Jul 2014 06:20:38 +0000 (01:20 -0500)]
inode.c: cleanup

9 years agoRemove some unneeded includes
Eric Biggers [Thu, 24 Jul 2014 05:05:24 +0000 (00:05 -0500)]
Remove some unneeded includes

9 years agodentry.c: Cleanup + improve comments
Eric Biggers [Thu, 24 Jul 2014 04:07:29 +0000 (23:07 -0500)]
dentry.c: Cleanup + improve comments

9 years agocleanups
Eric Biggers [Mon, 21 Jul 2014 02:47:09 +0000 (21:47 -0500)]
cleanups

9 years agowin32_apply.c: Add comment about registry changes
Eric Biggers [Sun, 20 Jul 2014 06:50:24 +0000 (01:50 -0500)]
win32_apply.c: Add comment about registry changes

9 years agoSpeed up match length computations
Eric Biggers [Sun, 20 Jul 2014 04:44:17 +0000 (23:44 -0500)]
Speed up match length computations

9 years agoMerge compression updates
Eric Biggers [Sat, 19 Jul 2014 22:11:59 +0000 (17:11 -0500)]
Merge compression updates

- New internal match-finding API (might release as stand-alone library
  sometime)
- Add some new match-finding algorithms
- Get rid of lz_hash.c / lz_analyze_block()
- Add optimal parsing to XPRESS
- Optimize get_matches() / skip_bytes() calls in XPRESS and LZX
  compressors
- Get rid of decompressor parameters
- Get rid of compressor parameters exposed in API (use compression levels
  instead)

9 years agowin32_capture.c: Fix memory leak in error path
Eric Biggers [Sat, 5 Jul 2014 19:24:04 +0000 (14:24 -0500)]
win32_capture.c: Fix memory leak in error path

9 years agolzx-compress.c: Rename lzx_record_ctx.matches
Eric Biggers [Sat, 5 Jul 2014 19:17:30 +0000 (14:17 -0500)]
lzx-compress.c: Rename lzx_record_ctx.matches

9 years agolzx-compress.c: Rename lzx_write_matches_and_literals()
Eric Biggers [Sat, 5 Jul 2014 19:13:40 +0000 (14:13 -0500)]
lzx-compress.c: Rename lzx_write_matches_and_literals()

9 years ago{lzx,lzms}-decompress.c: Include wimlib/error.h, not wimlib.h
Eric Biggers [Sat, 5 Jul 2014 02:54:41 +0000 (21:54 -0500)]
{lzx,lzms}-decompress.c: Include wimlib/error.h, not wimlib.h

9 years agoxpress-decompress.c: Remove unneeded wimlib.h include
Eric Biggers [Sat, 5 Jul 2014 02:53:05 +0000 (21:53 -0500)]
xpress-decompress.c: Remove unneeded wimlib.h include

9 years ago{de,}compressor_ops.h: Forward declare params header
Eric Biggers [Sat, 5 Jul 2014 02:51:35 +0000 (21:51 -0500)]
{de,}compressor_ops.h: Forward declare params header

9 years agoxpress-compress.c: Rename xpress_match => xpress_item
Eric Biggers [Sat, 5 Jul 2014 02:22:01 +0000 (21:22 -0500)]
xpress-compress.c: Rename xpress_match => xpress_item

9 years agolzx-compress.c: Minor cleanups
Eric Biggers [Sat, 5 Jul 2014 02:11:12 +0000 (21:11 -0500)]
lzx-compress.c: Minor cleanups

9 years agoGet rid of input_idx_t
Eric Biggers [Sat, 5 Jul 2014 01:53:23 +0000 (20:53 -0500)]
Get rid of input_idx_t

This can't simply be changed anymore, so there's not much point in having
it.  For now window sizes are fixed at 32 bits.

9 years agoRename raw_match => lz_match
Eric Biggers [Sat, 5 Jul 2014 01:41:53 +0000 (20:41 -0500)]
Rename raw_match => lz_match

9 years agolzx-compress.c: Rename lzx_match => lzx_item
Eric Biggers [Sat, 5 Jul 2014 01:34:34 +0000 (20:34 -0500)]
lzx-compress.c: Rename lzx_match => lzx_item

An LZX item can be a match or a literal.  This makes more sense than "a
LZX match can be a match or a literal".

9 years agoEnsure WIM has filename before doing WIMBoot extraction
Eric Biggers [Fri, 4 Jul 2014 02:00:00 +0000 (21:00 -0500)]
Ensure WIM has filename before doing WIMBoot extraction

9 years agowimboot.c: Set correct error code if rename fails
Eric Biggers [Fri, 4 Jul 2014 01:57:00 +0000 (20:57 -0500)]
wimboot.c: Set correct error code if rename fails

9 years agowin32_apply.c: Minor cleanups
Eric Biggers [Fri, 4 Jul 2014 01:37:06 +0000 (20:37 -0500)]
win32_apply.c: Minor cleanups

9 years agoPlace headers that could be useful in unrelated projects in public domain
Eric Biggers [Fri, 4 Jul 2014 00:04:23 +0000 (19:04 -0500)]
Place headers that could be useful in unrelated projects in public domain

9 years agolzms-decompress.c: Update comments about Huffman codes
Eric Biggers [Thu, 3 Jul 2014 23:51:18 +0000 (18:51 -0500)]
lzms-decompress.c: Update comments about Huffman codes

Make consistent with the observations in compress_common.c

9 years agoPlace common decompression/compression code in public domain
Eric Biggers [Thu, 3 Jul 2014 23:25:13 +0000 (18:25 -0500)]
Place common decompression/compression code in public domain

Not much except Huffman coding in these files anymore, and that should be
completely free especially since it's been over 60 years since it was
invented...

9 years agowin32_capture.c: Fix exclusion when capture path ends in slash
Eric Biggers [Sat, 28 Jun 2014 23:32:32 +0000 (18:32 -0500)]
win32_capture.c:  Fix exclusion when capture path ends in slash

Broken by e9aed5bf5c3296f35ff7007cb1702c07b7dc2b37

9 years agodoc updates
Eric Biggers [Fri, 27 Jun 2014 23:46:04 +0000 (18:46 -0500)]
doc updates

9 years agoWindows replacement for fopen(path, "a")
Eric Biggers [Thu, 26 Jun 2014 01:03:50 +0000 (20:03 -0500)]
Windows replacement for fopen(path, "a")

9 years agoUse tchar for error file path
Eric Biggers [Thu, 26 Jun 2014 00:47:40 +0000 (19:47 -0500)]
Use tchar for error file path

9 years agowin32_capture.c: Exclude files pending deletion
Eric Biggers [Thu, 26 Jun 2014 00:43:00 +0000 (19:43 -0500)]
win32_capture.c: Exclude files pending deletion

9 years agowimexport: Add --recompress option
Eric Biggers [Wed, 25 Jun 2014 02:48:43 +0000 (21:48 -0500)]
wimexport: Add --recompress option

9 years agoClose error file opened by name
Eric Biggers [Wed, 25 Jun 2014 02:39:08 +0000 (21:39 -0500)]
Close error file opened by name

9 years agowimlib: Allow custom error file
Eric Biggers [Wed, 25 Jun 2014 02:12:44 +0000 (21:12 -0500)]
wimlib: Allow custom error file

9 years agoUse completed_streams and total_streams in extract progress
Eric Biggers [Wed, 25 Jun 2014 01:46:03 +0000 (20:46 -0500)]
Use completed_streams and total_streams in extract progress

9 years agoRemove begin_stream callback flags
Eric Biggers [Wed, 25 Jun 2014 01:13:33 +0000 (20:13 -0500)]
Remove begin_stream callback flags

These aren't used for anything anymore.

9 years agoextract.c: Pass orig stream to callbacks when reading tmpfile
Eric Biggers [Wed, 25 Jun 2014 01:08:39 +0000 (20:08 -0500)]
extract.c: Pass orig stream to callbacks when reading tmpfile

Needed for "WIMBoot" extraction

9 years agowin32_apply.c: Don't use BEGIN_STREAM_STATUS_SKIP_STREAM
Eric Biggers [Tue, 24 Jun 2014 01:04:57 +0000 (20:04 -0500)]
win32_apply.c:  Don't use BEGIN_STREAM_STATUS_SKIP_STREAM

This doesn't work correctly when extracting the stream from a pipe or a
solid block.  Just read the data and don't do anything with it --- at
least this double checks that it's actually valid.

9 years agoextract.c: Send "extract streams" progress at least every 5 MB
Eric Biggers [Tue, 24 Jun 2014 00:47:37 +0000 (19:47 -0500)]
extract.c: Send "extract streams" progress at least every 5 MB

9 years agoAdd experimental support for WIMLIB_PROGRESS_MSG_DONE_WITH_FILE
Eric Biggers [Sun, 22 Jun 2014 04:41:05 +0000 (23:41 -0500)]
Add experimental support for WIMLIB_PROGRESS_MSG_DONE_WITH_FILE

9 years agoUpdate NEWS
Eric Biggers [Sat, 21 Jun 2014 21:09:25 +0000 (16:09 -0500)]
Update NEWS

9 years agoFactor out Win32 => NT path conversion and use in win32_capture.c
Eric Biggers [Sat, 21 Jun 2014 21:06:00 +0000 (16:06 -0500)]
Factor out Win32 => NT path conversion and use in win32_capture.c

9 years agowin32_capture.c: Don't add duplicate backslashes
Eric Biggers [Sat, 21 Jun 2014 21:05:00 +0000 (16:05 -0500)]
win32_capture.c: Don't add duplicate backslashes

9 years agowrite.c: Send "write streams" progress at least every 5 MB
Eric Biggers [Sat, 21 Jun 2014 20:01:09 +0000 (15:01 -0500)]
write.c: Send "write streams" progress at least every 5 MB

This is helpful when writing large archives, especially when the library
user uses the ability to abort the operation.

9 years agoextract.c: Fix for running out of file handles
Eric Biggers [Fri, 20 Jun 2014 04:58:43 +0000 (23:58 -0500)]
extract.c: Fix for running out of file handles

9 years agoUpdate version to v1.7.1-BETA
Eric Biggers [Fri, 20 Jun 2014 00:35:27 +0000 (19:35 -0500)]
Update version to v1.7.1-BETA

9 years agoAllow multiple wimlib_global_init/cleanup per app
Eric Biggers [Fri, 20 Jun 2014 00:32:36 +0000 (19:32 -0500)]
Allow multiple wimlib_global_init/cleanup per app

9 years agosecurity.c: Use int32_t for security IDs
Eric Biggers [Thu, 19 Jun 2014 03:10:34 +0000 (22:10 -0500)]
security.c: Use int32_t for security IDs

9 years agov1.7.0 v1.7.0
Eric Biggers [Tue, 17 Jun 2014 00:28:40 +0000 (19:28 -0500)]
v1.7.0

9 years agoimagex-optimize.1.in: Update LZX compressor note
Eric Biggers [Tue, 17 Jun 2014 01:48:47 +0000 (20:48 -0500)]
imagex-optimize.1.in:  Update LZX compressor note

9 years agoREADME: Update COMPRESSION RATIO section
Eric Biggers [Tue, 17 Jun 2014 01:45:54 +0000 (20:45 -0500)]
README: Update COMPRESSION RATIO section

9 years agosha1-ssse3.asm: Fix building on Windows
Eric Biggers [Mon, 16 Jun 2014 02:49:27 +0000 (21:49 -0500)]
sha1-ssse3.asm:  Fix building on Windows

For some reason the Intel original doesn't actually build for Windows
because it requests too high alignment per section.  It should be
sufficient to retain the alignment directives in the code itself.

9 years agomake-windows-release: Allow multiple extra args to configure
Eric Biggers [Mon, 16 Jun 2014 02:16:14 +0000 (21:16 -0500)]
make-windows-release: Allow multiple extra args to configure

9 years agomake-windows-release: Set VERSION correctly for betas
Eric Biggers [Mon, 16 Jun 2014 02:11:01 +0000 (21:11 -0500)]
make-windows-release: Set VERSION correctly for betas

9 years agoRe-visit SHA-1 code
Eric Biggers [Sun, 15 Jun 2014 16:34:57 +0000 (11:34 -0500)]
Re-visit SHA-1 code

- Fixed build failures when configured with --enable-ssse3-sha1.

- Actually calculate the message digest correctly in the SSSE3-optimized
  version!  The Intel code just does block transformations, not arbitrary
  updates; the previous code did not reflect this.

- Use an appropriate fallback when the CPU does not support SSSE3
  instructions; don't just call abort()!

- Improve sha1_update() and sha1_final().  They should now be slightly
  faster, as well as easier to understand.

- Use beXX_to_cpu() and cpu_to_beXX() macros instead of hard-coding
  endian conversions.

9 years agoavl_tree.c: Remove avl_set_balance_factor()
Eric Biggers [Sun, 15 Jun 2014 05:15:24 +0000 (00:15 -0500)]
avl_tree.c: Remove avl_set_balance_factor()

9 years agoSpeed up LZ77 match copying
Eric Biggers [Sat, 14 Jun 2014 20:44:47 +0000 (15:44 -0500)]
Speed up LZ77 match copying

9 years agoxpress-decompress.c: Store 'len_hdr' and 'offset_bsr' in unsigned ints
Eric Biggers [Sat, 14 Jun 2014 17:16:11 +0000 (12:16 -0500)]
xpress-decompress.c:  Store 'len_hdr' and 'offset_bsr' in unsigned ints

This speeds up XPRESS decompression by about 2%.

9 years agofinish_write(): Read old integrity table into memory if needed
Eric Biggers [Sat, 14 Jun 2014 06:10:45 +0000 (01:10 -0500)]
finish_write():  Read old integrity table into memory if needed

This is a better fix for the problem, since it doesn't prevent the old
table from being used when it can be.

9 years agofinish_write(): Don't use old integrity table if already overwritten
Eric Biggers [Sat, 14 Jun 2014 04:46:58 +0000 (23:46 -0500)]
finish_write(): Don't use old integrity table if already overwritten

When updating a WIM in-place without modifying the lookup table, the new
XML data will spill into the old integrity table if the new XML data is
longer than the old XML data.  Temporarily fix this by not using the old
integrity table in this case.

9 years agoextract.c: Don't compile unneeded code when WITH_NTFS_3G undefined
Eric Biggers [Sat, 14 Jun 2014 04:45:56 +0000 (23:45 -0500)]
extract.c: Don't compile unneeded code when WITH_NTFS_3G undefined

9 years agoextract.c: Do endian conversion when checking pipable WIM header
Eric Biggers [Sat, 14 Jun 2014 04:44:01 +0000 (23:44 -0500)]
extract.c: Do endian conversion when checking pipable WIM header

9 years agodentry.c: Cast name length u16 => u32 whenever adding 2
Eric Biggers [Sat, 14 Jun 2014 04:41:22 +0000 (23:41 -0500)]
dentry.c:  Cast name length u16 => u32 whenever adding 2

Due to integer promotion this won't make a difference if an 'int' is 4+
bytes anyway, but make the intention clear: this computation should not
overflow.

9 years agoread_dentry_tree(): Use dentry_set_name()
Eric Biggers [Sat, 14 Jun 2014 04:40:34 +0000 (23:40 -0500)]
read_dentry_tree(): Use dentry_set_name()

Does the same thing but is shorter.

9 years agocompress_serial.c: Don't store compressed length in context
Eric Biggers [Sat, 14 Jun 2014 04:39:35 +0000 (23:39 -0500)]
compress_serial.c:  Don't store compressed length in context

It can be a local variable.

9 years agocompress_parallel.c: Don't bail if not all threads can be created
Eric Biggers [Sat, 14 Jun 2014 04:39:00 +0000 (23:39 -0500)]
compress_parallel.c:  Don't bail if not all threads can be created

If pthread_create() fails but at least 2 threads were created, use them
instead of falling back to serial compression.

9 years agocompress_parallel.c: Use more appropriate type for shift
Eric Biggers [Sat, 14 Jun 2014 04:37:37 +0000 (23:37 -0500)]
compress_parallel.c: Use more appropriate type for shift

9 years agochunk_compressor: Use u32 for chunk uncompressed size
Eric Biggers [Sat, 14 Jun 2014 04:36:09 +0000 (23:36 -0500)]
chunk_compressor: Use u32 for chunk uncompressed size

All chunk sizes must fit in a 32-bit integer because they cannot exceed
'out_chunk_size'.

9 years agomake_canonical_huffman_code(): Stricter validation of max_codeword_len
Eric Biggers [Sat, 14 Jun 2014 04:33:08 +0000 (23:33 -0500)]
make_canonical_huffman_code():  Stricter validation of max_codeword_len

max_codeword_len must be long enough to give a distinct codeword to each
symbol.  As we also check that num_syms >= 2, use this check instead of
max_codeword_len > 0.

9 years agocompress.c: Always include base compressor size
Eric Biggers [Sat, 14 Jun 2014 04:31:33 +0000 (23:31 -0500)]
compress.c:  Always include base compressor size

When the struct compressor_ops does not provide get_needed_memory(),
still include the size of the struct wimlib_compressor.

9 years ago{de,}compress.c: Sort ops by type number
Eric Biggers [Sat, 14 Jun 2014 04:30:24 +0000 (23:30 -0500)]
{de,}compress.c: Sort ops by type number

9 years agocapture_common.c: Fix comment
Eric Biggers [Sat, 14 Jun 2014 04:29:28 +0000 (23:29 -0500)]
capture_common.c: Fix comment

9 years agoUpdate NEWS
Eric Biggers [Fri, 13 Jun 2014 04:54:24 +0000 (23:54 -0500)]
Update NEWS

9 years agodentry.c: Fix comment
Eric Biggers [Fri, 13 Jun 2014 04:34:39 +0000 (23:34 -0500)]
dentry.c: Fix comment

9 years agowimlib.h: Make beginning of docs a bit more friendly
Eric Biggers [Fri, 13 Jun 2014 04:24:36 +0000 (23:24 -0500)]
wimlib.h:  Make beginning of docs a bit more friendly

9 years agowimlib.h: Update docs
Eric Biggers [Fri, 13 Jun 2014 04:05:54 +0000 (23:05 -0500)]
wimlib.h: Update docs

9 years agoRemove WIMLIB_COMPRESSION_TYPE_INVALID from library
Eric Biggers [Fri, 13 Jun 2014 04:04:05 +0000 (23:04 -0500)]
Remove WIMLIB_COMPRESSION_TYPE_INVALID from library

This is actually only used in wimlib-imagex

9 years agowimlib_get_compressor_needed_memory(): Include struct wimlib_compressor
Eric Biggers [Fri, 13 Jun 2014 04:00:22 +0000 (23:00 -0500)]
wimlib_get_compressor_needed_memory(): Include struct wimlib_compressor

9 years agomake-windows-release: Include all COPYING files
Eric Biggers [Fri, 13 Jun 2014 01:43:22 +0000 (20:43 -0500)]
make-windows-release: Include all COPYING files

9 years agoUpdate Makefile.am
Eric Biggers [Fri, 13 Jun 2014 01:34:27 +0000 (20:34 -0500)]
Update Makefile.am