Commit b7ce1c36 authored by Christophe Mutricy's avatar Christophe Mutricy

ffmpeg-svn-cross.patch has been applied upstream

parent b3340433
......@@ -905,9 +905,6 @@ endif
ifeq ($(HOST),i686-apple-darwin8)
(cd $@;patch -p 0 < ../Patches/ffmpeg-svn-mactel.patch)
endif
ifneq ($(HOST),$(BUILD))
patch -p 0 < Patches/ffmpeg-svn-cross.patch
endif
ffmpeg-$(FFMPEG_VERSION).tar.gz:
$(WGET) $(FFMPEG_URL)
......
Index: ffmpeg/configure
===================================================================
--- ffmpeg/configure (revision 5464)
+++ ffmpeg/configure (working copy)
@@ -129,12 +129,12 @@
check_cc(){
cat >$TMPC
- ${cross_prefix}$cc $CFLAGS "$@" -c -o $TMPO $TMPC >/dev/null 2>&1
+ $cc $CFLAGS "$@" -c -o $TMPO $TMPC >/dev/null 2>&1
}
check_ld(){
cat >$TMPC
- ${cross_prefix}$cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >/dev/null 2>&1
+ $cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >/dev/null 2>&1
}
check_cflags(){
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment