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
@@ -201,10 +201,18 @@ inline void dprintf(const char* fmt,...) {}
# else # else
# ifdef DEBUG # ifdef DEBUG
# if defined(__BEOS__)
# define dprintf(fmt...) printf(fmt)
# else
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__) # define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# endif
# else
# if defined(__BEOS__)
# define dprintf(fmt...)
# else # else
# define dprintf(fmt,...) # define dprintf(fmt,...)
# endif # endif
# endif
# endif /* !CONFIG_WIN32 */ # endif /* !CONFIG_WIN32 */