1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

Fixes for alphalinux port by abrams@philos.umass.edu

This commit is contained in:
Marc G. Fournier
1997-08-17 02:40:00 +00:00
parent 9d90de5de7
commit eaae21fb4d
3 changed files with 20 additions and 7 deletions

View File

@@ -12,8 +12,6 @@
# if defined(PPC)
typedef unsigned int slock_t;
# else
typedef unsigned char slock_t;
# endif
# if defined(PPC)
@@ -24,3 +22,13 @@
# if defined(sparc)
# undef NEED_I386_TAS_ASM
# endif
# if defined(__alpha__)
# undef NEED_I386_TAS_ASM
# endif
# if defined(__alpha__)
typedef long int slock_t;
# else
typedef unsigned char slock_t;
# endif