mirror of
git://git.savannah.gnu.org/freetype/freetype2.git
synced 2025-04-11 22:56:50 +02:00
* include/freetype/internal/ftcalc.h (FT_MSB): Define for Solaris 11.
This commit is contained in:
parent
c4073d8251
commit
cc732ec6d1
@ -455,6 +455,12 @@ FT_BEGIN_HEADER
|
||||
|
||||
#define FT_MSB( x ) FT_MSB_i386( x )
|
||||
|
||||
#elif defined( __SunOS_5_11 )
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#define FT_MSB( x ) ( fls( x ) - 1 )
|
||||
|
||||
#elif defined( __DECC ) || defined( __DECCXX )
|
||||
|
||||
#include <builtins.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user