From 75110e63aba0876d35ffd37bf8edbb47639f9bc6 Mon Sep 17 00:00:00 2001 From: Sean McGovern Date: Fri, 3 Dec 2010 22:30:51 -0800 Subject: [PATCH] SPARC/Solaris build fixes --- Makefile | 2 +- common/osdep.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6344ca4f..ec7a7a3a 100644 --- a/Makefile +++ b/Makefile @@ -109,7 +109,7 @@ endif endif # VIS optims -ifeq ($(ARCH),UltraSparc) +ifeq ($(ARCH),UltraSPARC) ifeq ($(findstring HIGH_BIT_DEPTH, $(CONFIG)),) ASMSRC += common/sparc/pixel.asm OBJASM = $(ASMSRC:%.asm=%.o) diff --git a/common/osdep.h b/common/osdep.h index ce5c837b..fbe8e96c 100644 --- a/common/osdep.h +++ b/common/osdep.h @@ -50,7 +50,7 @@ #include // _O_BINARY #endif -#if (SYS_OPENBSD && !defined(isfinite)) || SYS_SunOS +#if !defined(isfinite) && (SYS_OPENBSD || SYS_SunOS) #define isfinite finite #endif #ifdef _WIN32 -- 2.39.5