shithub: freetype+ttf2subf

Download patch

ref: 30f1e6ca45f83285f565f56d8f714dd50aaa4cf8
parent: 40633205287c8e9ea80e9b8824d8ca5ab651edf1
author: Werner Lemberg <[email protected]>
date: Fri Feb 1 09:50:08 EST 2013

Fix Savannah bug #38221.

This complements commit 83c0ebab.

* src/base/ftcalc.c (FT_MulDiv_No_Round): Don't enclose with
`TT_USE_BYTECODE_INTERPRETER'.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 2013-02-01  Werner Lemberg  <[email protected]>
 
+	Fix Savannah bug #38221.
+
+	This complements commit 83c0ebab.
+
+	* src/base/ftcalc.c (FT_MulDiv_No_Round): Don't enclose with
+	`TT_USE_BYTECODE_INTERPRETER'.
+
+2013-02-01  Werner Lemberg  <[email protected]>
+
 	[truetype] Fix Savannah bug #38211.
 
 	* src/truetype/ttinterp.c (Ins_IP): Make FreeType behave identical
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -216,8 +216,6 @@
   }
 
 
-#ifdef TT_USE_BYTECODE_INTERPRETER
-
   /* documentation is in ftcalc.h */
 
   FT_BASE_DEF( FT_Long )
@@ -240,9 +238,7 @@
     return ( s > 0 ) ? d : -d;
   }
 
-#endif /* TT_USE_BYTECODE_INTERPRETER */
 
-
   /* documentation is in freetype.h */
 
   FT_EXPORT_DEF( FT_Long )
@@ -445,8 +441,6 @@
   }
 
 
-#ifdef TT_USE_BYTECODE_INTERPRETER
-
   FT_BASE_DEF( FT_Long )
   FT_MulDiv_No_Round( FT_Long  a,
                       FT_Long  b,
@@ -478,8 +472,6 @@
 
     return ( s < 0 ? -a : a );
   }
-
-#endif /* TT_USE_BYTECODE_INTERPRETER */
 
 
   /* documentation is in freetype.h */