* Don't build avcodec with assembly targets using yasm - because it breaks the

build.
* Remove the APE reader from the image as it also depends on the non-working
  yasm rule.

Please don't just leave the build in such a broken state. It's really annoying
when you're held up by stuff like that when you want to work on something.
Just leave changes like those disabled until you have verified that they work.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30111 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-04-11 00:00:19 +00:00
parent 61f3dd4f28
commit 96e5f9e535
3 changed files with 5 additions and 6 deletions

View File

@ -110,7 +110,6 @@ SYSTEM_ADD_ONS_MEDIA_PLUGINS = $(GPL_ONLY)ac3_decoder
mp3_decoder mp3_reader
mp4_reader musepack
ogg raw_decoder speex
$(X86_ONLY)APE_reader
# theora
vorbis wav_reader
;

View File

@ -314,5 +314,5 @@ StaticLibrary libavcodec.a :
xsubdec.c
zmbv.c
:
libavcodec_x86.a
# libavcodec_x86.a
;

View File

@ -27,12 +27,12 @@
#define HAVE_ARMVFP 0
#define HAVE_IWMMXT 0
#define HAVE_MMI 0
#define HAVE_MMX 1
#define HAVE_MMX2 1
#define HAVE_MMX 0
#define HAVE_MMX2 0
#define HAVE_NEON 0
#define HAVE_PPC4XX 0
#define HAVE_SSE 1
#define HAVE_SSSE3 1
#define HAVE_SSE 0
#define HAVE_SSSE3 0
#define HAVE_VIS 0
#define HAVE_BEOSTHREADS 0
#define HAVE_OS2THREADS 0