mirror of https://github.com/mpv-player/mpv
Revert r21251 (moving loader/config.h contents to main config.h).
There are #ifdef TRACE tests in libav* and defining TRACE in toplevel config.h breaks things. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21265 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
7142e36d1f
commit
a5ddf3c531
|
@ -7792,16 +7792,6 @@ $_def_macosx_corevideo
|
||||||
/* Build our Win32-loader */
|
/* Build our Win32-loader */
|
||||||
$_def_win32_loader
|
$_def_win32_loader
|
||||||
|
|
||||||
/* some definitions for the loader */
|
|
||||||
#ifdef DEBUG
|
|
||||||
#define TRACE printf
|
|
||||||
#define dbg_printf printf
|
|
||||||
#else
|
|
||||||
#define TRACE(...)
|
|
||||||
#define dbg_printf(...)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* ffmpeg's libavcodec support (requires libavcodec source) */
|
/* ffmpeg's libavcodec support (requires libavcodec source) */
|
||||||
$_def_libavcodec
|
$_def_libavcodec
|
||||||
$_def_libavcodec_so
|
$_def_libavcodec_so
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
#include "../config.h"
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
#define TRACE printf
|
||||||
|
#define dbg_printf printf
|
||||||
|
#else
|
||||||
|
#define TRACE(...)
|
||||||
|
#define dbg_printf(...)
|
||||||
|
#endif
|
Loading…
Reference in New Issue