diff options
| author | Daniel Colascione | 2012-10-14 17:38:07 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2012-10-14 17:38:07 -0800 |
| commit | 3e0341b0a481d833942f3964a70e7f3494588ce6 (patch) | |
| tree | 138fdf7ba1d191d706bb51c4e32e73471c5cf91d /src | |
| parent | 33d4113cf5da783b5b1ab559587640f39a0831dc (diff) | |
| download | emacs-3e0341b0a481d833942f3964a70e7f3494588ce6.tar.gz emacs-3e0341b0a481d833942f3964a70e7f3494588ce6.zip | |
Fix cygw32 build break with dbus compilation
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/dbusbind.c | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bb7ddcfd39e..e142cad7bf6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-10-15 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * dbusbind.c: Fix cygw32 build break when compiling with dbus | ||
| 4 | enabled by undefining the symbol "interface", which the platform | ||
| 5 | headers define to something incompatible. | ||
| 6 | |||
| 1 | 2012-10-14 Daniel Colascione <dancol@dancol.org> | 7 | 2012-10-14 Daniel Colascione <dancol@dancol.org> |
| 2 | 8 | ||
| 3 | * image.c (init_tiff_functions, init_imagemagick_functions) | 9 | * image.c (init_tiff_functions, init_imagemagick_functions) |
diff --git a/src/dbusbind.c b/src/dbusbind.c index c2eefd605bb..43938bb79d5 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -32,6 +32,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 32 | #define DBUS_NUM_MESSAGE_TYPES 5 | 32 | #define DBUS_NUM_MESSAGE_TYPES 5 |
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | #ifdef interface | ||
| 36 | #undef interface | ||
| 37 | #endif | ||
| 38 | |||
| 35 | 39 | ||
| 36 | /* Subroutines. */ | 40 | /* Subroutines. */ |
| 37 | static Lisp_Object Qdbus_init_bus; | 41 | static Lisp_Object Qdbus_init_bus; |