From 1b1e0968153834926384394b1421c66bae941a2c Mon Sep 17 00:00:00 2001 From: Petr Sumbera Date: Wed, 23 Apr 2025 16:23:07 +0200 Subject: [PATCH] Allow to build on Solaris --- sqlite-vec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite-vec.c b/sqlite-vec.c index 3cc802f..fdcad58 100644 --- a/sqlite-vec.c +++ b/sqlite-vec.c @@ -64,7 +64,7 @@ SQLITE_EXTENSION_INIT1 #ifndef _WIN32 #ifndef __EMSCRIPTEN__ #ifndef __COSMOPOLITAN__ -#ifndef __wasi__ +#if !defined(__wasi__) && !defined(__sun__) typedef u_int8_t uint8_t; typedef u_int16_t uint16_t; typedef u_int64_t uint64_t;