From 363a563ec2d41b54396ccbcb617f0bf0fdad95e7 Mon Sep 17 00:00:00 2001 From: Mike Nolta Date: Sun, 19 Feb 2012 14:07:34 -0500 Subject: [PATCH 1/2] fix #49 --- common.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common.h b/common.h index 1a7dd434a..e848f33f3 100644 --- a/common.h +++ b/common.h @@ -89,6 +89,10 @@ extern "C" { #include #endif +#ifdef OS_DARWIN +#include +#endif + #ifdef OS_WINDOWS #ifdef ATOM #define GOTO_ATOM ATOM From fda39c6cb0fcc70da2da7f49b1ff9736264b372e Mon Sep 17 00:00:00 2001 From: Xianyi Zhang Date: Mon, 20 Feb 2012 09:06:43 +0800 Subject: [PATCH 2/2] Updated the Changelog. --- Changelog.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changelog.txt b/Changelog.txt index cd0413610..ae2a77e5a 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -3,6 +3,8 @@ OpenBLAS ChangeLog Version 0.1 alpha2.5 19-Feb-2012 common: + * Fixed missing "#include " bug on Mac OS X. + Thank Mike Nolta for the patch. * Upgraded LAPACK to 3.4.0 version * Fixed a bug on Mac OS X. Don't require SystemStubs on OS X. SystemStubs does not exist on Lion. Thank Stefan Karpinski.