From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Daniel Colascione Newsgroups: gmane.emacs.devel Subject: Re: Is the Cygw32 port ready for testing? Date: Sun, 14 Oct 2012 18:37:01 -0700 Message-ID: <507B68BD.2050409@dancol.org> References: <507B404C.8050602@cornell.edu> <507B4A96.6000804@dancol.org> <507B6404.8080103@cornell.edu> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigBC39CB68438C548504447B61" X-Trace: ger.gmane.org 1350265028 5867 80.91.229.3 (15 Oct 2012 01:37:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 15 Oct 2012 01:37:08 +0000 (UTC) Cc: Emacs To: Ken Brown Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Oct 15 03:37:15 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 1TNZcJ-0000N4-5b for ged-emacs-devel@m.gmane.org; Mon, 15 Oct 2012 03:37:15 +0200 Original-Received: from localhost ([::1]:59073 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNZcC-0005Xs-Fk for ged-emacs-devel@m.gmane.org; Sun, 14 Oct 2012 21:37:08 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:35755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNZc9-0005Xk-Am for emacs-devel@gnu.org; Sun, 14 Oct 2012 21:37:06 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TNZc8-0002F9-6v for emacs-devel@gnu.org; Sun, 14 Oct 2012 21:37:05 -0400 Original-Received: from dancol.org ([96.126.100.184]:47992) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TNZc8-0002Es-1r for emacs-devel@gnu.org; Sun, 14 Oct 2012 21:37:04 -0400 Original-Received: from c-76-22-66-162.hsd1.wa.comcast.net ([76.22.66.162] helo=[0.0.0.0]) by dancol.org with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1TNZc6-0000i8-Sk; Sun, 14 Oct 2012 18:37:02 -0700 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20120428 Thunderbird/12.0.1 In-Reply-To: <507B6404.8080103@cornell.edu> X-Enigmail-Version: 1.4.2 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 96.126.100.184 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:154341 Archived-At: This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigBC39CB68438C548504447B61 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable 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. >=20 > 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 platfo= rm headers. The following trivial patch resolves the issue. The alternative= is to replace the use of "interface" with some other symbol everywhere in the s= ource file; I'll write up a patch to do that if someone objects to this one. =3D=3D=3D 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 + =0C /* Subroutines. */ static Lisp_Object Qdbus_init_bus; --------------enigBC39CB68438C548504447B61 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAlB7aL0ACgkQ17c2LVA10VtMggCgpBtlsLW65J1MAYTfwZeZpMHY 1JEAn1bnaOgm1vtGRAcdVbJjDwzYF2ns =JDyh -----END PGP SIGNATURE----- --------------enigBC39CB68438C548504447B61--