~ubuntu-branches/ubuntu/natty/dbus/natty-201012211412

« back to all changes in this revision

Viewing changes to dbus/dbus-arch-deps.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-08-09 16:09:57 UTC
  • mfrom: (1.3.8 sid)
  • Revision ID: james.westby@ubuntu.com-20100809160957-3xh1a1tnhxebs159
Tags: 1.2.24-3ubuntu1
* Resync on Debian
* Remaining Ubuntu Changes:
  - Install into / rather than /usr.
  - debian/control: Depend on ConsoleKit for "at_console" policy stanza.
  - debian/dbus.postinst: Do not restart dbus on upgrades, since it breaks
    too many applications. Instead, trigger a "reboot required" notification.
  - debian/dbus.postinst: Create /var/run/dbus in postinst to handle system
    being rebooted before package is configured.  LP: #275229.
  - Add debian/dbus.upstart and bump debhelper b-dep to ensure that it is
    properly installed.
  - 20_system_conf_limit.patch: Increase max_match_rules_per_connection for
    the system bus to 5000 (LP #454093)
  - 81-session.conf-timeout.patch: Raise the service startup timeout from 25
    to 60 seconds. It may be too short on the live CD with slow machines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
#if 1
35
35
#define DBUS_HAVE_INT64 1
36
 
_DBUS_GNUC_EXTENSION typedef long long dbus_int64_t;
37
 
_DBUS_GNUC_EXTENSION typedef unsigned long long dbus_uint64_t;
 
36
_DBUS_GNUC_EXTENSION typedef long dbus_int64_t;
 
37
_DBUS_GNUC_EXTENSION typedef unsigned long dbus_uint64_t;
38
38
 
39
 
#define DBUS_INT64_CONSTANT(val)  (_DBUS_GNUC_EXTENSION (val##LL))
40
 
#define DBUS_UINT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val##ULL))
 
39
#define DBUS_INT64_CONSTANT(val)  (_DBUS_GNUC_EXTENSION (val##L))
 
40
#define DBUS_UINT64_CONSTANT(val) (_DBUS_GNUC_EXTENSION (val##UL))
41
41
 
42
42
#else
43
43
#undef DBUS_HAVE_INT64
56
56
 */
57
57
#define DBUS_MAJOR_VERSION 1
58
58
#define DBUS_MINOR_VERSION 2
59
 
#define DBUS_MICRO_VERSION 16
60
 
 
61
 
#define DBUS_VERSION_STRING "1.2.16"
62
 
 
63
 
#define DBUS_VERSION ((1 << 16) | (2 << 8) | (16)) 
 
59
#define DBUS_MICRO_VERSION 24
 
60
 
 
61
#define DBUS_VERSION_STRING "1.2.24"
 
62
 
 
63
#define DBUS_VERSION ((1 << 16) | (2 << 8) | (24)) 
64
64
 
65
65
DBUS_END_DECLS
66
66