From 2186fc1fc7ee69ed16df8812f3bc367b7d8a7445 Mon Sep 17 00:00:00 2001 From: andy Date: Tue, 31 Jul 2007 20:57:21 +0000 Subject: [PATCH] Add ppc64 to the list of supported platforms based on testing by Tom Callaway at Red Hat --- simgear/nasal/naref.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simgear/nasal/naref.h b/simgear/nasal/naref.h index 0599dd83..153de6f1 100644 --- a/simgear/nasal/naref.h +++ b/simgear/nasal/naref.h @@ -5,7 +5,8 @@ * platform-dependent endianness headers, just detect the platforms we * support. This list is simpler and smaller, yet still quite * complete. */ -#if (defined(__x86_64) && defined(__linux__)) || defined(__sparcv9) +#if (defined(__x86_64) && defined(__linux__)) || defined(__sparcv9) || \ + defined(__powerpc64__) /* Win64 and Irix should work with this too, but have not been * tested */ # define NASAL_NAN64 -- 2.39.2