We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a191a16 commit c4e7e67Copy full SHA for c4e7e67
src/include/port/solaris.h
@@ -1,4 +1,4 @@
1
-/* $PostgreSQL: pgsql/src/include/port/solaris.h,v 1.14 2006/10/04 22:49:44 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/include/port/solaris.h,v 1.15 2007/01/10 18:22:50 tgl Exp $ */
2
3
/*
4
* Sort this out for all operating systems some time. The __xxx
@@ -9,6 +9,14 @@
9
#define __i386__
10
#endif
11
12
+#if defined(__amd64) && !defined(__amd64__)
13
+#define __amd64__
14
+#endif
15
+
16
+#if defined(__x86_64) && !defined(__x86_64__)
17
+#define __x86_64__
18
19
20
#if defined(__sparc) && !defined(__sparc__)
21
#define __sparc__
22
@@ -34,6 +42,9 @@
34
42
#ifdef __i386__
35
43
#define BYTE_ORDER LITTLE_ENDIAN
36
44
45
+#if defined(__amd64___) || defined(__x86_64__)
46
+#define BYTE_ORDER LITTLE_ENDIAN
47
37
48
38
49
39
50
0 commit comments