commit | 2770fbd651918f64881339e162edbbd261624a59 | [log] [tgz] |
---|---|---|
author | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 03 13:30:23 2012 +0000 |
committer | Paul Bakker <p.j.bakker@polarssl.org> | Tue Jul 03 13:30:23 2012 +0000 |
tree | 91538c4dcb1f38f35bd2a3b15c28b590c91218d6 | |
parent | 4f9a7bb7fdb52299c6b91b76252104a70d74710d [diff] [blame] |
- Added DEFLATE compression support as per RFC3749 (requires zlib)
diff --git a/programs/Makefile b/programs/Makefile index d28bc53..3aab43c 100644 --- a/programs/Makefile +++ b/programs/Makefile
@@ -15,6 +15,11 @@ LDFLAGS += -lws2_32 endif +# Zlib shared library extensions: +ifdef ZLIB +LDFLAGS += -lz +endif + APPS = aes/aescrypt2 aes/crypt_and_hash \ hash/hello hash/generic_sum \ hash/md5sum hash/sha1sum \