From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.lisp.guile.devel Subject: Re: Compile ice-9/popen.scm for MinGW Date: Thu, 03 Jul 2014 19:22:25 +0300 Message-ID: <834myy2z0e.fsf@gnu.org> References: <83oaxb66o4.fsf@gnu.org> <87d2dq3bcr.fsf@gnu.org> <837g3y5u3q.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE X-Trace: ger.gmane.org 1404404585 5361 80.91.229.3 (3 Jul 2014 16:23:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Jul 2014 16:23:05 +0000 (UTC) Cc: mhw@netris.org, guile-devel@gnu.org To: ludo@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jul 03 18:23:00 2014 Return-path: Envelope-to: guile-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 1X2jmk-00071K-Oa for guile-devel@m.gmane.org; Thu, 03 Jul 2014 18:22:58 +0200 Original-Received: from localhost ([::1]:60770 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2jmk-0007ju-C0 for guile-devel@m.gmane.org; Thu, 03 Jul 2014 12:22:58 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2jmd-0007jF-6m for guile-devel@gnu.org; Thu, 03 Jul 2014 12:22:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X2jmU-0005vc-EG for guile-devel@gnu.org; Thu, 03 Jul 2014 12:22:51 -0400 Original-Received: from mtaout27.012.net.il ([80.179.55.183]:58948) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2jmU-0005uB-5d; Thu, 03 Jul 2014 12:22:42 -0400 Original-Received: from conversion-daemon.mtaout27.012.net.il by mtaout27.012.net.il (HyperSendmail v2007.08) id <0N85000008WLJM00@mtaout27.012.net.il>; Thu, 03 Jul 2014 19:19:02 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by mtaout27.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0N8500H9Y9BPMAA0@mtaout27.012.net.il>; Thu, 03 Jul 2014 19:19:02 +0300 (IDT) In-reply-to: <837g3y5u3q.fsf@gnu.org> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 80.179.55.183 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17281 Archived-At: > Date: Mon, 30 Jun 2014 17:51:05 +0300 > From: Eli Zaretskii > Cc: mhw@netris.org, guile-devel@gnu.org >=20 > > From: ludo@gnu.org (Ludovic Court=C3=A8s) > > Cc: Mark H Weaver , guile-devel@gnu.org > > Date: Mon, 30 Jun 2014 13:06:44 +0200 > >=20 > > Eli Zaretskii skribis: > >=20 > > > Once open-process worked for me, I quickly found out that > > > modules/ice-9/popen.scm is not being compiled. This is because > > > configure.ac explicitly excludes it for systems lacking 'fork': > > > > > > AM_CONDITIONAL([BUILD_ICE_9_POPEN], > > > [test "x$enable_posix" =3D "xyes" && test "x$ac_cv_func_fo= rk" =3D "xyes"]) > > > > > > Not sure how best to fix this; perhaps the test should be remov= ed > > > altogether (are there any supported systems that cannot support > > > popen.scm?). > >=20 > > The test was in response to , which is= a > > MinGW issue, so it=E2=80=99s safe to remove it when the fork-less= MinGW > > replacement that you proposed is committed. >=20 > OK, will do. Thanks. Done, including the suitable changes in module/Makefile.am.