~ubuntu-branches/ubuntu/oneiric/almanah/oneiric

« back to all changes in this revision

Viewing changes to src/event-factories/calendar-debug.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-05-16 15:49:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090516154921-2uhvlj8btb4qygmd
Tags: 0.6.1-0ubuntu1
* New upstream release (LP: #368078)
* debian/control:
  - Bump Standards-Version to 3.8.1
  - Add intltool, libedataserver1.2-dev, libedataserverui1.2-dev, 
    libecal1.2-dev, libcryptui-dev as build dependency
  - Remove build dependency on autotools-dev and chrpath
* debian/{control/compat/rules}: Move to mimalistic dh7 style
* Update debian/watch
* Update copyright information

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2004 Free Software Foundation, Inc.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License as
 
6
 * published by the Free Software Foundation; either version 2 of the
 
7
 * License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful, but
 
10
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
17
 * 02111-1307, USA.
 
18
 *
 
19
 * Authors:
 
20
 *     Mark McLoughlin  <mark@skynet.ie>
 
21
 */
 
22
 
 
23
#ifndef __CALENDAR_DEBUG_H__
 
24
#define __CALENDAR_DEBUG_H__
 
25
 
 
26
#include <glib.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
#ifdef CALENDAR_ENABLE_DEBUG
 
31
 
 
32
#include <stdio.h>
 
33
 
 
34
#ifdef G_HAVE_ISO_VARARGS
 
35
#  define dprintf(...) fprintf (stderr, __VA_ARGS__);
 
36
#elif defined(G_HAVE_GNUC_VARARGS)
 
37
#  define dprintf(args...) fprintf (stderr, args);
 
38
#endif
 
39
 
 
40
#else /* if !defined (CALENDAR_DEBUG) */
 
41
 
 
42
#ifdef G_HAVE_ISO_VARARGS
 
43
#  define dprintf(...)
 
44
#elif defined(G_HAVE_GNUC_VARARGS)
 
45
#  define dprintf(args...)
 
46
#endif
 
47
 
 
48
#endif /* CALENDAR_ENABLE_DEBUG */
 
49
 
 
50
G_END_DECLS
 
51
 
 
52
#endif /* __CALENDAR_DEBUG_H__ */