view loader/debug.h @ 35182:b534bdb14c5f

build/configure: Move addition of extra CFLAGS further down The test is know made on cc_vendor after we correctly identified the compiler. Before we were just assuming if the program is named cc it is GCC. For the record: The condition may still/or in future be wrong for some compilers on darwin and I doubt the flags are really necessary nowadays. Patch by Xidorn Quan >quanxunzhen gmail.com<
author al
date Sat, 27 Oct 2012 12:22:26 +0000
parents a8ea87c71d18
children
line wrap: on
line source

#ifndef MPLAYER_DEBUG_H
#define MPLAYER_DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* MPLAYER_DEBUG_H */