From: Simon McVittie Date: Wed, 10 Oct 2007 12:04:08 +0000 (+0100) Subject: Use DBUS_GNUC_EXTENSION to avoid -ansi -pedantic warnings about use of long long... X-Git-Tag: dbus-1.1.3~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2eace3a8b304a1a5ec41bb1a0ef14062a74b0af;p=thirdparty%2Fdbus.git Use DBUS_GNUC_EXTENSION to avoid -ansi -pedantic warnings about use of long long. (#717) --- diff --git a/dbus/dbus-arch-deps.h.in b/dbus/dbus-arch-deps.h.in index 2a02a7f5c..65d406add 100644 --- a/dbus/dbus-arch-deps.h.in +++ b/dbus/dbus-arch-deps.h.in @@ -33,8 +33,8 @@ DBUS_BEGIN_DECLS #if @DBUS_HAVE_INT64@ #define DBUS_HAVE_INT64 1 -typedef @DBUS_INT64_TYPE@ dbus_int64_t; -typedef unsigned @DBUS_INT64_TYPE@ dbus_uint64_t; +DBUS_GNUC_EXTENSION typedef @DBUS_INT64_TYPE@ dbus_int64_t; +DBUS_GNUC_EXTENSION typedef unsigned @DBUS_INT64_TYPE@ dbus_uint64_t; #define DBUS_INT64_CONSTANT(val) @DBUS_INT64_CONSTANT@ #define DBUS_UINT64_CONSTANT(val) @DBUS_UINT64_CONSTANT@