~ubuntu-branches/ubuntu/natty/kdemultimedia/natty-proposed

« back to all changes in this revision

Viewing changes to libkcompactdisc/wmlib/include/wm_config.h

  • Committer: Bazaar Package Importer
  • Author(s): Debian Qt/KDE Maintainers
  • Date: 2011-05-26 02:41:36 UTC
  • mfrom: (0.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 108.
  • Revision ID: james.westby@ubuntu.com-20110526024136-jjwsigfy402jhupm
Tags: upstream-4.6.3
ImportĀ upstreamĀ versionĀ 4.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
 
353
353
#define DEBUG
354
354
#ifdef DEBUG
355
 
 #define DEBUGLOG(fmt, args...) fprintf(stderr, fmt, ##args)
 
355
 #if defined(__SUNPRO_C) || defined(__SUNPRO_CC)
 
356
  #define DEBUGLOG(...) fprintf(stderr, __VA_ARGS__)
 
357
 #else
 
358
  #define DEBUGLOG(fmt, args...) fprintf(stderr, fmt, ##args)
 
359
 #endif
356
360
#else
357
361
 #define DEBUGLOG(fmt, args...)
358
362
#endif
359
 
#define ERRORLOG(fmt, args...) fprintf(stderr, fmt, ##args)
 
363
#if defined(__SUNPRO_C) || defined(__SUNPRO_CC)
 
364
 #define ERRORLOG(...) fprintf(stderr, __VA_ARGS__)
 
365
#else
 
366
 #define ERRORLOG(fmt, args...) fprintf(stderr, fmt, ##args)
 
367
#endif
360
368
 
361
369
#endif /* WM_CONFIG_H */
362
370