Fix cygw32 build break with dbus compilation

This commit is contained in:
Daniel Colascione 2012-10-14 17:38:07 -08:00
parent 33d4113cf5
commit 3e0341b0a4
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2012-10-15 Daniel Colascione <dancol@dancol.org>
* dbusbind.c: Fix cygw32 build break when compiling with dbus
enabled by undefining the symbol "interface", which the platform
headers define to something incompatible.
2012-10-14 Daniel Colascione <dancol@dancol.org>
* image.c (init_tiff_functions, init_imagemagick_functions)

View file

@ -32,6 +32,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
#define DBUS_NUM_MESSAGE_TYPES 5
#endif
#ifdef interface
#undef interface
#endif
/* Subroutines. */
static Lisp_Object Qdbus_init_bus;