From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: MS-Windows build using Posix configury Date: Thu, 16 May 2013 09:56:42 +0300 Message-ID: <83obcb4dlh.fsf@gnu.org> References: <83d2tu49lu.fsf@gnu.org> <8361z2psr1.fsf@gnu.org> <83zjweo5dh.fsf@gnu.org> <83sj25nym2.fsf@gnu.org> <837gjhnowi.fsf@gnu.org> <8338u4o39r.fsf@gnu.org> <83zjwbkmt2.fsf@gnu.org> <83wqrfkjvo.fsf@gnu.org> <838v3qebns.fsf@gnu.org> <83wqr9csah.fsf@gnu.org> <83wqr297da.fsf@gnu.org> <83txm34g6k.fsf@gnu.org> <51947D3E.50801@cs.ucla.edu> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1368687422 19739 80.91.229.3 (16 May 2013 06:57:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 16 May 2013 06:57:02 +0000 (UTC) Cc: emacs-devel@gnu.org To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu May 16 08:57:01 2013 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 1Ucs7X-0006Kp-PG for ged-emacs-devel@m.gmane.org; Thu, 16 May 2013 08:56:59 +0200 Original-Received: from localhost ([::1]:48467 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucs7X-00030J-4W for ged-emacs-devel@m.gmane.org; Thu, 16 May 2013 02:56:59 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:51254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucs7S-00030C-8F for emacs-devel@gnu.org; Thu, 16 May 2013 02:56:55 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ucs7R-000104-BL for emacs-devel@gnu.org; Thu, 16 May 2013 02:56:54 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:63507) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucs7R-0000zl-3C for emacs-devel@gnu.org; Thu, 16 May 2013 02:56:53 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MMV00I00PLF4P00@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Thu, 16 May 2013 09:56:44 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MMV00IT1PYJ4I20@a-mtaout20.012.net.il>; Thu, 16 May 2013 09:56:44 +0300 (IDT) In-reply-to: <51947D3E.50801@cs.ucla.edu> X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.166 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:159612 Archived-At: > Date: Wed, 15 May 2013 23:31:26 -0700 > From: Paul Eggert > CC: emacs-devel@gnu.org > > On 05/15/2013 11:00 PM, Eli Zaretskii wrote: > > However, I'd rather not remove parts of gnulib modules, I prefer to > > either include the whole module or none of it. > > Even the POSIX build configuration isn't that rigid: for example, > it omits m4/fcntl-o.m4 and m4/warn-on-use.m4 even though they're > part of the corresponding gnulib modules. If the Windows port > doesn't need to compile qset-acl.c then it sounds simpler to > just omit qset-acl.c from nt/gnulib.mk. That's fine with me, thanks. Do you also feel that some minor change in qset-acl.c, to cause the compilation fall back on chmod_or_fchmod, is not justified? That would allow to compile that file. And another question: what is the difference between the files mentioned in libgnu_a_SOURCES and those in EXTRA_libgnu_a_SOURCES? Like here: ## begin gnulib module qacl libgnu_a_SOURCES += acl-errno-valid.c file-has-acl.c qcopy-acl.c EXTRA_DIST += acl-internal.h acl.h acl_entries.c EXTRA_libgnu_a_SOURCES += acl_entries.c ## end gnulib module qacl