OLD | NEW |
1 /* | 1 /* |
2 * Copyright © 2012 Google, Inc. | 2 * Copyright © 2012 Google, Inc. |
3 * | 3 * |
4 * This is part of HarfBuzz, a text shaping library. | 4 * This is part of HarfBuzz, a text shaping library. |
5 * | 5 * |
6 * Permission is hereby granted, without written agreement and without | 6 * Permission is hereby granted, without written agreement and without |
7 * license or royalty fees, to use, copy, modify, and distribute this | 7 * license or royalty fees, to use, copy, modify, and distribute this |
8 * software and its documentation for any purpose, provided that the | 8 * software and its documentation for any purpose, provided that the |
9 * above copyright notice and the following two paragraphs appear in | 9 * above copyright notice and the following two paragraphs appear in |
10 * all copies of this software. | 10 * all copies of this software. |
(...skipping 11 matching lines...) Expand all Loading... |
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
23 * | 23 * |
24 * Google Author(s): Behdad Esfahbod | 24 * Google Author(s): Behdad Esfahbod |
25 */ | 25 */ |
26 | 26 |
27 #include "hb-atomic-private.hh" | 27 #include "hb-atomic-private.hh" |
28 #include "hb-mutex-private.hh" | 28 #include "hb-mutex-private.hh" |
29 | 29 |
30 | 30 |
31 #if defined(HB_ATOMIC_INT_NIL) | 31 #if defined(HB_ATOMIC_INT_NIL) |
32 #ifdef _MSC_VER | 32 #pragma message("Could not find any system to define atomic_int macros, library
may NOT be thread-safe.") |
33 #pragma message("Could not find any system to define atomic_int macros, library
may NOT be thread-safe") | |
34 #else | |
35 #warning "Could not find any system to define atomic_int macros, library may NOT
be thread-safe" | |
36 #endif | 33 #endif |
| 34 #if defined(HB_MUTEX_IMPL_NIL) |
| 35 #pragma message("Could not find any system to define mutex macros, library may N
OT be thread-safe.") |
37 #endif | 36 #endif |
38 | 37 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) |
39 #if defined(HB_MUTEX_IMPL_NIL) | 38 #pragma message("To suppress these warnings, define HB_NO_MT.") |
40 #ifdef _MSC_VER | |
41 #pragma message("Could not find any system to define mutex macros, library may N
OT be thread-safe") | |
42 #else | |
43 #warning "Could not find any system to define mutex macros, library may NOT be t
hread-safe" | |
44 #endif | 39 #endif |
45 #endif | |
46 | |
47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) | |
48 #ifdef _MSC_VER | |
49 #pragma message("To suppress these warnings, define HB_NO_MT") | |
50 #else | |
51 #warning "To suppress these warnings, define HB_NO_MT" | |
52 #endif | |
53 #endif | |
54 | |
55 | |
56 #include "hb-unicode-private.hh" | |
57 | |
58 #if !defined(HB_NO_UNICODE_FUNCS) && defined(HB_UNICODE_FUNCS_NIL) | |
59 #ifdef _MSC_VER | |
60 #pragma message("Could not find any Unicode functions implementation, you have t
o provide your own") | |
61 #pragma message("To suppress this warnings, define HB_NO_UNICODE_FUNCS") | |
62 #else | |
63 #warning "Could not find any Unicode functions implementation, you have to provi
de your own" | |
64 #warning "To suppress this warning, define HB_NO_UNICODE_FUNCS" | |
65 #endif | |
66 #endif | |
OLD | NEW |