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
+3 -3
View File
@@ -3,9 +3,9 @@ SubDir OBOS_TOP src add-ons media plugins avcodec ;
UsePrivateHeaders media ; UsePrivateHeaders media ;
Addon avcodec : media plugins : Addon avcodec : media plugins :
avcodec.cpp # avcodec.cpp
codectbl.cpp # codectbl.cpp
video_util.cpp # video_util.cpp
: :
false false
: :
+1 -1
View File
@@ -25,7 +25,7 @@
//#define DO_PROFILING //#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;}; struct codec_table { CodecID id; media_type type; media_format_family family; uint32 fourcc; const char *prettyname;};
@@ -1,7 +1,7 @@
SubDir OBOS_TOP src add-ons media plugins avcodec libavcodec ; SubDir OBOS_TOP src add-ons media plugins avcodec libavcodec ;
SubDirCcFlags -fomit-frame-pointer -DPIC ; SubDirCcFlags -fomit-frame-pointer -DPIC ;
DEFINES += HAVE_AV_CONFIG_H=1 ; SubDirCcFlags -DHAVE_AV_CONFIG_H=1 ;
StaticLibrary avcodec : StaticLibrary avcodec :
4xm.c 4xm.c
@@ -211,9 +211,13 @@ inline void dprintf(const char* fmt,...) {}
# else # else
# ifdef DEBUG # 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 # else
# if defined(CONFIG_BEOS) # if defined(__BEOS__)
# define dprintf(fmt...) # define dprintf(fmt...)
# else # else
# define dprintf(fmt,...) # define dprintf(fmt,...)