diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-16 15:02:52 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:10:41 +0200 |
commit | 8db622ceafddaa8acb452bc16b65a35a5bd0d75d (patch) | |
tree | fbeb37e3a1fce498af273029cdc9b510b33994a0 | |
parent | 776c0f93f546a09a2a6b462b2e1eb8cadfb131b8 (diff) | |
download | mpv-8db622ceafddaa8acb452bc16b65a35a5bd0d75d.tar.bz2 mpv-8db622ceafddaa8acb452bc16b65a35a5bd0d75d.tar.xz |
configure: Remove some unnecessary #includes from compilation tests
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31431 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -3748,7 +3748,6 @@ echores "$_select" echocheck "gettimeofday()" cat > $TMPC << EOF -#include <stdio.h> #include <sys/time.h> int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; } EOF @@ -6945,7 +6944,6 @@ if test "$_libavformat" = auto ; then _libavformat=no cat > $TMPC <<EOF #include <libavformat/avformat.h> - #include <libavcodec/opt.h> int main(void) { av_alloc_format_context(); return 0; } EOF if $_pkg_config --exists libavformat ; then @@ -6966,7 +6964,6 @@ echocheck "FFmpeg libpostproc" if test "$_libpostproc" = auto ; then _libpostproc=no cat > $TMPC << EOF - #include <inttypes.h> #include <libpostproc/postprocess.h> int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; } EOF |