~xubuntu-dev/libxfce4util/maverick

« back to all changes in this revision

Viewing changes to libxfce4util/libxfce4util-config.h

  • Committer: Bazaar Package Importer
  • Author(s): Yves-Alexis Perez
  • Date: 2008-07-06 10:58:49 UTC
  • mfrom: (1.2.11 upstream)
  • mto: (2.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080706105849-zetal1iaztbjbj6x
Tags: 4.4.2-3
* debian/control:
  - fixed typo in short description.                          closes: #489493
  - removed Martin Loschwitz from Uploaders.
  - updated standards version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: libxfce4util-config.h.in 21068 2006-04-18 21:35:22Z benny $ */
 
1
/* $Id: libxfce4util-config.h.in 24694 2007-01-22 14:12:39Z benny $ */
2
2
/*-
3
 
 * Copyright (c) 2003-2006 Benedikt Meurer <benny@xfce.org>
 
3
 * Copyright (c) 2003-2007 Benedikt Meurer <benny@xfce.org>
4
4
 * All rights reserved.
5
5
 *
6
6
 * This library is free software; you can redistribute it and/or
31
31
G_BEGIN_DECLS;
32
32
 
33
33
#define LIBXFCE4UTIL_MAJOR_VERSION      4
34
 
#define LIBXFCE4UTIL_MINOR_VERSION      3
35
 
#define LIBXFCE4UTIL_MICRO_VERSION      99
 
34
#define LIBXFCE4UTIL_MINOR_VERSION      4
 
35
#define LIBXFCE4UTIL_MICRO_VERSION      2
36
36
 
37
37
#define LIBXFCE4UTIL_CHECK_VERSION(major,minor,micro) \
38
38
  (LIBXFCE4UTIL_MAJOR_VERSION > (major) \
46
46
extern const guint libxfce4util_minor_version;
47
47
extern const guint libxfce4util_micro_version;
48
48
 
 
49
/* verify that G_GNUC_WARN_UNUSED_RESULT is defined */
 
50
#if !defined(G_GNUC_WARN_UNUSED_RESULT)
 
51
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
 
52
#define G_GNUC_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
 
53
#else
 
54
#define G_GNUC_WARN_UNUSED_RESULT
 
55
#endif /* __GNUC__ */
 
56
#endif /* !defined(G_GNUC_WARN_UNUSED_RESULT) */
 
57
 
49
58
G_END_DECLS;
50
59
 
51
60
#endif  /* !__LIBXFCE4UTIL_CONFIG_H__ */