1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

verbose output changed

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@236 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-03-28 21:43:21 +00:00
parent f65aa95d36
commit fa85adea31
2 changed files with 5 additions and 4 deletions

View File

@ -2,10 +2,9 @@ include ../config.mak
# Generated automatically from Makefile.in by configure. # Generated automatically from Makefile.in by configure.
DEFINES=-rdynamic -fPIC $(WIN32_PATH) $(CDOPT) -D__WINE__ -Ddbg_printf=__vprintf \ DEFINES=-rdynamic -fPIC $(WIN32_PATH) $(CDOPT) -D__WINE__ -Ddbg_printf=__vprintf \
-DTRACE=__vprintf -DTRACE=__vprintf # -DDETAILED_OUT
# -DDETAILED_OUT
LIB_OBJECTS= pe_image.o module.o \ LIB_OBJECTS= setup_FS.o pe_image.o module.o \
ext.o win32.o driver.o pe_resource.o \ ext.o win32.o driver.o pe_resource.o \
resource.o registry.o elfdll.o afl.o vfl.o resource.o registry.o elfdll.o afl.o vfl.o

View File

@ -138,9 +138,10 @@ static void longcount_stub(long long* z)
longcount(z); longcount(z);
} }
int LOADER_DEBUG=0; int LOADER_DEBUG=1;
inline void dbgprintf(char* fmt, ...) inline void dbgprintf(char* fmt, ...)
{ {
#ifdef DETAILED_OUT
if(LOADER_DEBUG) if(LOADER_DEBUG)
{ {
FILE* f; FILE* f;
@ -156,6 +157,7 @@ inline void dbgprintf(char* fmt, ...)
} }
va_end(va); va_end(va);
} }
#endif
} }
char export_names[500][30]={ char export_names[500][30]={
"name1", "name1",