diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-11-26 15:09:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-11-26 15:09:05 +0000 |
commit | 2a023c36eae7f6a150c42ecbdb67e9383b59fcb8 (patch) | |
tree | 8b3a838c2a5cc813f02ab133d8f393d4eb22c6d0 | |
parent | e8ed9b7a737d09c3fa5660b4276aafce4bf1128b (diff) | |
download | ffmpeg-2a023c36eae7f6a150c42ecbdb67e9383b59fcb8.tar.gz |
Only build the imgresample test if the old scaler was enabled.
Originally committed as revision 15941 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 1816db6979..e12176e434 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -489,7 +489,8 @@ OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \ sparc/simple_idct_vis.o \ -TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 imgresample rangecoder snow) +TESTS = $(addsuffix -test$(EXESUF), cabac dct eval fft h264 rangecoder snow) +TESTS-$(CONFIG_OLDSCALER) += imgresample$(EXESUF) TESTS-$(ARCH_X86) += i386/cpuid-test$(EXESUF) motion-test$(EXESUF) CLEANFILES = apiexample$(EXESUF) |