Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 215665 | Differences between
and this patch

Collapse All | Expand All

(-)wxsvg-1.0b10-orig/configure.in (-1 / +1 lines)
Lines 161-167 if test x$enable_ffmpeg = xyes; then Link Here
161
  AC_CHECK_LIB(avformat, av_register_all, [], [AC_MSG_ERROR([*** missing ffmpeg library: libavformat])])
161
  AC_CHECK_LIB(avformat, av_register_all, [], [AC_MSG_ERROR([*** missing ffmpeg library: libavformat])])
162
  AC_CHECK_LIB(avcodec, avcodec_decode_audio2, [], [AC_MSG_ERROR([*** missing ffmpeg library: libavcodec])])
162
  AC_CHECK_LIB(avcodec, avcodec_decode_audio2, [], [AC_MSG_ERROR([*** missing ffmpeg library: libavcodec])])
163
  AC_CHECK_LIB(swscale, sws_getContext)
163
  AC_CHECK_LIB(swscale, sws_getContext)
164
  AC_CHECK_HEADERS(ffmpeg/avcodec.h, [], [AC_MSG_ERROR([*** missing ffmpeg header file: ffmpeg/avcodec.h.])])
164
  AC_CHECK_HEADERS(libavcodec/avcodec.h, [], [AC_MSG_ERROR([*** missing ffmpeg header file: libavcodec/avcodec.h.])])
165
  CXXFLAGS="$CXXFLAGS -DUSE_FFMPEG"
165
  CXXFLAGS="$CXXFLAGS -DUSE_FFMPEG"
166
fi
166
fi
167
167
(-)wxsvg-1.0b10-orig/src/mediadec_ffmpeg.cpp (-2 / +2 lines)
Lines 23-30 Link Here
23
extern "C" {
23
extern "C" {
24
#define __STDC_CONSTANT_MACROS
24
#define __STDC_CONSTANT_MACROS
25
#define __STDC_LIMIT_MACROS
25
#define __STDC_LIMIT_MACROS
26
#include <ffmpeg/avformat.h>
26
#include <libavformat/avformat.h>
27
#include <ffmpeg/swscale.h>
27
#include <libswscale/swscale.h>
28
}
28
}
29
29
30
wxFfmpegMediaDecoder::wxFfmpegMediaDecoder():
30
wxFfmpegMediaDecoder::wxFfmpegMediaDecoder():

Return to bug 215665