From 49bf375b68a627ded1fdbc8dd2fe5048cb47bd93 Mon Sep 17 00:00:00 2001 From: Paul MARTZ Date: Tue, 23 Mar 2010 15:00:24 +0000 Subject: [PATCH] 2.8 branch: Fix for 64bit OS X compiles. Merged r10006 from trunk. --- 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 cf3f0d285..fa6c47f39 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