0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Move contents of loader/config.h to configure/config.h, there are

multiple files by that name, this can cause problems.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21251 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-11-25 20:53:43 +00:00
parent 215b64156b
commit 33d70768f9
2 changed files with 10 additions and 9 deletions

10
configure vendored
View File

@ -7792,6 +7792,16 @@ $_def_macosx_corevideo
/* Build our 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) */
$_def_libavcodec
$_def_libavcodec_so

View File

@ -1,9 +0,0 @@
#include "../config.h"
#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif