Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-warning.cc

Issue 12438036: Update harfbuzz-ng to 0.9.14 from 0.9.10 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 #pragma message("Could not find any system to define atomic_int macros, library may NOT be thread-safe.") 32 #ifdef _MSC_VER
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"
33 #endif 36 #endif
37 #endif
38
34 #if defined(HB_MUTEX_IMPL_NIL) 39 #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.") 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"
36 #endif 44 #endif
45 #endif
46
37 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) 47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL)
38 #pragma message("To suppress these warnings, define HB_NO_MT.") 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"
39 #endif 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698