From 7b2eb6b7d58e986aaea187866f02c275a0149a5a Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 12 Aug 2016 19:43:13 +0000
Subject: [PATCH] HAVE_64BIT_SIZE_T is not defined anymore !?

---
 Graphics/drawContext.cpp | 2 +-
 Graphics/drawPost.cpp    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Graphics/drawContext.cpp b/Graphics/drawContext.cpp
index d9eabed5ce..0827f40e35 100644
--- a/Graphics/drawContext.cpp
+++ b/Graphics/drawContext.cpp
@@ -277,7 +277,7 @@ void drawContext::draw3d()
     CTX::instance()->polygonOffset = 0;
 
   // speedup drawing of textured fonts on cocoa mac version
-#if defined(HAVE_FLTK) && defined(__APPLE__) && defined(HAVE_64BIT_SIZE_T)
+#if defined(HAVE_FLTK) && defined(__APPLE__)
   int numStrings = GModel::current()->getNumVertices();
   if(CTX::instance()->mesh.pointsNum)
     numStrings = std::max(numStrings, GModel::current()->getNumMeshVertices());
diff --git a/Graphics/drawPost.cpp b/Graphics/drawPost.cpp
index 1a27bb913d..cdcea4a6a6 100644
--- a/Graphics/drawPost.cpp
+++ b/Graphics/drawPost.cpp
@@ -301,7 +301,7 @@ static void drawGlyphs(drawContext *ctx, PView *p)
   Msg::Debug("drawing extra glyphs (this is slow...)");
 
   // speedup drawing of textured fonts on cocoa mac version
-#if defined(HAVE_FLTK) && defined(__APPLE__) && defined(HAVE_64BIT_SIZE_T)
+#if defined(HAVE_FLTK) && defined(__APPLE__)
   if(opt->intervalsType == PViewOptions::Numeric){
     int numStrings = 0;
     for(int ent = 0; ent < data->getNumEntities(opt->timeStep); ent++)
-- 
GitLab