From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: Re: undefined reference to ftfont_variation_glyphs Date: Mon, 30 Mar 2009 14:41:47 +0900 Message-ID: References: <873acy3n9m.fsf@kassiopeya.MSHEIMNETZ> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1238391689 3384 80.91.229.12 (30 Mar 2009 05:41:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 30 Mar 2009 05:41:29 +0000 (UTC) Cc: emacs-devel@gnu.org To: Sebastian Rose Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Mar 30 07:42:47 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1LoAGl-0002c6-9N for ged-emacs-devel@m.gmane.org; Mon, 30 Mar 2009 07:42:47 +0200 Original-Received: from localhost ([127.0.0.1]:47789 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoAFN-0006oC-Nw for ged-emacs-devel@m.gmane.org; Mon, 30 Mar 2009 01:41:21 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LoAFF-0006nf-Ui for emacs-devel@gnu.org; Mon, 30 Mar 2009 01:41:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LoAFA-0006k0-R6 for emacs-devel@gnu.org; Mon, 30 Mar 2009 01:41:12 -0400 Original-Received: from [199.232.76.173] (port=58119 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LoAFA-0006jn-LI for emacs-devel@gnu.org; Mon, 30 Mar 2009 01:41:08 -0400 Original-Received: from mx1.aist.go.jp ([150.29.246.133]:44021) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LoAFA-00084Y-1w for emacs-devel@gnu.org; Mon, 30 Mar 2009 01:41:08 -0400 Original-Received: from rqsmtp1.aist.go.jp (rqsmtp1.aist.go.jp [150.29.254.115]) by mx1.aist.go.jp with ESMTP id n2U5f2bV001554; Mon, 30 Mar 2009 14:41:02 +0900 (JST) env-from (handa@m17n.org) Original-Received: from smtp3.aist.go.jp by rqsmtp1.aist.go.jp with ESMTP id n2U5f2Ei014529; Mon, 30 Mar 2009 14:41:02 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp3.aist.go.jp with ESMTP id n2U5f169013468; Mon, 30 Mar 2009 14:41:01 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken with local (Exim 4.69) (envelope-from ) id 1LoAFn-0007uX-KK; Mon, 30 Mar 2009 14:41:47 +0900 In-reply-to: <873acy3n9m.fsf@kassiopeya.MSHEIMNETZ> (message from Sebastian Rose on Fri, 27 Mar 2009 13:27:21 +0100) X-detected-operating-system: by monty-python.gnu.org: Solaris 9 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:109911 Archived-At: Sorry for the late response on this matter. In article <873acy3n9m.fsf@kassiopeya.MSHEIMNETZ>, Sebastian Rose writes: > Since a few days I cannot build CVS emacs 23 on debian. > $ gcc --version > gcc (Debian 4.3.3-3) 4.3.3 > ftfont.o:(.data+0x68): undefined reference to `ftfont_variation_glyphs' [...] > While declaration (line 384) and usage (line 431) of the function > `ftfont_variation_glyphs()' are surounded solely by: > #ifdef HAVE_OTF_GET_VARIATION_GLYPHS > /* FUNCTION DECLARATION HERE */ > #endif /* HAVE_OTF_GET_VARIATION_GLYPHS */ Yes, it's a bug, and thank you for the patch. But, actually ftfont_variation_glyphs is usable even without HAVE_M17N_FLT. So, the right fix is to define it without checking HAVE_M17N_FLT. Chong Yidong writes: > I've checked in your patch (with a slight correction). Thanks. I've just installed another fix. --- Kenichi Handa handa@m17n.org