From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Jan_Dj=E4rv?= Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r101633: Add fd handling with callbacks to select, dbus needs it for async operation. Date: Sun, 26 Sep 2010 21:07:32 +0200 Message-ID: <4C9F99F4.70803@swipnet.se> References: <83sk0wqs06.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1285528077 949 80.91.229.12 (26 Sep 2010 19:07:57 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 26 Sep 2010 19:07:57 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 26 21:07:54 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 1OzwZg-0007Wp-3k for ged-emacs-devel@m.gmane.org; Sun, 26 Sep 2010 21:07:48 +0200 Original-Received: from localhost ([127.0.0.1]:59607 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OzwZf-0003Sm-Hz for ged-emacs-devel@m.gmane.org; Sun, 26 Sep 2010 15:07:47 -0400 Original-Received: from [140.186.70.92] (port=35691 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OzwZZ-0003Sf-JI for emacs-devel@gnu.org; Sun, 26 Sep 2010 15:07:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OzwZY-00043K-Ib for emacs-devel@gnu.org; Sun, 26 Sep 2010 15:07:41 -0400 Original-Received: from smtprelay-h21.telenor.se ([195.54.99.196]:49742) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OzwZX-00041r-5k; Sun, 26 Sep 2010 15:07:39 -0400 Original-Received: from ipb4.telenor.se (ipb4.telenor.se [195.54.127.167]) by smtprelay-h21.telenor.se (Postfix) with ESMTP id 7F183C03E; Sun, 26 Sep 2010 21:07:34 +0200 (CEST) X-SENDER-IP: [85.225.45.35] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoI/ACo3n0xV4S0jPGdsb2JhbACHbZpHDAEBAQE1LcRZhUQEjTg X-IronPort-AV: E=Sophos;i="4.57,239,1283724000"; d="scan'208";a="1675299660" Original-Received: from c-232de155.25-1-64736c10.cust.bredbandsbolaget.se (HELO coolsville.localdomain) ([85.225.45.35]) by ipb4.telenor.se with ESMTP; 26 Sep 2010 21:07:34 +0200 Original-Received: from [172.20.199.13] (zeplin [172.20.199.13]) by coolsville.localdomain (Postfix) with ESMTPSA id 80E317FA05A; Sun, 26 Sep 2010 21:07:33 +0200 (CEST) User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; sv-SE; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 In-Reply-To: <83sk0wqs06.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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:130930 Archived-At: Eli Zaretskii skrev 2010-09-26 20.28: > > The changes that remove the "#ifdef subprocesses" conditionals will > probably break the MSDOS build, because input_wait_mask etc. are only > defined "#ifdef subprocesses". The functions > add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor are > supposed to be no-ops for the MSDOS build. We need another ifdef then as dbus and for example session file descriptors have nothing to do with subprocesses. #ifndef MSDOS perhaps? Jan D.