|
@@ -157,6 +157,17 @@ typedef unsigned int augUInt32;
|
|
|
|
|
|
typedef unsigned int augUInt32;
|
|
|
|
|
|
+#endif
|
|
|
+#if defined(x86_64) || defined(__x86_64)
|
|
|
+
|
|
|
+#if defined(__GNUC__)
|
|
|
+#define AUG_CONFIGURATION "Sun Solaris x86_64 with GCC"
|
|
|
+#else
|
|
|
+#define AUG_CONFIGURATION "Sun Solaris x86_64 with SUNpro C"
|
|
|
+#endif
|
|
|
+
|
|
|
+typedef unsigned int augUInt32;
|
|
|
+
|
|
|
#endif
|
|
|
|
|
|
#if defined(sparc) || defined(__sparc)
|
|
@@ -204,7 +215,16 @@ typedef unsigned int augUInt32;
|
|
|
|
|
|
typedef unsigned int augUInt32;
|
|
|
|
|
|
-#endif /* i386 */
|
|
|
+#endif /* x86 */
|
|
|
+#if defined(__x86_64)
|
|
|
+
|
|
|
+#if defined(__GNUC__)
|
|
|
+#define AUG_CONFIGURATION "Linux x86_64 with GCC"
|
|
|
+#endif
|
|
|
+
|
|
|
+typedef unsigned int augUInt32;
|
|
|
+
|
|
|
+#endif /* x86-64 */
|
|
|
#endif /* linux */
|
|
|
|
|
|
/*
|
|
@@ -244,7 +264,16 @@ typedef unsigned int augUInt32;
|
|
|
|
|
|
typedef unsigned int augUInt32;
|
|
|
|
|
|
-#endif /* i386 */
|
|
|
+#endif /* x86 */
|
|
|
+#if defined(__x86_64)
|
|
|
+
|
|
|
+#if defined(__GNUC__)
|
|
|
+#define AUG_CONFIGURATION "FreeBSD x86_64 with GCC"
|
|
|
+#endif
|
|
|
+
|
|
|
+typedef unsigned int augUInt32;
|
|
|
+
|
|
|
+#endif /* x86_64 */
|
|
|
#endif /* freebsd */
|
|
|
|
|
|
/*
|
|
@@ -324,7 +353,7 @@ typedef unsigned int augUInt32;
|
|
|
*/
|
|
|
|
|
|
#ifndef AUG_CONFIGURATION
|
|
|
-error: os/cpu/compiler combination not configured in $Source$ $Revision$
|
|
|
+#error: os/cpu/compiler combination not configured in $Source$ $Revision$
|
|
|
#endif
|
|
|
|
|
|
#endif /* AUG_SYSDEP_H */
|