diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-12 12:31:13 +0000 |
commit | ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2 (patch) | |
tree | 2da90cafcf53ca75af95ae22c8e9269a55447e4b /src/xine-utils/xineutils.h | |
parent | 7329ae3b83a71b6bc9b55c659a582afb307acd08 (diff) | |
download | xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.gz xine-lib-ecde3c9f3e46a78f653829f8b12241dc7fbe9fb2.tar.bz2 |
- adding support for the Intel compiler icc
- general multipass compilation make targets
CVS patchset: 5149
CVS date: 2003/07/12 12:31:13
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index dc05f2057..d80e00b07 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.55 2003/07/12 03:10:15 miguelfreitas Exp $ + * $Id: xineutils.h,v 1.56 2003/07/12 12:31:13 mroi Exp $ * */ #ifndef XINEUTILS_H @@ -830,7 +830,7 @@ extern int v_b_table[256]; void xine_print_trace(void); -#ifdef DEBUG +#ifdef DEBUG # define XINE_ABORT() \ abort(); #else @@ -842,7 +842,7 @@ void xine_print_trace(void); * Provide assert like feature with better description of failure * Thanks to Mark Thomas */ -#if __GNUC__ +#ifdef __GNUC__ # define XINE_ASSERT(exp, desc, args...) \ do { \ if (!(exp)) { \ @@ -910,17 +910,17 @@ void xine_print_trace(void); printf( fmt, ##args ); \ }while(0) #else - #define lprintf(fmt, ...) \ + #define lprintf(...) \ do{ \ LONG_LOG_MODULE_STRING \ - printf( fmt, __VA_ARGS__ ); \ + printf( __VA_ARGS__ ); \ }while(0) #endif /* __GNUC__ */ #else #ifdef __GNUC__ #define lprintf(fmt, args...) ; #else - #define lprintf(fmt, ...) ; + #define lprintf(...) ; #endif /* __GNUC__ */ #endif /* LOG */ @@ -933,11 +933,11 @@ void xine_print_trace(void); } \ }while(0) #else - #define llprintf(cat, fmt, ...) \ + #define llprintf(cat, ...) \ do{ \ if(cat){ \ LONG_LOG_MODULE_STRING \ - printf( fmt, __VA_ARGS__ ); \ + printf( __VA_ARGS__ ); \ } \ }while(0) #endif /* __GNUC__ */ @@ -951,11 +951,11 @@ void xine_print_trace(void); } \ } while(0) #else - #define xprintf(xine, verbose, fmt, ...) \ + #define xprintf(xine, verbose, ...) \ do { \ if((xine)->verbosity >= verbose){ \ LOG_MODULE_STRING \ - printf(fmt, __VA_ARGS__); \ + printf(__VA_ARGS__); \ } \ } while(0) #endif /* __GNUC__ */ |