Modified to recognized __sparcv9 as a 64 bit platform.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@117 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-02-16 19:31:15 +00:00
parent cbb2a7e32c
commit f37549fe71

View File

@@ -97,7 +97,7 @@
#define FLM_UNIX
#define FLM_SOLARIS
#define FLM_STRICT_ALIGNMENT
#if defined( sparc) || defined( __sparc)
#if defined( sparc) || defined( __sparc) || defined( __sparcv9)
#define FLM_SPARC
#define FLM_BIG_ENDIAN
#endif
@@ -117,7 +117,7 @@
#if !defined( FLM_64BIT) && !defined( FLM_32BIT)
#if defined( FLM_UNIX)
#if defined( __x86_64__) || defined( _LP64) || defined( __LP64__)
#if defined( __x86_64__) || defined( _LP64) || defined( __LP64__) || defined( __sparcv9)
#define FLM_64BIT
#endif
#endif