diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-24 02:10:20 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-09 14:45:59 +0200 |
commit | ac56ff9cc9d442e4dc0cd01593d0f418e1e0cdaa (patch) | |
tree | db738d0730ded89496cae0f6c50d71b77c78718c /libavcodec/alpha/Makefile | |
parent | 8dd0650fe67398d78214687b1a15e614239ff593 (diff) | |
download | ffmpeg-ac56ff9cc9d442e4dc0cd01593d0f418e1e0cdaa.tar.gz |
build: non-x86: Only compile mpegvideo optimizations when necessary
Diffstat (limited to 'libavcodec/alpha/Makefile')
-rw-r--r-- | libavcodec/alpha/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/alpha/Makefile b/libavcodec/alpha/Makefile index e55fe49b7b..e28200d45a 100644 --- a/libavcodec/alpha/Makefile +++ b/libavcodec/alpha/Makefile @@ -2,5 +2,6 @@ OBJS += alpha/dsputil_alpha.o \ alpha/dsputil_alpha_asm.o \ alpha/motion_est_alpha.o \ alpha/motion_est_mvi_asm.o \ - alpha/mpegvideo_alpha.o \ alpha/simple_idct_alpha.o \ + +OBJS-$(CONFIG_MPEGVIDEO) += alpha/mpegvideo_alpha.o |