From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] /srv/bzr/emacs/trunk r109306: Use an include file in configure.ac's AH_BOTTOM Date: Tue, 31 Jul 2012 21:58:52 +0200 Message-ID: References: <83vch3eu29.fsf@gnu.org> <83sjc7et2f.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1343764787 9563 80.91.229.3 (31 Jul 2012 19:59:47 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 31 Jul 2012 19:59:47 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 31 21:59:41 2012 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 1SwIbU-00020h-A3 for ged-emacs-devel@m.gmane.org; Tue, 31 Jul 2012 21:59:40 +0200 Original-Received: from localhost ([::1]:60850 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwIbT-0007aT-DP for ged-emacs-devel@m.gmane.org; Tue, 31 Jul 2012 15:59:39 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:33536) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwIbQ-0007aO-LG for emacs-devel@gnu.org; Tue, 31 Jul 2012 15:59:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SwIbP-0004ih-P6 for emacs-devel@gnu.org; Tue, 31 Jul 2012 15:59:36 -0400 Original-Received: from mail-pb0-f41.google.com ([209.85.160.41]:53190) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SwIbO-0004iH-9y; Tue, 31 Jul 2012 15:59:34 -0400 Original-Received: by pbbrp2 with SMTP id rp2so13346345pbb.0 for ; Tue, 31 Jul 2012 12:59:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=W+9a/b2U90c3ecEHsyr88an+Y4qLdgNO1Zram7h2jMU=; b=yIy8/Nd1RAovO5ftXcrBBbnHNDKqC9BdJDBjSbiGXhSWKHTMMPSqTDV59lcoYw2tRY qj+6mEYDwV3UwIALdzKy8pZJmwDfzYNgAyq61XQifZgVYbu4oqPegx6lmfPH1x+lL7qJ PCs7VqhFiyNc9sKEmi/+SxR3JNDHqII6cwdQZUWJrAjazMqJOrm0g3Zz/tsPR72Njhjp nBMio4c5ELSr4KIMP9Q6dlzD0Vl4rjg7lL+aGbBslzYwPT60/0Jyua3SQlvQYzDKfnz4 EXDe543rgQh8oUlTS+i4tAFuX1HlN97wcmqZGYIBY9zuntTXGVeHNCwRgCLNgv9iqLwd AeCg== Original-Received: by 10.68.237.103 with SMTP id vb7mr1754427pbc.38.1343764773180; Tue, 31 Jul 2012 12:59:33 -0700 (PDT) Original-Received: by 10.143.41.21 with HTTP; Tue, 31 Jul 2012 12:58:52 -0700 (PDT) In-Reply-To: <83sjc7et2f.fsf@gnu.org> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.160.41 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:152036 Archived-At: On Tue, Jul 31, 2012 at 7:31 PM, Eli Zaretskii wrote: > Either ifdef it in conf_post.h, or provide alloca.h in nt/inc. Hmmm. The code in conf_post.h not just includes alloca.h, but checks that HAVE_ALLOCA is defined, and we don't want that. So adding nt/inc/alloca.h is not enough, unless we want to add "#undef HAVE_ALLOCA" in ms-w32.h, which is piling ugliness upon ugliness. Juanma