From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Albinus Newsgroups: gmane.emacs.devel Subject: Re: Reading D-Bus messages Date: Thu, 23 Sep 2010 15:42:24 +0200 Message-ID: References: <878w2tx6gk.fsf@gmx.de> <4C9A493F.4050701@cornell.edu> <874odhyliu.fsf@gmx.de> <4C9B452E.1040101@cornell.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1285249371 1651 80.91.229.12 (23 Sep 2010 13:42:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 23 Sep 2010 13:42:51 +0000 (UTC) Cc: emacs-devel To: Ken Brown Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 23 15:42:49 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Oym4W-0004fH-4p for ged-emacs-devel@m.gmane.org; Thu, 23 Sep 2010 15:42:48 +0200 Original-Received: from localhost ([127.0.0.1]:34556 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oym4V-0002Kz-Ef for ged-emacs-devel@m.gmane.org; Thu, 23 Sep 2010 09:42:47 -0400 Original-Received: from [140.186.70.92] (port=52342 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Oym4Q-0002Ku-I4 for emacs-devel@gnu.org; Thu, 23 Sep 2010 09:42:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Oym4P-0000Cn-8l for emacs-devel@gnu.org; Thu, 23 Sep 2010 09:42:42 -0400 Original-Received: from mailrelay2.alcatel.de ([194.113.59.96]:52272) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Oym4O-0000CT-Sf for emacs-devel@gnu.org; Thu, 23 Sep 2010 09:42:41 -0400 Original-Received: from destgsu0048.de.alcatel-lucent.com (destgsu0048.de.alcatel-lucent.com [149.204.242.4]) by mailrelay2.alcatel.de (8.14.3/8.14.3/ICT) with ESMTP id o8NDgPHn017795; Thu, 23 Sep 2010 15:42:25 +0200 Original-Received: from slbhn1.alcatel.de (slbhn1.de.alcatel-lucent.com [149.204.90.35]) by destgsu0048.de.alcatel-lucent.com (8.12.3/8.12.3) with ESMTP id o8NDgORZ003379; Thu, 23 Sep 2010 15:42:24 +0200 (MEST) In-Reply-To: <4C9B452E.1040101@cornell.edu> (Ken Brown's message of "Thu, 23 Sep 2010 14:16:46 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-Alcanet-virus-scanned: o8NDgORZ003379 at destgsu0048.de.alcatel-lucent.com X-Scanned-By: MIMEDefang 2.64 on 149.204.45.73 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:130664 Archived-At: Ken Brown writes: > Grepping /usr/include, I see that SIGIO (and FIONREAD) seem to be > defined. So I think the trouble must be that these get undefined in the > emacs build, perhaps because of the '#undef INTERRUPT_INPUT' in > src/s/cygwin.h. I changed it to '#define INTERRUPT_INPUT' and rebuilt, > but dbus still didn't work. I'm in the process of bootstrapping right > now so I can try again. I don't understand the build process well > enough to know whether bootstrapping should be necessary after this change. Same here, even after a bootstrap. For the time being I use #if defined (SIGIO) || defined (CYGWIN) gobble_input (0); #endif /* SIGIO */ But this is ugly, and it shouldn't be the final solution. > Ken Best regards, Michael.