From 33e87222df8d0ea8700563ee6f9b2ff25af11d62 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Sun, 7 Jul 2013 08:05:35 +0000 Subject: Better 64-bit detection --- src/htsglobal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/htsglobal.h b/src/htsglobal.h index 32a5a3e..e3a006e 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -323,7 +323,8 @@ typedef __int64 LLint; typedef __int64 TStamp; #define LLintP "%I64d" -#elif (defined(__x86_64__) || defined(_LP64) || defined(__64BIT__)) +#elif (defined(_LP64) || defined(__x86_64__) \ + || defined(__powerpc64__) || defined(__64BIT__)) typedef unsigned long int LLint; typedef unsigned long int TStamp; -- cgit v1.2.3