Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-04-23 17:19:02 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-04-23 17:19:38 +0400
commit8bf7172384faf331846b6116c247992305a12e08 (patch)
treec41839c14b51e6d711c6be7e75aa0802c2051dc6
parent60b015d1fc1005fd0eff29272ce5b66f8adb5755 (diff)
Fix compilation on OSX after previous commit
EXPECT_EQ wasn't defined in the scope.
-rw-r--r--extern/libmv/ChangeLog28
-rw-r--r--extern/libmv/libmv/base/aligned_malloc.cc1
2 files changed, 9 insertions, 20 deletions
diff --git a/extern/libmv/ChangeLog b/extern/libmv/ChangeLog
index f1b4ca7a3b7..276fbb2ff0d 100644
--- a/extern/libmv/ChangeLog
+++ b/extern/libmv/ChangeLog
@@ -1,3 +1,11 @@
+commit 0b7d83dc9627447dc7df64d7e3a468aefe9ddc13
+Author: Sergey Sharybin <sergey.vfx@gmail.com>
+Date: Wed Apr 23 19:14:55 2014 +0600
+
+ Fix compilation on OSX after previous commit
+
+ EXPECT_EQ wasn't defined in the scope.
+
commit d14049e00dabf8fdf49056779f0a3718fbb39e8f
Author: Sergey Sharybin <sergey.vfx@gmail.com>
Date: Wed Apr 23 15:08:16 2014 +0600
@@ -669,23 +677,3 @@ Date: Wed Sep 25 16:01:19 2013 +0600
that point".
Original patch by Keir Mierle made to Blender repository.
-
-commit 0d98e9bbde5d57f6cd9515ce8ff2786d322f29ea
-Author: Sergey Sharybin <sergey.vfx@gmail.com>
-Date: Tue Jun 18 19:24:07 2013 +0600
-
- Compilation error when using clang
-
- Where couple of issues:
-
- - Overloaded assignment operator usage ambiguity
- around some of the Eigen matrix assignment.
-
- - Using -O4 flag here on linux ended up in lots
- of cryptic linker issues, even when using recently
- release clang 3.3.
-
- Disabled forcing optimization flag for now.
- We could end up with something smarter in the
- future, but for now i'm not as much fan of
- forcing compiler's flag.
diff --git a/extern/libmv/libmv/base/aligned_malloc.cc b/extern/libmv/libmv/base/aligned_malloc.cc
index 24a393a0d62..9141186f196 100644
--- a/extern/libmv/libmv/base/aligned_malloc.cc
+++ b/extern/libmv/libmv/base/aligned_malloc.cc
@@ -19,6 +19,7 @@
// IN THE SOFTWARE.
#include "libmv/base/aligned_malloc.h"
+#include "libmv/logging/logging.h"
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__)
// Needed for memalign on Linux and _aligned_alloc on Windows.