build patches

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6467 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2004-02-02 07:13:30 +00:00
parent 8d32e5c625
commit cce6e4c938
4 changed files with 11 additions and 7 deletions

View File

@ -3,9 +3,9 @@ SubDir OBOS_TOP src add-ons media plugins avcodec ;
UsePrivateHeaders media ;
Addon avcodec : media plugins :
avcodec.cpp
codectbl.cpp
video_util.cpp
# avcodec.cpp
# codectbl.cpp
# video_util.cpp
:
false
:

View File

@ -25,7 +25,7 @@
//#define DO_PROFILING
#include "video_util.h"
//#include "video_util.h"
struct codec_table { CodecID id; media_type type; media_format_family family; uint32 fourcc; const char *prettyname;};

View File

@ -1,7 +1,7 @@
SubDir OBOS_TOP src add-ons media plugins avcodec libavcodec ;
SubDirCcFlags -fomit-frame-pointer -DPIC ;
DEFINES += HAVE_AV_CONFIG_H=1 ;
SubDirCcFlags -DHAVE_AV_CONFIG_H=1 ;
StaticLibrary avcodec :
4xm.c

View File

@ -211,9 +211,13 @@ inline void dprintf(const char* fmt,...) {}
# else
# ifdef DEBUG
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# if defined(__BEOS__)
# define dprintf(fmt,args...) printf(fmt, ## args)
# else
# define dprintf(fmt,...) printf(fmt, __VA_ARGS__)
# endif
# else
# if defined(CONFIG_BEOS)
# if defined(__BEOS__)
# define dprintf(fmt...)
# else
# define dprintf(fmt,...)