diff options
Diffstat (limited to 'fonts/ttmkfdir2/patches/patch-ab')
-rw-r--r-- | fonts/ttmkfdir2/patches/patch-ab | 37 |
1 files changed, 34 insertions, 3 deletions
diff --git a/fonts/ttmkfdir2/patches/patch-ab b/fonts/ttmkfdir2/patches/patch-ab index 4b1219f332d..21274bba1ed 100644 --- a/fonts/ttmkfdir2/patches/patch-ab +++ b/fonts/ttmkfdir2/patches/patch-ab @@ -1,8 +1,21 @@ -$NetBSD: patch-ab,v 1.2 2004/04/03 11:31:02 recht Exp $ +$NetBSD: patch-ab,v 1.3 2007/11/15 06:36:45 rillig Exp $ --- ttf.cpp.orig 2002-11-07 06:30:04.000000000 +0100 -+++ ttf.cpp -@@ -226,7 +226,7 @@ Face::FontFamilyName (void) const ++++ ttf.cpp 2007-11-15 07:05:27.304109000 +0100 +@@ -137,7 +137,12 @@ Face::Face (const std::string &filename) + /* + * find all the encodings that are based on this cmap. + */ ++#if defined(__SUNPRO_CC) ++ /* Error: Cannot use ... ::iterator ... to initialize ... ::const_iterator ... */ ++ typedef Encodings_t::iterator MI; ++#else + typedef Encodings_t::const_iterator MI; ++#endif + std::pair<MI, MI> bounds = Encodings::instance()->equal_range (key); + + /* +@@ -226,7 +231,7 @@ Face::FontFamilyName (void) const for (i = 0; i < n; i++) { if ((fterror = FT_Get_Sfnt_Name (face, i, &NamePtr)) != FT_Err_Ok) { std::cout << "Warning: Can't SFNT name : " << FileName << "(" << fterror << ")" << std::endl; @@ -11,3 +24,21 @@ $NetBSD: patch-ab,v 1.2 2004/04/03 11:31:02 recht Exp $ }; platform = NamePtr.platform_id; encoding = NamePtr.encoding_id; +@@ -522,7 +527,7 @@ Face::Weight (void) const + { + const char *result; + +- if (cmdline::instance()->option ("panose") && ((result = PanoseWeight ()) != 0)) { ++ if (bool(cmdline::instance()->option ("panose")) && ((result = PanoseWeight ()) != 0)) { + return result; + } else if ((result = OS2Weight ()) != 0) { + return result; +@@ -603,7 +608,7 @@ Face::Width (void) const + { + const char *result; + +- if (cmdline::instance()->option ("panose") && ((result = PanoseWidth ()) != 0)) { ++ if (bool(cmdline::instance()->option ("panose")) && ((result = PanoseWidth ()) != 0)) { + return result; + } else if ((result = OS2Width ()) != 0) { + return result; |