Index: src/include/port/bsdi.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/bsdi.h,v retrieving revision 1.8 diff -c -c -r1.8 bsdi.h *** src/include/port/bsdi.h 4 Aug 2003 00:43:32 -0000 1.8 --- src/include/port/bsdi.h 12 Sep 2003 15:14:15 -0000 *************** *** 1,10 **** ! #if defined(__i386__) #define NEED_I386_TAS_ASM #endif #if defined(__sparc__) #define NEED_SPARC_TAS_ASM #endif #define HAS_TEST_AND_SET - typedef unsigned char slock_t; --- 1,14 ---- ! #if defined(__i386__) || defined(__x86_64__) #define NEED_I386_TAS_ASM + typedef unsigned char slock_t; + #endif + #if defined(__ia64) + typedef unsigned int slock_t; #endif #if defined(__sparc__) #define NEED_SPARC_TAS_ASM + typedef unsigned char slock_t; #endif #define HAS_TEST_AND_SET Index: src/include/port/freebsd.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/freebsd.h,v retrieving revision 1.10 diff -c -c -r1.10 freebsd.h *** src/include/port/freebsd.h 4 Aug 2003 00:43:32 -0000 1.10 --- src/include/port/freebsd.h 12 Sep 2003 15:14:15 -0000 *************** *** 1,7 **** ! #if defined(__i386__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; #endif #if defined(__sparc__) --- 1,12 ---- ! #if defined(__i386__) || defined(__x86_64__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; + #endif + + #if defined(__ia64) + #define HAS_TEST_AND_SET + typedef unsigned int slock_t; #endif #if defined(__sparc__) Index: src/include/port/netbsd.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/netbsd.h,v retrieving revision 1.9 diff -c -c -r1.9 netbsd.h *** src/include/port/netbsd.h 4 Aug 2003 00:43:32 -0000 1.9 --- src/include/port/netbsd.h 12 Sep 2003 15:14:15 -0000 *************** *** 1,7 **** ! #if defined(__i386__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; #endif #if defined(__sparc__) --- 1,12 ---- ! #if defined(__i386__) || defined(__x86_64__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; + #endif + + #if defined(__ia64) + #define HAS_TEST_AND_SET + typedef unsigned int slock_t; #endif #if defined(__sparc__) Index: src/include/port/openbsd.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/openbsd.h,v retrieving revision 1.8 diff -c -c -r1.8 openbsd.h *** src/include/port/openbsd.h 4 Aug 2003 00:43:32 -0000 1.8 --- src/include/port/openbsd.h 12 Sep 2003 15:14:15 -0000 *************** *** 1,7 **** ! #if defined(__i386__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; #endif #if defined(__sparc__) --- 1,12 ---- ! #if defined(__i386__) || defined(__x86_64__) #define NEED_I386_TAS_ASM #define HAS_TEST_AND_SET typedef unsigned char slock_t; + #endif + + #if defined(__ia64) + #define HAS_TEST_AND_SET + typedef unsigned int slock_t; #endif #if defined(__sparc__) Index: src/include/port/sco.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/sco.h,v retrieving revision 1.13 diff -c -c -r1.13 sco.h *** src/include/port/sco.h 28 Oct 2001 06:26:08 -0000 1.13 --- src/include/port/sco.h 12 Sep 2003 15:14:15 -0000 *************** *** 6,12 **** --- 6,18 ---- #define USE_UNIVEL_CC + #if defined(__ia64) + #define HAS_TEST_AND_SET + typedef unsigned int slock_t; + #else typedef unsigned char slock_t; + #endif + #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 Index: src/include/port/univel.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/univel.h,v retrieving revision 1.17 diff -c -c -r1.17 univel.h *** src/include/port/univel.h 28 Oct 2001 06:26:08 -0000 1.17 --- src/include/port/univel.h 12 Sep 2003 15:14:15 -0000 *************** *** 7,13 **** --- 7,18 ---- ***************************************/ #define USE_UNIVEL_CC + #if defined(__ia64) + typedef unsigned int slock_t; + #else typedef unsigned char slock_t; + #endif + #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321 Index: src/include/port/unixware.h =================================================================== RCS file: /cvsroot/pgsql-server/src/include/port/unixware.h,v retrieving revision 1.11 diff -c -c -r1.11 unixware.h *** src/include/port/unixware.h 28 Oct 2001 06:26:08 -0000 1.11 --- src/include/port/unixware.h 12 Sep 2003 15:14:15 -0000 *************** *** 10,16 **** --- 10,21 ---- ***************************************/ #define USE_UNIVEL_CC + #if defined(__ia64) + typedef unsigned int slock_t; + #else typedef unsigned char slock_t; + #endif + #ifndef BIG_ENDIAN #define BIG_ENDIAN 4321