From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Brown Newsgroups: gmane.emacs.devel Subject: Re: Is the Cygw32 port ready for testing? Date: Mon, 15 Oct 2012 10:14:26 -0400 Message-ID: References: <507B404C.8050602@cornell.edu> <507B4A96.6000804@dancol.org> <507B6404.8080103@cornell.edu> <507B68BD.2050409@dancol.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1350310489 6422 80.91.229.3 (15 Oct 2012 14:14:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2012 14:14:49 +0000 (UTC) Cc: Emacs To: Daniel Colascione Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 16:14:55 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TNlRS-0004QW-8T for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2012 16:14:50 +0200 Original-Received: from localhost ([::1]:59392 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNlRL-0005uE-C9 for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2012 10:14:43 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:50779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNlRA-0005t3-BX for emacs-devel@gnu.org; Mon, 15 Oct 2012 10:14:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNlR6-0006bn-42 for emacs-devel@gnu.org; Mon, 15 Oct 2012 10:14:32 -0400 Original-Received: from mail-pb0-f41.google.com ([209.85.160.41]:58265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNlR5-0006bf-TX for emacs-devel@gnu.org; Mon, 15 Oct 2012 10:14:28 -0400 Original-Received: by mail-pb0-f41.google.com with SMTP id rq2so5509779pbb.0 for ; Mon, 15 Oct 2012 07:14:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=34sIDwH3Aa6kX9bE3UTttHWsDCO2xWrfJpEnDjVCv+E=; b=lHHSidqpq7x1TU2YUakOEJFljn/h49aUMAUSgwYSwMxUypuho/zDwIbbBxGhm6z9kz pFXmYG92sCRA7Mfg/MruMjkbDZS6brh+fVGHqQFb+oT4k5fr21r+nIKi7n/rb+6dYVOB czRxLdBP0rf7xBDkAfTuCsBvBXDx7rlNR+5qsiyCLMrHKGaV0lbEAB8XaZBvXbSLGeA7 S8YFhRhM0Xugh2Ut82knaKbmrK/iD2HQ+LeMUVi0axz6OVEp8rUwTC4+7uFtUTs5VvYB 4mQmvHS8uzRyCjk0HY9m6HA1ObbcfRdZ/pbhS8QY6rKfLafyaplX6W7IWQc7TuqO+z5h LgOw== Original-Received: by 10.66.86.102 with SMTP id o6mr2213779paz.11.1350310466726; Mon, 15 Oct 2012 07:14:26 -0700 (PDT) Original-Received: by 10.66.73.132 with HTTP; Mon, 15 Oct 2012 07:14:26 -0700 (PDT) In-Reply-To: <507B68BD.2050409@dancol.org> X-Google-Sender-Auth: DkoIFYCQ3wnCRS17DWdGJj3C9VI X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.41 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:154350 Archived-At: On Sun, Oct 14, 2012 at 9:37 PM, Daniel Colascione wrote: > 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; > The build with dbus support still doesn't work. An "Emacs abort" dialogue box comes up during the build [which I've never seen before when doing a Cygwin build] asking if I want to attach gdb. I'm on my way out of town and don't have time to look at this any further. I did verify that the build --without-dbus still works. Ken