emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is the Cygw32 port ready for testing?


From: Daniel Colascione
Subject: Re: Is the Cygw32 port ready for testing?
Date: Sun, 14 Oct 2012 18:37:01 -0700
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1

On 10/14/2012 6:16 PM, Ken Brown wrote:
> On 10/14/2012 7:28 PM, Daniel Colascione wrote:
>> Thanks for reporting the build break. I've updated the trunk. Revision 110548
>> should resolve the problem.
> 
> Thanks.  The build now completes as long as I use the configure option
> --without-dbus.  Otherwise the build fails while compiling dbusbind.c:

Thanks. The symbol "interface" is defined to something else by the platform
headers. The following trivial patch resolves the issue.  The alternative is to
replace the use of "interface" with some other symbol everywhere in the source
file; I'll write up a patch to do that if someone objects to this one.

=== modified file 'src/dbusbind.c'
--- src/dbusbind.c      2012-09-15 07:06:56 +0000
+++ src/dbusbind.c      2012-10-15 01:30:49 +0000
@@ -32,6 +32,10 @@
 #define DBUS_NUM_MESSAGE_TYPES 5
 #endif

+#ifdef interface
+#undef interface
+#endif
+
 
 /* Subroutines.  */
 static Lisp_Object Qdbus_init_bus;

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]