From 7bfca5e760feca3311e74eda4558fb6ec3091fa7 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 9 Apr 2009 15:34:06 +0000 Subject: [PATCH] From Stephan Huber, "attached you'll find a small fix for PixelBufferCarbon preventing it to be compiled for 64bit. This is the easiest solution for the old deprecated xcode project." --- src/osgViewer/PixelBufferCarbon.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgViewer/PixelBufferCarbon.cpp b/src/osgViewer/PixelBufferCarbon.cpp index 1bed7b526..b2f7c2684 100644 --- a/src/osgViewer/PixelBufferCarbon.cpp +++ b/src/osgViewer/PixelBufferCarbon.cpp @@ -7,7 +7,7 @@ * */ - #ifdef __APPLE__ +#if defined (__APPLE__) && (!__LP64__) #include #include @@ -168,4 +168,4 @@ PixelBufferCarbon::~PixelBufferCarbon() -#endif \ No newline at end of file +#endif