incorporated my private dprintf patches, avcodec now building

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6190 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2004-01-20 06:46:42 +00:00
parent 4bea0cb151
commit 3b8d4ddc65

View File

@ -201,9 +201,17 @@ inline void dprintf(const char* fmt,...) {}
# else
# ifdef DEBUG
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# if defined(__BEOS__)
# define dprintf(fmt...) printf(fmt)
# else
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# endif
# else
# define dprintf(fmt,...)
# if defined(__BEOS__)
# define dprintf(fmt...)
# else
# define dprintf(fmt,...)
# endif
# endif
# endif /* !CONFIG_WIN32 */