[vlc-commits] commit: Contribs: force gnu99 for FFmpeg and fix compilation ( Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Mon Aug 9 13:25:21 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Aug 9 13:23:06 2010 +0200| [b9c5a440d6458b9b2e50450293b9aa3e20865ad6] | committer: Jean-Baptiste Kempf
Contribs: force gnu99 for FFmpeg and fix compilation
For somewhat reason, on debian's (and arch's) mingw, strcasecmp isn't defined in c99 (very probably because _NO_OLDNAMES is defined)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b9c5a440d6458b9b2e50450293b9aa3e20865ad6
---
extras/contrib/src/Makefile | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile
index d9d0dbd..dc887a7 100644
--- a/extras/contrib/src/Makefile
+++ b/extras/contrib/src/Makefile
@@ -1040,7 +1040,7 @@ ifdef SVN
ifdef HAVE_WIN32
ffmpeg: .dshow_headers
else
-ffmpeg:
+ffmpeg:
endif
$(SVN) co $(FFMPEG_SVN) ffmpeg
ifdef HAVE_ISA_THUMB
@@ -1054,6 +1054,9 @@ ifdef HAVE_UCLIBC
patch -p0 < Patches/ffmpeg-svn-internal-define.patch
patch -p0 < Patches/ffmpeg-svn-libavformat.patch
endif
+ifdef HAVE_WIN32
+ sed -i "s/std=c99/std=gnu99/" ffmpeg/configure
+endif
else
ffmpeg-$(FFMPEG_VERSION).tar.gz:
echo "ffmpeg snapshot is too old, you MUST use subversion !"
@@ -1073,7 +1076,7 @@ FFMPEGCONF += \
--disable-ffplay \
--disable-devices \
--disable-protocols \
- --disable-filters \
+ --disable-avfilter \
--disable-network
ifdef HAVE_WIN64
FFMPEGCONF += --disable-bzlib --disable-decoder=dca --disable-encoder=vorbis --enable-libmp3lame --enable-w32threads --disable-dxva2 --disable-bsfs
@@ -1083,6 +1086,7 @@ FFMPEGCONF += --disable-bzlib --disable-decoder=dca --disable-encoder=vorbis --e
else
FFMPEGCONF += --enable-pthreads
endif
+FFMPEG_CFLAGS += --std=gnu99
endif
ifdef HAVE_WINCE
@@ -1098,7 +1102,7 @@ else
endif
endif
endif
- (cd $<; $(HOSTCC) ./configure --prefix=$(PREFIX) --extra-cflags="$(CFLAGS) $(FFMPEG_CFLAGS) -DHAVE_STDINT_H" --extra-ldflags="$(LDFLAGS)" $(FFMPEGCONF) --disable-shared --enable-static && make && make install-libs install-headers)
+ (cd $<; $(HOSTCC) ./configure --prefix=$(PREFIX) --extra-cflags="$(FFMPEG_CFLAGS) -DHAVE_STDINT_H" --extra-ldflags="$(LDFLAGS)" $(FFMPEGCONF) --disable-shared --enable-static && make && make install-libs install-headers)
touch $@
ifdef SVN
More information about the vlc-commits
mailing list