diff options
author | Vesselin Bontchev <vesselin.bontchev@yandex.com> | 2015-07-19 22:25:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-21 23:10:44 +0200 |
commit | 323ec6b5e21433d32d0b5a8d187d0396734d3ddf (patch) | |
tree | d3ff3791609b16b2fda0cbadb6663ded1cc02ae0 /libavutil/Makefile | |
parent | 830d3a0ebe24600ebd1f27767204db5f7d059ea1 (diff) | |
download | ffmpeg-323ec6b5e21433d32d0b5a8d187d0396734d3ddf.tar.gz |
Add support for TEA (Tiny Encryption Algorithm)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 6fa810e744..70f8bae0a6 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -63,6 +63,7 @@ HEADERS = adler32.h \ twofish.h \ version.h \ xtea.h \ + tea.h \ HEADERS-$(CONFIG_LZO) += lzo.h @@ -135,6 +136,7 @@ OBJS = adler32.o \ utils.o \ xga_font_data.o \ xtea.o \ + tea.o \ OBJS-$(!HAVE_ATOMICS_NATIVE) += atomic.o \ @@ -192,6 +194,7 @@ TESTPROGS = adler32 \ twofish \ utf8 \ xtea \ + tea \ TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo |