diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-07 20:15:48 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-11-07 20:18:52 +0900 |
commit | 12fa8caec5fcf0deefd343f28f1522965516d4e6 (patch) | |
tree | 9dc760235d79f3e2e45637e43a2c87a064e33f64 /src/lib/evas/common/evas_font.h | |
parent | 70f7f88eabf6c22e8cc1ac230a4b0851bda8c7c1 (diff) |
evas: Another attempt at fixing OSX build
Build failed with LKI not found, as a symbol, but it's a macro.
Copy & pasted from evas_common_private.h
How can this work on one platform and not another? I don't get it...
Diffstat (limited to '')
-rw-r--r-- | src/lib/evas/common/evas_font.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/evas/common/evas_font.h b/src/lib/evas/common/evas_font.h index 8d57476953..613cc31de7 100644 --- a/src/lib/evas/common/evas_font.h +++ b/src/lib/evas/common/evas_font.h | |||
@@ -47,9 +47,12 @@ typedef unsigned long long DATA64; | |||
47 | #include <Eina.h> | 47 | #include <Eina.h> |
48 | 48 | ||
49 | #define LK(x) Eina_Lock x | 49 | #define LK(x) Eina_Lock x |
50 | #define LKU(x) eina_lock_release(&(x)) | 50 | #define LKI(x) eina_lock_new(&(x)) |
51 | #define LKL(x) eina_lock_take(&(x)) | ||
52 | #define LKD(x) eina_lock_free(&(x)) | 51 | #define LKD(x) eina_lock_free(&(x)) |
52 | #define LKL(x) eina_lock_take(&(x)) | ||
53 | #define LKT(x) eina_lock_take_try(&(x)) | ||
54 | #define LKU(x) eina_lock_release(&(x)) | ||
55 | #define LKDBG(x) eina_lock_debug(&(x)) | ||
53 | 56 | ||
54 | #include "evas_text_utils.h" | 57 | #include "evas_text_utils.h" |
55 | 58 | ||