From: Jan Nieuwenhuizen Date: Fri, 17 Dec 2004 15:51:06 +0000 (+0000) Subject: * scm/framework-gnome.scm (gnome-main): Remove invocation of X-Git-Tag: release/2.5.14~394 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0beb1dd9d294b26d4538a91083534699b66292bc;p=lilypond.git * scm/framework-gnome.scm (gnome-main): Remove invocation of ly:pango-add-afm-decoder. * lily/lily-guile.cc ("ly:pango-add-afm-decoder"): Build fix: Remove. --- diff --git a/ChangeLog b/ChangeLog index 58de9d7ab9..98978de996 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-12-17 Jan Nieuwenhuizen + + * scm/framework-gnome.scm (gnome-main): Remove invocation of + ly:pango-add-afm-decoder. + + * lily/lily-guile.cc ("ly:pango-add-afm-decoder"): Build fix: Remove. + 2004-12-17 Han-Wen Nienhuys * scm/output-ps.scm (new-text): don't access t glyph for getting diff --git a/lily/lily-guile.cc b/lily/lily-guile.cc index 3456c2c88b..2d7455019d 100644 --- a/lily/lily-guile.cc +++ b/lily/lily-guile.cc @@ -832,23 +832,6 @@ LY_DEFINE (ly_protects, "ly:protects", return scm_protects; } - -#if HAVE_PANGO_FC_FONT_MAP_ADD_DECODER_FIND_FUNC - -#include "pangofc-afm-decoder.hh" - -LY_DEFINE (ly_pango_add_afm_decoder, "ly:pango-add-afm-decoder", - 1, 0, 0, (SCM font_family), - "Add pango afm decoder for FONT-FAMILY.") -{ - SCM_ASSERT_TYPE (scm_is_string (font_family), font_family, SCM_ARG1, - __FUNCTION__, "font_family"); - pango_fc_afm_add_decoder (ly_scm2newstr (font_family, 0)); - return SCM_UNSPECIFIED; -} - -#endif - LY_DEFINE (ly_gettext, "ly:gettext", 1, 0, 0, (SCM string), "Gettext wrapper.") diff --git a/scm/framework-gnome.scm b/scm/framework-gnome.scm index 57c1813d3d..c7a47a5bee 100644 --- a/scm/framework-gnome.scm +++ b/scm/framework-gnome.scm @@ -138,23 +138,6 @@ ;; possibly a goops 1.6.4 problem (initialize go) - (map ly:pango-add-afm-decoder - '("lilypond-feta" - "lilypond-feta-braces-a" - "lilypond-feta-braces-b" - "lilypond-feta-braces-c" - "lilypond-feta-braces-d" - "lilypond-feta-braces-d" - "lilypond-feta-braces-e" - "lilypond-feta-braces-f" - "lilypond-feta-braces-g" - "lilypond-feta-braces-h" - "lilypond-feta-braces-i" - "lilypond-parmesan" - ;;"lilypond" - ;;"bigcheese20" - )) - (dump-page go 0) (gtk-main)))