From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Changes to work with GNUstep Date: Wed, 14 Sep 2011 23:32:27 -0400 Message-ID: References: <1314143667.5655.5.camel@german-desktop> <1314401968.5663.3.camel@german-desktop> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1316057555 5767 80.91.229.12 (15 Sep 2011 03:32:35 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 15 Sep 2011 03:32:35 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Sep 15 05:32:32 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 1R42gh-0004Fh-DV for ged-emacs-devel@m.gmane.org; Thu, 15 Sep 2011 05:32:31 +0200 Original-Received: from localhost ([::1]:56457 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R42gg-0004Oz-Vc for ged-emacs-devel@m.gmane.org; Wed, 14 Sep 2011 23:32:30 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:46241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R42gf-0004Ou-6q for emacs-devel@gnu.org; Wed, 14 Sep 2011 23:32:30 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R42ge-0001TY-2R for emacs-devel@gnu.org; Wed, 14 Sep 2011 23:32:29 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:44816) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R42gd-0001TU-Vz for emacs-devel@gnu.org; Wed, 14 Sep 2011 23:32:28 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1R42gd-0005m1-OG; Wed, 14 Sep 2011 23:32:27 -0400 X-Spook: Serbian BLU-114/B ANC Axis of Evil Security Council Al X-Ran: rKz/qwm-1)|8P^UK"?mSdRa]/?bcb!uaCsNprd$H)=?}C;K2|!M]5teI'ZgGWE^q\(dJ*2 X-Hue: white X-Attribution: GM User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 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:144050 Archived-At: Germ=C3=A1n Arias wrote: > + GS_LOCAL_HEADERS=3D"$(. $GNUSTEP_CONFIG_FILE; echo > $GNUSTEP_LOCAL_HEADERS)" > +=20 > + if grep "BASE_NATIVE_OBJC_EXCEPTIONS 1" > ${GS_LOCAL_HEADERS}/GNUstepBase/GSConfig.h; then > + AC_DEFINE(_NATIVE_OBJC_EXCEPTIONS, 1, [Synchronize native exceptions > with gnustep-base.]) > + else > + AC_DEFINE(_NATIVE_OBJC_EXCEPTIONS, 0, [Synchronize native exceptions > with gnustep-base.]) > + fi > +=20 Thank you for keeping the poor old GNUstep port in your thoughts. It's bad form to test headers with grep, I installed something more autoconf-ish. It still doesn't actually build for me though: temacs --batch --load loadup bootstrap never (?) returns. But it seems like GNUstep in Debian testing is in an inconsistent state right now, maybe this is related. /usr/bin/ld: warning: libobjc.so.2, needed by /usr/lib/libgnustep-gui.so, may conflict with libobjc.so.3 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=3D629477 Anyway, it might be nice if GNUstep builds could be added to emacs-buildstatus. On a Debian system, all you need to do is apt-get install gnustep-devel; configure --with-ns.