From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: bug#54245: 29.0.50; select usage in GNUstep Date: Mon, 14 Mar 2022 15:12:20 +0200 Message-ID: <83sfrkk79n.fsf@gnu.org> References: <877d99g2g1.fsf@gnus.org> <87r17hhexs.fsf@gmail.com> <87bkylqlbk.fsf@yahoo.com> <87mti4hby5.fsf@gmail.com> <87lexofcm5.fsf@gnus.org> <87h780ga7u.fsf@gmail.com> <874k40x4o7.fsf@yahoo.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6644"; mail-complaints-to="usenet@ciao.gmane.io" Cc: rpluim@gmail.com, larsi@gnus.org, emacs-devel@gnu.org To: Po Lu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Mar 14 14:42:28 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nTkxv-0001Xl-5w for ged-emacs-devel@m.gmane-mx.org; Mon, 14 Mar 2022 14:42:27 +0100 Original-Received: from localhost ([::1]:46770 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nTkxt-00052L-VX for ged-emacs-devel@m.gmane-mx.org; Mon, 14 Mar 2022 09:42:25 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:36418) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nTkUz-0007HZ-GT for emacs-devel@gnu.org; Mon, 14 Mar 2022 09:12:33 -0400 Original-Received: from [2001:470:142:3::e] (port=47496 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nTkUz-0005XP-5O; Mon, 14 Mar 2022 09:12:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=tTkimxYhxJBg6LdUJG2egPNv6Vc8BblUg7crNYiHnZE=; b=mFnooJfptAmW 9NkxuoAzq6u5GyOAnyApVIKP0iqYbOfkzAAz1pNVUqW07nBZEZDb3PXLPeOhxj7DFEMYUQOQFfuCo eUjhq+dbVglrMrP4VVkUs6aAa0eCuQt1uBt1KI2osn6Oc+ep7RIiHK3a/W7NvnkakH1YN15qW6js9 T37KuWCWxLEB81gChZ2BCQFLfMeKW/wZ8nO4AQTASvAENkaZ5+HdCpNN01/aG3CgFHA0c+6cgruy8 v0ysAKIIyhaj2kOPliEtv2vaq0Z+exmdrsdTwWzTGNyzFmr8R4CQd+UhZzWfJL/PZ2CGet4Ex+nrN oD5IBH+xbeubs4kEHiL1DQ==; Original-Received: from [87.69.77.57] (port=1540 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nTkUy-0005R2-IQ; Mon, 14 Mar 2022 09:12:32 -0400 In-Reply-To: <874k40x4o7.fsf@yahoo.com> (message from Po Lu on Mon, 14 Mar 2022 17:30:00 +0800) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:287142 Archived-At: > From: Po Lu > Cc: Lars Ingebrigtsen , emacs-devel@gnu.org > Date: Mon, 14 Mar 2022 17:30:00 +0800 > > Robert Pluim writes: > > > I think this means we can now remove the checking for select in > > configure, and the HAVE_SELECT define (I took a look, but then ran > > into the w32 and msdos ports, and decided to stop :-) ) > > AFAICT the MS-DOS port doesn't have select More accurately: the C library used by the MS-DOS port does have 'select', but it is not "good enough" for Emacs purposes, so we use a separate Emacs-specific implementation in msdos.c.