diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-14 20:21:18 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-14 20:21:18 +0000 |
commit | 241cea18f74af87e69b77faf6007b0f35f45e7e9 (patch) | |
tree | 4dccc0396b1de04b14a2c42af32434f5d0cf09c4 | |
parent | 3f43446e36bdc6a20784351185c27aabdad456eb (diff) | |
download | postgresql-241cea18f74af87e69b77faf6007b0f35f45e7e9.tar.gz postgresql-241cea18f74af87e69b77faf6007b0f35f45e7e9.zip |
Add missing support for Opteron (__x86_64__).
-rw-r--r-- | src/include/port/linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/port/linux.h b/src/include/port/linux.h index 283799c14d6..f6aacc67ff2 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -4,7 +4,7 @@ #endif -#if defined(__i386__) +#if defined(__i386__) || defined(__x86_64__) typedef unsigned char slock_t; #define HAS_TEST_AND_SET |