]> Creatis software - clitk.git/blobdiff - common/clitkXdrImageIOWriter.cxx
Cleared CMake files, removed LINK_LIBRARIES (deprecated) and prepared for packaging...
[clitk.git] / common / clitkXdrImageIOWriter.cxx
index 9533c69edb449e77563dcc06b93c1fd0ae914b13..082d6656ae4d2d50980c2175474ce4d0c61c92e8 100755 (executable)
@@ -31,7 +31,7 @@
 #include <sys/stat.h>
 
 //From mbfield.h
-#ifndef unix
+#if !defined(unix) && !defined(__APPLE__)
 //#define _read  readfix
 #endif
 #define AVSINT ptrdiff_t
 #define AVS_OK
 
 //From portdefs.h
-#ifdef unix
+#if defined(unix) || defined(__APPLE__)
 #define O_BINARY 0
 #define setmode(a,b) 0
 #endif
 
 #ifndef __LARGE__
-#  if defined(__GNUC__) || defined(unix)
+#  if defined(__GNUC__) || defined(unix) || defined(__APPLE__)
+
      typedef long long Q_INT64;
      typedef unsigned long long Q_UINT64;
 #    define Q_INT64_CONST(x) (x##ll)
@@ -94,7 +95,7 @@ void clitk::XdrImageIO::Write(const void* buffer)
 #include <math.h>
 #include <stdlib.h>
 #include <limits.h>
-#ifndef unix
+#if !defined(unix) && !defined(__APPLE__)
 #include <io.h>
 #endif
 #include <fcntl.h>