From b653d1e26367c3562f45c25360e0f9790a80048e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 19 Jul 1999 18:07:36 +0000 Subject: [PATCH] Fix for linux/sparc. --- src/include/port/linux.h | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.40.0