~ubuntu-branches/ubuntu/quantal/libgail-gnome/quantal

« back to all changes in this revision

Viewing changes to gail-gnome/gail-gnome-debug.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2008-11-21 19:46:18 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20081121194618-p6cv7rzalopafnq6
Tags: 1.20.1-1
* New upstream bugfix release.
* Link with -Wl,-Bsymbolic to avoid encountering bugs similar to the 
  one fixed upstream.
* Also pass -Wl,-O1 -Wl,-z,defs -Wl,--as-needed.
* 90_relibtoolize.patch: relibtoolize to avoid the amd64 rpath issue.
* 99_ltmain_as-needed.patch: make --as-needed work.
* Standards version is 3.8.0.
* Don’t call dh_makeshlibs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
G_BEGIN_DECLS
27
27
 
28
 
#ifdef GAIL_GNOME_DEBUG
 
28
#ifdef G_ENABLE_DEBUG
29
29
 
30
30
#include <stdio.h>
31
31
 
32
 
#define dprintf(format...) fprintf (stderr, format)
 
32
#define debug_printf(format...) fprintf (stderr, format)
33
33
 
34
34
#else /* G_ENABLE_DEBUG */
35
35
 
36
 
static inline void dprintf (const char *format, ...) { };
 
36
static inline void debug_printf (const char *format, ...) { };
37
37
 
38
38
#endif /* G_ENABLE_DEBUG */
39
39