Skip to content
Snippets Groups Projects
Commit da79b858 authored by srs5694's avatar srs5694
Browse files

Added comments concerning __DARWIN_UNIX03 vs __APPLE__

parent e7b4ff93
No related branches found
No related tags found
No related merge requests found
0.3.2:
------
- Changed __DARWIN_UNIX03 to __APPLE__ as code to enable MacOS X support.
0.3.1:
------
......
......@@ -4,6 +4,9 @@
#ifdef __APPLE__
// Darwin (Mac OS) only: disk IOCTLs are different, and there is no lseek64
// This used to use __DARWIN_UNIX03 rather than __APPLE__, but __APPLE__
// is more general. If the code fails to work on older versions of OS X/
// Darwin, this may need to be changed back (and in various .cc files).
#include <sys/disk.h>
#define lseek64 lseek
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment