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 10:30:22 +0300 Message-ID: <83li7f4c1d.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> <83obcb4dlh.fsf@gnu.org> <519487CD.5090102@cs.ucla.edu> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1368689437 7266 80.91.229.3 (16 May 2013 07:30:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 16 May 2013 07:30:37 +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 09:30:36 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 1Ucse2-0005yN-UE for ged-emacs-devel@m.gmane.org; Thu, 16 May 2013 09:30:35 +0200 Original-Received: from localhost ([::1]:37596 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucse2-00067Z-Gh for ged-emacs-devel@m.gmane.org; Thu, 16 May 2013 03:30:34 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:32862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucsdx-00060M-36 for emacs-devel@gnu.org; Thu, 16 May 2013 03:30:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ucsdv-0004FN-Uo for emacs-devel@gnu.org; Thu, 16 May 2013 03:30:29 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:44151) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ucsdv-0004FD-N5 for emacs-devel@gnu.org; Thu, 16 May 2013 03:30:27 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MMV00I00QJ8F100@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Thu, 16 May 2013 10:30:25 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MMV00IQRRIO4IA0@a-mtaout20.012.net.il>; Thu, 16 May 2013 10:30:24 +0300 (IDT) In-reply-to: <519487CD.5090102@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:159614 Archived-At: > Date: Thu, 16 May 2013 00:16:29 -0700 > From: Paul Eggert > CC: emacs-devel@gnu.org > > On 05/15/2013 11:56 PM, Eli Zaretskii wrote: > > > 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. > > If I understand you correctly, there's no need to compile the file, > as its function is never called. So I'd just omit it from > nt/gnulib.mk; that's simpler. Thanks, will do. > > ## 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 > > There's a call AC_REPLACE_FUNCS([acl_entries]) in gl_FUNC_ACL, > which means the autoconf machinery decides whether to compile > acl_entries.c based on whether the system already has an acl_entries. > The functions acl_errno_valid, file_has_acl, and qcopy_acl are > not like that: they're meant to be compiled no matter what, > so one can simply tell Automake about them directly, using > libgnu_a_SOURCES. Got it. Thanks again.