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: Re: Problem to configure --with-ns with GNUstep Date: Sun, 19 Jun 2011 23:42:01 -0600 Message-ID: <1308548521.5494.9.camel@german-desktop> References: <1308378183.5492.5.camel@german-desktop> <4DFC5D66.8070505@swipnet.se> <1308421677.5538.4.camel@german-desktop> <4DFDBC85.4050509@swipnet.se> 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 1308548551 5874 80.91.229.12 (20 Jun 2011 05:42:31 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 20 Jun 2011 05:42:31 +0000 (UTC) Cc: Emacs To: Jan =?ISO-8859-1?Q?Dj=E4rv?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 20 07:42:26 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 1QYXFi-0001r8-5a for ged-emacs-devel@m.gmane.org; Mon, 20 Jun 2011 07:42:26 +0200 Original-Received: from localhost ([::1]:55250 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYXFh-0006y6-87 for ged-emacs-devel@m.gmane.org; Mon, 20 Jun 2011 01:42:25 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:38779) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYXFO-0006xe-Th for emacs-devel@gnu.org; Mon, 20 Jun 2011 01:42:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QYXFN-0000sf-D6 for emacs-devel@gnu.org; Mon, 20 Jun 2011 01:42:06 -0400 Original-Received: from mail-yw0-f41.google.com ([209.85.213.41]:57046) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QYXFN-0000sZ-3L for emacs-devel@gnu.org; Mon, 20 Jun 2011 01:42:05 -0400 Original-Received: by ywb26 with SMTP id 26so2729227ywb.0 for ; Sun, 19 Jun 2011 22:42:04 -0700 (PDT) Original-Received: by 10.236.77.34 with SMTP id c22mr7039359yhe.120.1308548524207; Sun, 19 Jun 2011 22:42:04 -0700 (PDT) Original-Received: from [192.168.1.5] ([190.148.239.196]) by mx.google.com with ESMTPS id u64sm3331594yhm.69.2011.06.19.22.42.02 (version=SSLv3 cipher=OTHER); Sun, 19 Jun 2011 22:42:03 -0700 (PDT) In-Reply-To: <4DFDBC85.4050509@swipnet.se> 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:140702 Archived-At: This is the explanation that Richard (gnustep-base maintainer) give me about this problem: On lun, 2011-06-20 at 05:37 +0100, Richard Frith-Macdonald wrote: > When you configure gnustep-base, it records whether gnustep-make > tells it to use native exceptions or not ... by recording the value of > _NATIVE_OBJC_EXCEPTIONS in BASE_NATIVE_OBJC_EXCEPTIONS in GSConfig.h > > When you build any software using base, the header file NSException.h > checks that gnustep-make is still saying that native exceptions should > be used (ie checking that the current value of _NATIVE_OBJC_EXCEPTIONS > supplied by gnustep-make is the same as the value recorded in > GSConfig.h). > > If you are building software without gnustep-make, you need to define > _NATIVE_OBJC_EXCEPTIONS appropriately. For the moment, I solved the problem checking the value of BASE_NATIVE_OBJC_EXCEPTIONS, defined at header "GNUstepBase/GSConfig.h", and declaring _NATIVE_OBJC_EXCEPTIONS in "configure" with that value. Of course, configure should read that header to see the right value that depend of each user.