diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-09-23 21:02:22 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-09-23 21:02:22 +0000 |
commit | b146873c944948669bce61752b07d8b6032a7480 (patch) | |
tree | b6dbcd6f31105e9a28a71026344af5d17fe591f4 /libavcodec/Makefile | |
parent | bd9d34a0c94ca2d54ee16afa73c1092275841e70 (diff) | |
download | ffmpeg-b146873c944948669bce61752b07d8b6032a7480.tar.gz |
VIS-specific code should be compiled conditional to HAVE_VIS, not ARCH_SPARC.
Originally committed as revision 10554 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index e8bebad796..20e01ca7e1 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -378,7 +378,7 @@ ASM_OBJS-$(HAVE_ARMV5TE) += armv4l/simple_idct_armv5te.o \ ASM_OBJS-$(HAVE_ARMV6) += armv4l/simple_idct_armv6.o \ -OBJS-$(ARCH_SPARC) += sparc/dsputil_vis.o \ +OBJS-$(HAVE_VIS) += sparc/dsputil_vis.o \ sparc/simple_idct_vis.o \ sparc/dsputil_vis.o sparc/simple_idct_vis.o: CFLAGS += -mcpu=ultrasparc -mtune=ultrasparc |