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: Emacs and GNUstep again Date: Mon, 22 Aug 2011 13:27:24 -0600 Message-ID: <1314041245.22510.4.camel@german-desktop> Reply-To: emacs-devel@gnu.org NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1314041879 11533 80.91.229.12 (22 Aug 2011 19:37:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 22 Aug 2011 19:37:59 +0000 (UTC) To: Emacs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 22 21:37:55 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 1QvaJn-0000V6-43 for ged-emacs-devel@m.gmane.org; Mon, 22 Aug 2011 21:37:55 +0200 Original-Received: from localhost ([::1]:47869 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qva9m-00087y-0L for ged-emacs-devel@m.gmane.org; Mon, 22 Aug 2011 15:27:34 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:36936) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qva9j-00087g-7A for emacs-devel@gnu.org; Mon, 22 Aug 2011 15:27:32 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qva9i-0006lc-7H for emacs-devel@gnu.org; Mon, 22 Aug 2011 15:27:31 -0400 Original-Received: from mail-yw0-f41.google.com ([209.85.213.41]:38458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qva9i-0006lU-4i for emacs-devel@gnu.org; Mon, 22 Aug 2011 15:27:30 -0400 Original-Received: by ywm13 with SMTP id 13so3920249ywm.0 for ; Mon, 22 Aug 2011 12:27:29 -0700 (PDT) Original-Received: by 10.150.196.7 with SMTP id t7mr2897161ybf.313.1314041248889; Mon, 22 Aug 2011 12:27:28 -0700 (PDT) Original-Received: from [192.168.1.5] ([190.148.151.109]) by mx.google.com with ESMTPS id g16sm4144056ybi.23.2011.08.22.12.27.26 (version=SSLv3 cipher=OTHER); Mon, 22 Aug 2011 12:27:27 -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:143517 Archived-At: A couple of days ago, I compiled emacs with gnustep successfully. But after update yesterday, I get errors again. So I suppose the problem is in the changes in lisp files instead in my local changes. So I reconfigure emacs with: ./configure --with-ns --enable-use-lisp-union-type With this the compilation failed in: nsfont.m: In function 'ns_otf_to_script': nsfont.m:306:43: error: 'SYMBOL_NAME' undeclared (first use in this function) nsfont.m:306:43: note: each undeclared identifier is reported only once for each function it appears in nsfont.m:306:36: error: expected ')' before 'LISP_MAKE_RVALUE' nsfont.m:306:36: error: expected ')' before 'LISP_MAKE_RVALUE' make[1]: *** [nsfont.o] Error 1 make[1]: Leaving directory `/home/german/Instalados/emacs/src' make: *** [src] Error 2 As I can see SYMBOL_NAME is defined in lisp.h and this file is included in nsfont.m. So how I should interpret this error? Thanks.