From 2a91ada8282f18d2807abee5188225bba1b19bda Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 18 Oct 2012 19:48:27 +0200 Subject: avutil: Make LZO decoder code configure-time selectable --- libavutil/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'libavutil/Makefile') diff --git a/libavutil/Makefile b/libavutil/Makefile index 227a57efc2..45f8e9076c 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -24,7 +24,6 @@ HEADERS = adler32.h \ intreadwrite.h \ lfg.h \ log.h \ - lzo.h \ mathematics.h \ md5.h \ mem.h \ @@ -42,6 +41,8 @@ HEADERS = adler32.h \ version.h \ xtea.h \ +HEADERS-$(CONFIG_LZO) += lzo.h + ARCH_HEADERS = bswap.h \ intmath.h \ intreadwrite.h \ @@ -71,7 +72,6 @@ OBJS = adler32.o \ log.o \ log2.o \ log2_tab.o \ - lzo.o \ mathematics.o \ md5.o \ mem.o \ @@ -89,6 +89,8 @@ OBJS = adler32.o \ utils.o \ xtea.o \ +OBJS-$(CONFIG_LZO) += lzo.o + OBJS += $(COMPAT_OBJS:%=../compat/%) SKIPHEADERS = old_pix_fmts.h -- cgit v1.2.3