From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-1?Q?Germ=E1n?= Arias Newsgroups: gmane.emacs.devel Subject: Scope of variables in configure Date: Fri, 24 Jun 2011 22:25:42 -0600 Message-ID: <1308975942.5492.14.camel@german-desktop> Reply-To: german@xelalug.org NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1308975969 4292 80.91.229.12 (25 Jun 2011 04:26:09 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 25 Jun 2011 04:26:09 +0000 (UTC) To: Emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jun 25 06:26:04 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QaKRX-0002Sj-VO for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2011 06:26:04 +0200 Original-Received: from localhost ([::1]:49626 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QaKRW-0003Xh-4r for ged-emacs-devel@m.gmane.org; Sat, 25 Jun 2011 00:26:02 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:37510) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QaKRI-0003XY-MK for emacs-devel@gnu.org; Sat, 25 Jun 2011 00:25:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QaKRH-0000Pl-8G for emacs-devel@gnu.org; Sat, 25 Jun 2011 00:25:48 -0400 Original-Received: from mail-yw0-f41.google.com ([209.85.213.41]:55048) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QaKRH-0000Ph-4P for emacs-devel@gnu.org; Sat, 25 Jun 2011 00:25:47 -0400 Original-Received: by ywb26 with SMTP id 26so1801454ywb.0 for ; Fri, 24 Jun 2011 21:25:46 -0700 (PDT) Original-Received: by 10.236.136.233 with SMTP id w69mr6769286yhi.484.1308975945921; Fri, 24 Jun 2011 21:25:45 -0700 (PDT) Original-Received: from [192.168.1.5] ([190.56.71.84]) by mx.google.com with ESMTPS id e24sm2162609yhk.23.2011.06.24.21.25.43 (version=SSLv3 cipher=OTHER); Fri, 24 Jun 2011 21:25:45 -0700 (PDT) X-Mailer: Evolution 2.22.2 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.213.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:140951 Archived-At: Well, if I define the variable in configure file cat >>confdefs.h <<_ACEOF #define _NATIVE_OBJC_EXCEPTIONS 1 _ACEOF the configuration is successfully. This variable is necessary to GNUstep. But then with "make bootstrap" I get an error produced by the missing of this variable. So, what is the scope of the variable I defined in configure?. Or I need put this in an special place or in a special way. If I try make bootstrap "_NATIVE_OBJC_EXCEPTIONS=1" (I don't know if this is correct) I get the same error. This variable is really necessary in the latest gnustep packages. So, without this variable isn't possible test emacs with gnustep. Any advice? Thanks.