From: Bruce Momjian Date: Mon, 19 Jul 1999 18:07:36 +0000 (+0000) Subject: Fix for linux/sparc. X-Git-Tag: REL7_0~1695 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b653d1e26367c3562f45c25360e0f9790a80048e;p=postgresql Fix for linux/sparc. --- diff --git a/src/include/port/linux.h b/src/include/port/linux.h index 6a09cb1f4a..3fe4d621b0 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -11,6 +11,9 @@ #if defined(__i386__) typedef unsigned char slock_t; +#elif defined(__sparc__) +typedef unsigned char slock_t; + #elif defined(__powerpc__) typedef unsigned int slock_t;