Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 1 | project('harfbuzz', 'c', 'cpp', |
Ebrahim Byagowi | f756267 | 2020-05-21 17:01:04 +0430 | [diff] [blame] | 2 | meson_version: '>= 0.53.0', |
Ebrahim Byagowi | 31218b4 | 2020-03-11 22:27:32 +0330 | [diff] [blame] | 3 | default_options : ['cpp_std=c++11'], |
Ebrahim Byagowi | fb46a32 | 2020-06-03 12:54:26 +0430 | [diff] [blame] | 4 | version: '2.6.7') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 5 | |
Ebrahim Byagowi | 466dbaa | 2020-03-24 19:52:43 +0430 | [diff] [blame] | 6 | warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now') |
| 7 | |
Tim-Philipp Müller | 535186f | 2018-12-03 20:51:06 +0100 | [diff] [blame] | 8 | hb_version_arr = meson.project_version().split('.') |
| 9 | hb_version_major = hb_version_arr[0].to_int() |
| 10 | hb_version_minor = hb_version_arr[1].to_int() |
| 11 | hb_version_micro = hb_version_arr[2].to_int() |
| 12 | |
| 13 | # libtool versioning |
| 14 | hb_version_int = hb_version_major*10000 + hb_version_minor*100 + hb_version_micro |
| 15 | if hb_version_minor % 2 == 1 |
| 16 | hb_libtool_revision = 0 # for unstable releases |
| 17 | else |
| 18 | hb_libtool_revision = hb_version_micro # for stable releases |
| 19 | endif |
| 20 | hb_libtool_age = hb_version_int - hb_libtool_revision |
| 21 | hb_libtool_current = hb_libtool_age |
| 22 | hb_libtool_version_info = '@0@:@1@:@2@'.format(hb_libtool_current, hb_libtool_revision, hb_libtool_age) |
| 23 | |
Mathieu Duponchelle | 484313f | 2018-06-05 02:15:43 +0200 | [diff] [blame] | 24 | pkgmod = import('pkgconfig') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 25 | cpp = meson.get_compiler('cpp') |
| 26 | |
Tim-Philipp Müller | 4a47f1a | 2018-12-01 11:05:27 +0000 | [diff] [blame] | 27 | if cpp.get_id() == 'msvc' |
| 28 | # Ignore several spurious warnings for things HarfBuzz does very commonly. |
| 29 | # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it |
| 30 | # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once |
| 31 | # NOTE: Only add warnings here if you are sure they're spurious |
| 32 | msvc_args = [ |
| 33 | '/wd4018', # implicit signed/unsigned conversion |
| 34 | '/wd4146', # unary minus on unsigned (beware INT_MIN) |
| 35 | '/wd4244', # lossy type conversion (e.g. double -> int) |
| 36 | '/wd4305', # truncating type conversion (e.g. double -> float) |
| 37 | cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8 |
| 38 | ] |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 39 | add_project_arguments(msvc_args, language : ['c', 'cpp']) |
Tim-Philipp Müller | 4a47f1a | 2018-12-01 11:05:27 +0000 | [diff] [blame] | 40 | # Disable SAFESEH with MSVC for libs that use external deps that are built with MinGW |
| 41 | # noseh_link_args = ['/SAFESEH:NO'] |
| 42 | endif |
| 43 | |
Ebrahim Byagowi | 22048d5 | 2020-06-05 04:09:07 +0430 | [diff] [blame] | 44 | add_project_link_arguments(cpp.get_supported_link_arguments([ |
| 45 | '-Bsymbolic-functions' |
| 46 | ]), language : 'c') |
| 47 | |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 48 | add_project_arguments(cpp.get_supported_arguments([ |
Ebrahim Byagowi | 365d2d3 | 2020-03-11 20:16:36 +0330 | [diff] [blame] | 49 | '-fno-rtti', |
| 50 | '-fno-exceptions', |
| 51 | '-fno-threadsafe-statics', |
| 52 | '-fvisibility-inlines-hidden', # maybe shouldn't be applied for mingw |
| 53 | ]), language : 'cpp') |
| 54 | |
| 55 | if host_machine.cpu_family() == 'arm' and cpp.alignment('struct { char c; }') != 1 |
| 56 | if cpp.has_argument('-mstructure-size-boundary=8') |
Tim-Philipp Müller | bb8aaa3 | 2020-03-14 01:05:38 +0000 | [diff] [blame] | 57 | add_project_arguments('-mstructure-size-boundary=8', language : 'cpp') |
Ebrahim Byagowi | 365d2d3 | 2020-03-11 20:16:36 +0330 | [diff] [blame] | 58 | endif |
| 59 | endif |
| 60 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 61 | check_headers = [ |
| 62 | ['unistd.h'], |
| 63 | ['sys/mman.h'], |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 64 | ['stdbool.h'], |
| 65 | ] |
| 66 | |
| 67 | check_funcs = [ |
| 68 | ['atexit'], |
| 69 | ['mprotect'], |
| 70 | ['sysconf'], |
| 71 | ['getpagesize'], |
| 72 | ['mmap'], |
| 73 | ['isatty'], |
Ebrahim Byagowi | 1c3f80b | 2020-03-11 19:29:47 +0330 | [diff] [blame] | 74 | ['roundf'], |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 75 | ] |
| 76 | |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 77 | m_dep = cpp.find_library('m', required: false) |
| 78 | |
Ebrahim Byagowi | ebab4b8 | 2020-06-10 16:52:32 +0430 | [diff] [blame] | 79 | if not get_option('freetype').disabled() |
| 80 | freetype_dep = dependency('freetype2', required: false) |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 81 | |
| 82 | if not freetype_dep.found() and cpp.get_id() == 'msvc' |
| 83 | if cpp.has_header('ft2build.h') |
| 84 | freetype_dep = cpp.find_library('freetype', required: false) |
| 85 | endif |
| 86 | endif |
| 87 | |
| 88 | if not freetype_dep.found() and get_option('freetype').enabled() |
| 89 | freetype_dep = dependency('freetype2', fallback: ['freetype2', 'freetype_dep']) |
| 90 | endif |
Ebrahim Byagowi | ebab4b8 | 2020-06-10 16:52:32 +0430 | [diff] [blame] | 91 | else |
| 92 | freetype_dep = dependency('', required: false) |
| 93 | endif |
Chun-wei Fan | 733414b | 2020-03-13 16:15:21 +0800 | [diff] [blame] | 94 | |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 95 | glib_dep = dependency('glib-2.0', required: get_option('glib'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 96 | fallback: ['glib', 'libglib_dep']) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 97 | gobject_dep = dependency('gobject-2.0', required: get_option('gobject'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 98 | fallback: ['glib', 'libgobject_dep']) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 99 | fontconfig_dep = dependency('fontconfig', required: get_option('fontconfig'), |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 100 | fallback: ['fontconfig', 'fontconfig_dep']) |
Tim-Philipp Müller | 49ba211 | 2018-11-12 15:36:27 +0000 | [diff] [blame] | 101 | graphite2_dep = dependency('graphite2', required: get_option('graphite')) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 102 | |
Ebrahim Byagowi | ebab4b8 | 2020-06-10 16:52:32 +0430 | [diff] [blame] | 103 | if not get_option('icu').disabled() |
| 104 | icu_dep = dependency('icu-uc', required: false) |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 105 | |
| 106 | if not icu_dep.found() and get_option('icu').enabled() |
| 107 | icu_dep = dependency('icu-uc', required: cpp.get_id() != 'msvc') |
| 108 | endif |
| 109 | |
| 110 | if not icu_dep.found() and cpp.get_id() == 'msvc' |
| 111 | if cpp.has_header('unicode/uchar.h') and \ |
| 112 | cpp.has_header('unicode/unorm2.h') and \ |
| 113 | cpp.has_header('unicode/ustring.h') and \ |
| 114 | cpp.has_header('unicode/utf16.h') and \ |
| 115 | cpp.has_header('unicode/uversion.h') and \ |
| 116 | cpp.has_header('unicode/uscript.h') |
| 117 | if get_option('buildtype') == 'debug' |
| 118 | icu_dep = cpp.find_library('icuucd', required: get_option('icu')) |
| 119 | else |
| 120 | icu_dep = cpp.find_library('icuuc', required: get_option('icu')) |
| 121 | endif |
Chun-wei Fan | 5efce60 | 2020-03-13 16:40:20 +0800 | [diff] [blame] | 122 | else |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 123 | if get_option('icu').enabled() |
| 124 | error('ICU headers and libraries must be present to build ICU support') |
| 125 | endif |
Chun-wei Fan | 5efce60 | 2020-03-13 16:40:20 +0800 | [diff] [blame] | 126 | endif |
| 127 | endif |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 128 | else |
| 129 | icu_dep = dependency('', required: false) |
Chun-wei Fan | 5efce60 | 2020-03-13 16:40:20 +0800 | [diff] [blame] | 130 | endif |
| 131 | |
Ebrahim Byagowi | ebab4b8 | 2020-06-10 16:52:32 +0430 | [diff] [blame] | 132 | if not get_option('cairo').disabled() |
| 133 | cairo_dep = dependency('cairo', required: false) |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 134 | |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 135 | if not cairo_dep.found() and cpp.get_id() == 'msvc' |
| 136 | if cpp.has_header('cairo.h') |
| 137 | cairo_dep = cpp.find_library('cairo') |
Chun-wei Fan | 9d0e6ae | 2020-03-13 16:56:55 +0800 | [diff] [blame] | 138 | endif |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 139 | endif |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 140 | |
| 141 | if not cairo_dep.found() and get_option('cairo').enabled() |
| 142 | cairo_dep = dependency('cairo', fallback: ['cairo', 'libcairo_dep']) |
| 143 | endif |
| 144 | |
| 145 | # Ensure that cairo-ft is fetched from the same library as cairo itself |
| 146 | if cairo_dep.found() |
| 147 | if cairo_dep.type_name() == 'pkgconfig' |
| 148 | cairo_ft_dep = dependency('cairo-ft', required: get_option('cairo')) |
| 149 | else |
| 150 | if cpp.has_header('cairo-ft.h') and \ |
| 151 | cpp.has_function('cairo_ft_font_face_create_for_ft_face', dependencies: cairo_dep) |
| 152 | cairo_ft_dep = cairo_dep |
| 153 | else |
| 154 | cairo_ft_dep = dependency('', required: false) |
| 155 | endif |
| 156 | endif |
| 157 | else |
| 158 | cairo_ft_dep = dependency('', required: false) |
| 159 | endif |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 160 | else |
Ebrahim Byagowi | b8454c3 | 2020-06-11 18:32:13 +0430 | [diff] [blame] | 161 | cairo_dep = dependency('', required: false) |
Nirbheek Chauhan | f65def4 | 2018-10-12 19:41:49 +0530 | [diff] [blame] | 162 | cairo_ft_dep = dependency('', required: false) |
| 163 | endif |
| 164 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 165 | conf = configuration_data() |
Tim-Philipp Müller | 618584e | 2018-11-14 20:19:36 +0000 | [diff] [blame] | 166 | incconfig = include_directories('.') |
Tim-Philipp Müller | a3892be | 2020-03-14 01:08:15 +0000 | [diff] [blame] | 167 | |
| 168 | add_project_arguments('-DHAVE_CONFIG_H', language: ['c', 'cpp']) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 169 | |
| 170 | warn_cflags = [ |
| 171 | '-Wno-non-virtual-dtor', |
| 172 | ] |
| 173 | |
Tim-Philipp Müller | a3892be | 2020-03-14 01:08:15 +0000 | [diff] [blame] | 174 | cpp_args = cpp.get_supported_arguments(warn_cflags) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 175 | |
| 176 | if glib_dep.found() |
| 177 | conf.set('HAVE_GLIB', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 178 | endif |
| 179 | |
| 180 | if gobject_dep.found() |
| 181 | conf.set('HAVE_GOBJECT', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 182 | endif |
| 183 | |
| 184 | if cairo_dep.found() |
| 185 | conf.set('HAVE_CAIRO', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 186 | endif |
| 187 | |
| 188 | if cairo_ft_dep.found() |
| 189 | conf.set('HAVE_CAIRO_FT', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 190 | endif |
| 191 | |
| 192 | if graphite2_dep.found() |
| 193 | conf.set('HAVE_GRAPHITE2', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 194 | endif |
| 195 | |
| 196 | if icu_dep.found() |
| 197 | conf.set('HAVE_ICU', 1) |
Ebrahim Byagowi | c6b3f73 | 2020-04-19 00:54:24 +0430 | [diff] [blame] | 198 | endif |
| 199 | |
Ebrahim Byagowi | cc53fd1 | 2020-05-21 19:33:18 +0430 | [diff] [blame] | 200 | if get_option('icu_builtin') |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 201 | conf.set('HAVE_ICU_BUILTIN', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 202 | endif |
| 203 | |
Ebrahim Byagowi | cc53fd1 | 2020-05-21 19:33:18 +0430 | [diff] [blame] | 204 | if get_option('experimental_api') |
Ebrahim Byagowi | 750bb73 | 2020-04-21 01:13:13 +0430 | [diff] [blame] | 205 | conf.set('HB_EXPERIMENTAL_API', 1) |
| 206 | endif |
| 207 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 208 | if freetype_dep.found() |
| 209 | conf.set('HAVE_FREETYPE', 1) |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 210 | check_freetype_funcs = [ |
| 211 | ['FT_Get_Var_Blend_Coordinates', {'deps': freetype_dep}], |
| 212 | ['FT_Set_Var_Blend_Coordinates', {'deps': freetype_dep}], |
| 213 | ['FT_Done_MM_Var', {'deps': freetype_dep}], |
| 214 | ] |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 215 | |
| 216 | if freetype_dep.type_name() == 'internal' |
| 217 | foreach func: check_freetype_funcs |
| 218 | name = func[0] |
| 219 | conf.set('HAVE_@0@'.format(name.to_upper()), 1) |
| 220 | endforeach |
| 221 | else |
| 222 | check_funcs += check_freetype_funcs |
| 223 | endif |
| 224 | endif |
| 225 | |
| 226 | if fontconfig_dep.found() |
| 227 | conf.set('HAVE_FONTCONFIG', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 228 | endif |
| 229 | |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 230 | gdi_uniscribe_deps = [] |
Chun-wei Fan | 838346c | 2020-03-13 18:01:17 +0800 | [diff] [blame] | 231 | # GDI (uniscribe) (windows) |
| 232 | if host_machine.system() == 'windows' and not get_option('gdi').disabled() |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 233 | # TODO: make nicer once we have https://github.com/mesonbuild/meson/issues/3940 |
| 234 | if cpp.has_header('usp10.h') and cpp.has_header('windows.h') |
| 235 | foreach usplib : ['usp10', 'gdi32', 'rpcrt4'] |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 236 | gdi_uniscribe_deps += cpp.find_library(usplib, required: true) |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 237 | endforeach |
| 238 | conf.set('HAVE_UNISCRIBE', 1) |
Chun-wei Fan | 838346c | 2020-03-13 18:01:17 +0800 | [diff] [blame] | 239 | conf.set('HAVE_GDI', 1) |
| 240 | elif get_option('gdi').enabled() |
| 241 | error('gdi was enabled explicitly, but some required headers are missing.') |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 242 | endif |
| 243 | endif |
| 244 | |
Chun-wei Fan | 7baa8e0 | 2020-03-13 16:21:25 +0800 | [diff] [blame] | 245 | # DirectWrite (windows) |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 246 | directwrite_dep = dependency('', required: false) |
Tim-Philipp Müller | 83ebbe4 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 247 | if host_machine.system() == 'windows' and not get_option('directwrite').disabled() |
Chun-wei Fan | 7baa8e0 | 2020-03-13 16:21:25 +0800 | [diff] [blame] | 248 | if cpp.has_header('dwrite_1.h') |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 249 | directwrite_dep = cpp.find_library('dwrite', required: true) |
Tim-Philipp Müller | 83ebbe4 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 250 | conf.set('HAVE_DIRECTWRITE', 1) |
| 251 | elif get_option('directwrite').enabled() |
| 252 | error('DirectWrite was enabled explicitly, but required header is missing.') |
| 253 | endif |
| 254 | endif |
| 255 | |
Tim-Philipp Müller | 4840c82 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 256 | # CoreText (macOS) - FIXME: untested |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 257 | coretext_deps = [] |
Tim-Philipp Müller | 4840c82 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 258 | if host_machine.system() == 'darwin' and not get_option('coretext').disabled() |
| 259 | app_services_dep = dependency('appleframeworks', modules : ['ApplicationServices'], required: false) |
| 260 | if cpp.has_type('CTFontRef', prefix: '#include <ApplicationServices/ApplicationServices.h>', dependencies: app_services_dep) |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 261 | coretext_deps += [app_services_dep] |
Tim-Philipp Müller | 4840c82 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 262 | conf.set('HAVE_CORETEXT', 1) |
| 263 | # On iOS CoreText and CoreGraphics are stand-alone frameworks |
| 264 | # Check for a different symbol to avoid getting cached result |
| 265 | else |
| 266 | coretext_dep = dependency('appleframeworks', modules : ['CoreText'], required: false) |
| 267 | coregraphics_dep = dependency('appleframeworks', modules : ['CoreGraphics'], required: false) |
| 268 | corefoundation_dep = dependency('appleframeworks', modules : ['CoreFoundation'], required: false) |
| 269 | if cpp.has_type('CTRunRef', prefix: '#include <CoreText/CoreText.h>', dependencies: [coretext_dep, coregraphics_dep, corefoundation_dep]) |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 270 | coretext_deps += [coretext_dep, coregraphics_dep, corefoundation_dep] |
Tim-Philipp Müller | 4840c82 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 271 | conf.set('HAVE_CORETEXT', 1) |
| 272 | elif get_option('coretext').enabled() |
| 273 | error('CoreText was enabled explicitly, but required headers or frameworks are missing.') |
| 274 | endif |
| 275 | endif |
| 276 | endif |
| 277 | |
Tim-Philipp Müller | b7796a5 | 2018-11-12 16:56:56 +0000 | [diff] [blame] | 278 | # threads |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 279 | thread_dep = dependency('', required: false) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 280 | if host_machine.system() != 'windows' |
| 281 | thread_dep = dependency('threads', required: false) |
| 282 | |
| 283 | if thread_dep.found() |
| 284 | conf.set('HAVE_PTHREAD', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 285 | else |
| 286 | check_headers += ['sched.h'] |
| 287 | check_funcs += ['sched_yield', {'link_with': 'rt'}] |
| 288 | endif |
| 289 | endif |
| 290 | |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 291 | conf.set('HAVE_OT', 1) |
| 292 | conf.set('HAVE_FALLBACK', 1) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 293 | conf.set_quoted('PACKAGE_NAME', 'HarfBuzz') |
| 294 | conf.set_quoted('PACKAGE_VERSION', meson.project_version()) |
| 295 | |
| 296 | foreach check : check_headers |
| 297 | name = check[0] |
| 298 | |
| 299 | if cpp.has_header(name) |
| 300 | conf.set('HAVE_@0@'.format(name.to_upper().underscorify()), 1) |
| 301 | endif |
| 302 | endforeach |
| 303 | |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 304 | harfbuzz_extra_deps = [] |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 305 | foreach check : check_funcs |
| 306 | name = check[0] |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 307 | opts = check.get(1, {}) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 308 | link_withs = opts.get('link_with', []) |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 309 | check_deps = opts.get('deps', []) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 310 | extra_deps = [] |
| 311 | found = true |
| 312 | |
| 313 | # First try without linking |
| 314 | |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 315 | found = cpp.has_function(name, dependencies: check_deps) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 316 | |
| 317 | if not found and link_withs.length() > 0 |
| 318 | found = true |
| 319 | |
| 320 | foreach link_with : link_withs |
| 321 | dep = cpp.find_library(link_with, required: false) |
| 322 | if dep.found() |
Ebrahim Byagowi | e8808c1 | 2020-03-24 19:15:09 +0430 | [diff] [blame] | 323 | extra_deps += dep |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 324 | else |
Ebrahim Byagowi | e8808c1 | 2020-03-24 19:15:09 +0430 | [diff] [blame] | 325 | found = false |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 326 | endif |
| 327 | endforeach |
| 328 | |
| 329 | if found |
Mathieu Duponchelle | 04bcdb9 | 2018-06-05 20:59:29 +0200 | [diff] [blame] | 330 | found = cpp.has_function(name, dependencies: check_deps + extra_deps) |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 331 | endif |
| 332 | endif |
| 333 | |
| 334 | if found |
Christoph Reiter | 03bd6ea | 2020-06-03 23:52:10 +0200 | [diff] [blame] | 335 | harfbuzz_extra_deps += extra_deps |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 336 | conf.set('HAVE_@0@'.format(name.to_upper()), 1) |
| 337 | endif |
| 338 | endforeach |
| 339 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 340 | if cpp.links(files('meson-cc-tests/intel-atomic-primitives-test.c'), name: 'Intel atomics') |
| 341 | conf.set('HAVE_INTEL_ATOMIC_PRIMITIVES', 1) |
| 342 | endif |
| 343 | |
| 344 | if cpp.links(files('meson-cc-tests/solaris-atomic-operations.c'), name: 'Solaris atomic ops') |
| 345 | conf.set('HAVE_SOLARIS_ATOMIC_OPS', 1) |
| 346 | endif |
| 347 | |
| 348 | subdir('src') |
| 349 | subdir('util') |
Tim-Philipp Müller | 6147df3 | 2018-11-14 10:12:40 +0000 | [diff] [blame] | 350 | |
| 351 | if not get_option('tests').disabled() |
| 352 | subdir('test') |
| 353 | endif |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 354 | |
Tim-Philipp Müller | 3dd7b21 | 2020-05-17 00:12:08 +0100 | [diff] [blame] | 355 | if not get_option('gtk_doc').disabled() |
| 356 | subdir('docs') |
| 357 | endif |
| 358 | |
Mathieu Duponchelle | 920efc0 | 2018-05-17 01:28:53 +0200 | [diff] [blame] | 359 | configure_file(output: 'config.h', configuration: conf) |
Ebrahim Byagowi | a9e8328 | 2020-05-21 16:28:24 +0430 | [diff] [blame] | 360 | |
| 361 | summary({'prefix': get_option('prefix'), |
| 362 | 'bindir': get_option('bindir'), |
| 363 | 'libdir': get_option('libdir'), |
| 364 | 'includedir': get_option('includedir'), |
| 365 | 'datadir': get_option('datadir'), |
| 366 | }, section: 'Directories') |
| 367 | summary({'Builtin': true, |
| 368 | 'Glib': conf.get('HAVE_GLIB', 0) == 1, |
| 369 | 'ICU': conf.get('HAVE_ICU', 0) == 1, |
| 370 | }, bool_yn: true, section: 'Unicode callbacks (you want at least one)') |
| 371 | summary({'FreeType': conf.get('HAVE_FREETYPE', 0) == 1, |
| 372 | }, bool_yn: true, section: 'Font callbacks (the more the merrier)') |
| 373 | summary({'Cairo': conf.get('HAVE_CAIRO', 0) == 1, |
| 374 | 'Fontconfig': conf.get('HAVE_FONTCONFIG', 0) == 1, |
| 375 | }, bool_yn: true, section: 'Tools used for command-line utilities') |
| 376 | summary({'Graphite2': conf.get('HAVE_GRAPHITE2', 0) == 1, |
Ebrahim Byagowi | 65462c4 | 2020-06-05 01:08:08 +0430 | [diff] [blame] | 377 | }, bool_yn: true, section: 'Additional shapers') |
Ebrahim Byagowi | a9e8328 | 2020-05-21 16:28:24 +0430 | [diff] [blame] | 378 | summary({'CoreText': conf.get('HAVE_CORETEXT', 0) == 1, |
| 379 | 'DirectWrite': conf.get('HAVE_DIRECTWRITE', 0) == 1, |
| 380 | 'GDI': conf.get('HAVE_GDI', 0) == 1, |
| 381 | 'Uniscribe': conf.get('HAVE_UNISCRIBE', 0) == 1, |
| 382 | }, bool_yn: true, section: 'Platform shapers (not normally needed)') |
| 383 | summary({'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1, |
| 384 | 'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1, |
| 385 | 'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1, |
| 386 | }, bool_yn: true, section: 'Other features') |