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

moved some obsolete debug stuff

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9963 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-04-21 19:35:39 +00:00
parent 1a29847944
commit e955373ec0
2 changed files with 11 additions and 2 deletions

View File

@ -1,8 +1,8 @@
include ../config.mak
# Generated automatically from Makefile.in by configure.
DEFINES=-DMPLAYER -D__WINE__ -Ddbg_printf=__vprintf \
-DTRACE=__vprintf # -DDETAILED_OUT
DEFINES=-DMPLAYER -D__WINE__ #-Ddbg_printf=__vprintf \
#-DTRACE=__vprintf # -DDETAILED_OUT
LIB_OBJECTS= ldt_keeper.o pe_image.o module.o \
ext.o win32.o driver.o pe_resource.o \

9
loader/config.h Normal file
View File

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