From 5d1eb055da395a6f3fb5b18b86cc7b926959a667 Mon Sep 17 00:00:00 2001 From: boblaublaw Date: Sun, 2 Aug 2015 20:35:24 -0700 Subject: [PATCH 1/2] the only fix needed for OS X support --- linux/SSTAsm.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/SSTAsm.cpp b/linux/SSTAsm.cpp index 1bed6d9..cabcb39 100644 --- a/linux/SSTAsm.cpp +++ b/linux/SSTAsm.cpp @@ -10,6 +10,9 @@ #include #include #include +#ifdef __APPLE__ +#include +#endif #include "../diskimg/DiskImg.h" using namespace DiskImgLib; From 654f0e64b97f271d7d0b232f5a67b1981e36318c Mon Sep 17 00:00:00 2001 From: boblaublaw Date: Mon, 3 Aug 2015 18:14:13 -0700 Subject: [PATCH 2/2] removing ifdef, including time.h is fine --- linux/SSTAsm.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/linux/SSTAsm.cpp b/linux/SSTAsm.cpp index cabcb39..0d85eb8 100644 --- a/linux/SSTAsm.cpp +++ b/linux/SSTAsm.cpp @@ -10,9 +10,7 @@ #include #include #include -#ifdef __APPLE__ #include -#endif #include "../diskimg/DiskImg.h" using namespace DiskImgLib;