From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: undefined reference to ftfont_variation_glyphs Date: Sat, 28 Mar 2009 00:19:33 -0400 Message-ID: References: <873acy3n9m.fsf@kassiopeya.MSHEIMNETZ> <87vdpu28a1.fsf@kassiopeya.MSHEIMNETZ> <874oxey7am.fsf@kassiopeya.MSHEIMNETZ> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1238214001 28165 80.91.229.12 (28 Mar 2009 04:20:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 28 Mar 2009 04:20:01 +0000 (UTC) Cc: emacs-devel Mailinglist To: Sebastian Rose Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Mar 28 05:21:19 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 1LnQ2l-0003F6-7M for ged-emacs-devel@m.gmane.org; Sat, 28 Mar 2009 05:21:15 +0100 Original-Received: from localhost ([127.0.0.1]:39498 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LnQ1K-0001LV-Vj for ged-emacs-devel@m.gmane.org; Sat, 28 Mar 2009 00:19:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LnQ1F-0001Hj-7r for emacs-devel@gnu.org; Sat, 28 Mar 2009 00:19:41 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LnQ19-0001BQ-PS for emacs-devel@gnu.org; Sat, 28 Mar 2009 00:19:39 -0400 Original-Received: from [199.232.76.173] (port=32849 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LnQ19-0001B4-EX for emacs-devel@gnu.org; Sat, 28 Mar 2009 00:19:35 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.182]:11433) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LnQ19-0003zy-70 for emacs-devel@gnu.org; Sat, 28 Mar 2009 00:19:35 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoIFAE5CzUlFxIfy/2dsb2JhbACBUZUvuFSDdwaEdQ X-IronPort-AV: E=Sophos;i="4.38,436,1233550800"; d="scan'208";a="35800049" Original-Received: from 69-196-135-242.dsl.teksavvy.com (HELO pastel.home) ([69.196.135.242]) by ironport2-out.teksavvy.com with ESMTP; 28 Mar 2009 00:19:34 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 94B078682; Sat, 28 Mar 2009 00:19:33 -0400 (EDT) In-Reply-To: <874oxey7am.fsf@kassiopeya.MSHEIMNETZ> (Sebastian Rose's message of "Fri, 27 Mar 2009 22:39:29 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.91 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:109886 Archived-At: > @@ -422,11 +429,15 @@ > NULL, > #endif /* not (HAVE_M17N_FLT && HAVE_LIBOTF) */ > NULL, /* check */ > +#ifdef HAVE_LIBOTF > +#ifdef HAVE_M17N_FLT > #ifdef HAVE_OTF_GET_VARIATION_GLYPHS > ftfont_variation_glyphs > #else > NULL > #endif > +#endif > +#endif > }; Makes me wonder: how come HAVE_OTF_GET_VARIATION_GLYPHS is defined for you if ftfont_variation_glyphs isn't? Stefan