2018-05-17 01:28:53 +02:00
|
|
|
project('harfbuzz', 'c', 'cpp',
|
2018-06-18 17:18:05 +02:00
|
|
|
meson_version: '>= 0.47.0',
|
2018-05-17 01:28:53 +02:00
|
|
|
version: '1.7.6')
|
|
|
|
|
2018-06-05 02:15:43 +02:00
|
|
|
pkgmod = import('pkgconfig')
|
2018-05-17 01:28:53 +02:00
|
|
|
cpp = meson.get_compiler('cpp')
|
|
|
|
|
2018-12-01 12:05:27 +01:00
|
|
|
if cpp.get_id() == 'msvc'
|
|
|
|
# Ignore several spurious warnings for things HarfBuzz does very commonly.
|
|
|
|
# If a warning is completely useless and spammy, use '/wdXXXX' to suppress it
|
|
|
|
# If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once
|
|
|
|
# NOTE: Only add warnings here if you are sure they're spurious
|
|
|
|
msvc_args = [
|
|
|
|
'/wd4018', # implicit signed/unsigned conversion
|
|
|
|
'/wd4146', # unary minus on unsigned (beware INT_MIN)
|
|
|
|
'/wd4244', # lossy type conversion (e.g. double -> int)
|
|
|
|
'/wd4305', # truncating type conversion (e.g. double -> float)
|
|
|
|
cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8
|
2018-12-01 19:22:46 +01:00
|
|
|
'-DHB_DLL_EXPORT', # FIXME: shouldn't this be set only on the lib targets?
|
2018-12-01 12:05:27 +01:00
|
|
|
]
|
|
|
|
add_project_arguments(msvc_args, language : 'c')
|
|
|
|
add_project_arguments(msvc_args, language : 'cpp')
|
|
|
|
# Disable SAFESEH with MSVC for libs that use external deps that are built with MinGW
|
|
|
|
# noseh_link_args = ['/SAFESEH:NO']
|
|
|
|
endif
|
|
|
|
|
2018-05-17 01:28:53 +02:00
|
|
|
python3 = import('python').find_installation('python3')
|
|
|
|
|
|
|
|
check_headers = [
|
|
|
|
['unistd.h'],
|
|
|
|
['sys/mman.h'],
|
|
|
|
['xlocale.h'],
|
|
|
|
['stdbool.h'],
|
|
|
|
]
|
|
|
|
|
|
|
|
check_funcs = [
|
|
|
|
['atexit'],
|
|
|
|
['mprotect'],
|
|
|
|
['sysconf'],
|
|
|
|
['getpagesize'],
|
|
|
|
['mmap'],
|
|
|
|
['isatty'],
|
|
|
|
['newlocale'],
|
|
|
|
['strtod_l'],
|
|
|
|
['round'],
|
|
|
|
]
|
|
|
|
|
2018-11-12 16:36:27 +01:00
|
|
|
freetype_dep = dependency('freetype2', required: get_option('freetype'),
|
2018-10-12 16:11:49 +02:00
|
|
|
fallback: ['freetype2', 'freetype_dep'])
|
2018-11-12 16:36:27 +01:00
|
|
|
glib_dep = dependency('glib-2.0', required: get_option('glib'),
|
2018-10-12 16:11:49 +02:00
|
|
|
fallback: ['glib', 'libglib_dep'])
|
2018-11-12 16:36:27 +01:00
|
|
|
gobject_dep = dependency('gobject-2.0', required: get_option('gobject'),
|
2018-10-12 16:11:49 +02:00
|
|
|
fallback: ['glib', 'libgobject_dep'])
|
2018-11-12 16:36:27 +01:00
|
|
|
cairo_dep = dependency('cairo', required: get_option('cairo'),
|
2018-10-12 16:11:49 +02:00
|
|
|
fallback: ['cairo', 'libcairo_dep'])
|
2018-11-12 16:36:27 +01:00
|
|
|
fontconfig_dep = dependency('fontconfig', required: get_option('fontconfig'),
|
2018-10-12 16:11:49 +02:00
|
|
|
fallback: ['fontconfig', 'fontconfig_dep'])
|
2018-11-12 16:36:27 +01:00
|
|
|
graphite2_dep = dependency('graphite2', required: get_option('graphite'))
|
|
|
|
icu_dep = dependency('icu-uc', required: get_option('icu'))
|
2018-05-17 16:20:10 +02:00
|
|
|
m_dep = cpp.find_library('m', required: false)
|
2018-05-17 01:28:53 +02:00
|
|
|
|
2018-10-12 16:11:49 +02:00
|
|
|
# Ensure that cairo-ft is fetched from the same library as cairo itself
|
|
|
|
if cairo_dep.found()
|
|
|
|
if cairo_dep.type_name() == 'pkgconfig'
|
2018-11-12 16:36:27 +01:00
|
|
|
cairo_ft_dep = dependency('cairo-ft', required: get_option('cairo'))
|
2018-10-12 16:11:49 +02:00
|
|
|
else
|
|
|
|
cairo_ft_dep = cairo_dep
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
# Not-found dependency
|
|
|
|
cairo_ft_dep = dependency('', required: false)
|
|
|
|
endif
|
|
|
|
|
2018-05-17 16:20:10 +02:00
|
|
|
deps = []
|
2018-05-17 01:28:53 +02:00
|
|
|
|
|
|
|
conf = configuration_data()
|
2018-11-14 21:19:36 +01:00
|
|
|
incconfig = include_directories('.')
|
2018-05-17 01:28:53 +02:00
|
|
|
cpp_args = ['-DHAVE_CONFIG_H']
|
|
|
|
|
|
|
|
warn_cflags = [
|
|
|
|
'-Wno-non-virtual-dtor',
|
|
|
|
]
|
|
|
|
|
|
|
|
cpp_args += cpp.get_supported_arguments(warn_cflags)
|
|
|
|
|
2018-05-17 16:20:10 +02:00
|
|
|
if m_dep.found()
|
|
|
|
deps += [m_dep]
|
|
|
|
endif
|
|
|
|
|
2018-05-17 01:28:53 +02:00
|
|
|
if glib_dep.found()
|
|
|
|
conf.set('HAVE_GLIB', 1)
|
|
|
|
deps += [glib_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if gobject_dep.found()
|
|
|
|
conf.set('HAVE_GOBJECT', 1)
|
|
|
|
deps += [gobject_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if cairo_dep.found()
|
|
|
|
conf.set('HAVE_CAIRO', 1)
|
|
|
|
deps += [cairo_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if cairo_ft_dep.found()
|
|
|
|
conf.set('HAVE_CAIRO_FT', 1)
|
|
|
|
deps += [cairo_ft_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if graphite2_dep.found()
|
|
|
|
conf.set('HAVE_GRAPHITE2', 1)
|
|
|
|
deps += [graphite2_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if icu_dep.found()
|
|
|
|
conf.set('HAVE_ICU', 1)
|
|
|
|
conf.set('HAVE_ICU_BUILTIN', 1)
|
|
|
|
deps += [icu_dep]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if freetype_dep.found()
|
|
|
|
conf.set('HAVE_FREETYPE', 1)
|
|
|
|
deps += [freetype_dep]
|
2018-06-05 20:59:29 +02:00
|
|
|
check_freetype_funcs = [
|
|
|
|
['FT_Get_Var_Blend_Coordinates', {'deps': freetype_dep}],
|
|
|
|
['FT_Set_Var_Blend_Coordinates', {'deps': freetype_dep}],
|
|
|
|
['FT_Done_MM_Var', {'deps': freetype_dep}],
|
|
|
|
]
|
2018-05-17 01:28:53 +02:00
|
|
|
|
|
|
|
if freetype_dep.type_name() == 'internal'
|
|
|
|
foreach func: check_freetype_funcs
|
|
|
|
name = func[0]
|
|
|
|
conf.set('HAVE_@0@'.format(name.to_upper()), 1)
|
|
|
|
endforeach
|
|
|
|
else
|
|
|
|
check_funcs += check_freetype_funcs
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if fontconfig_dep.found()
|
|
|
|
conf.set('HAVE_FONTCONFIG', 1)
|
|
|
|
deps += [fontconfig_dep]
|
|
|
|
endif
|
|
|
|
|
2018-11-12 17:56:56 +01:00
|
|
|
# uniscribe (windows) - FIXME: untested
|
|
|
|
if host_machine.system() == 'windows' and not get_option('uniscribe').disabled()
|
|
|
|
# TODO: make nicer once we have https://github.com/mesonbuild/meson/issues/3940
|
|
|
|
if cpp.has_header('usp10.h') and cpp.has_header('windows.h')
|
|
|
|
foreach usplib : ['usp10', 'gdi32', 'rpcrt4']
|
|
|
|
deps += [cpp.find_library(usplib, required: true)]
|
|
|
|
endforeach
|
|
|
|
conf.set('HAVE_UNISCRIBE', 1)
|
|
|
|
elif get_option('uniscribe').enabled()
|
|
|
|
error('uniscribe was enabled explicitly, but some required headers are missing.')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-11-12 17:56:56 +01:00
|
|
|
# DirectWrite (windows) - FIXME: untested
|
|
|
|
if host_machine.system() == 'windows' and not get_option('directwrite').disabled()
|
|
|
|
if cpp.has_header('dwrite.h')
|
|
|
|
deps += [cpp.find_library('dwrite', required: true)]
|
|
|
|
conf.set('HAVE_DIRECTWRITE', 1)
|
|
|
|
elif get_option('directwrite').enabled()
|
|
|
|
error('DirectWrite was enabled explicitly, but required header is missing.')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-11-12 17:56:56 +01:00
|
|
|
# CoreText (macOS) - FIXME: untested
|
|
|
|
if host_machine.system() == 'darwin' and not get_option('coretext').disabled()
|
|
|
|
app_services_dep = dependency('appleframeworks', modules : ['ApplicationServices'], required: false)
|
|
|
|
if cpp.has_type('CTFontRef', prefix: '#include <ApplicationServices/ApplicationServices.h>', dependencies: app_services_dep)
|
|
|
|
deps += [app_services_dep]
|
|
|
|
conf.set('HAVE_CORETEXT', 1)
|
|
|
|
# On iOS CoreText and CoreGraphics are stand-alone frameworks
|
|
|
|
# Check for a different symbol to avoid getting cached result
|
|
|
|
else
|
|
|
|
coretext_dep = dependency('appleframeworks', modules : ['CoreText'], required: false)
|
|
|
|
coregraphics_dep = dependency('appleframeworks', modules : ['CoreGraphics'], required: false)
|
|
|
|
corefoundation_dep = dependency('appleframeworks', modules : ['CoreFoundation'], required: false)
|
|
|
|
if cpp.has_type('CTRunRef', prefix: '#include <CoreText/CoreText.h>', dependencies: [coretext_dep, coregraphics_dep, corefoundation_dep])
|
|
|
|
deps += [coretext_dep, coregraphics_dep, corefoundation_dep]
|
|
|
|
conf.set('HAVE_CORETEXT', 1)
|
|
|
|
elif get_option('coretext').enabled()
|
|
|
|
error('CoreText was enabled explicitly, but required headers or frameworks are missing.')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-11-12 17:56:56 +01:00
|
|
|
# threads
|
2018-05-17 01:28:53 +02:00
|
|
|
if host_machine.system() != 'windows'
|
|
|
|
thread_dep = dependency('threads', required: false)
|
|
|
|
|
|
|
|
if thread_dep.found()
|
|
|
|
conf.set('HAVE_PTHREAD', 1)
|
|
|
|
deps += [thread_dep]
|
|
|
|
else
|
|
|
|
check_headers += ['sched.h']
|
|
|
|
check_funcs += ['sched_yield', {'link_with': 'rt'}]
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-06-05 20:59:29 +02:00
|
|
|
conf.set('HAVE_OT', 1)
|
|
|
|
conf.set('HAVE_FALLBACK', 1)
|
2018-05-17 01:28:53 +02:00
|
|
|
conf.set_quoted('PACKAGE_NAME', 'HarfBuzz')
|
|
|
|
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
|
|
|
|
|
|
foreach check : check_headers
|
|
|
|
name = check[0]
|
|
|
|
|
|
|
|
if cpp.has_header(name)
|
|
|
|
conf.set('HAVE_@0@'.format(name.to_upper().underscorify()), 1)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
foreach check : check_funcs
|
|
|
|
name = check[0]
|
2018-06-05 20:59:29 +02:00
|
|
|
opts = check.get(1, {})
|
2018-05-17 01:28:53 +02:00
|
|
|
link_withs = opts.get('link_with', [])
|
2018-06-05 20:59:29 +02:00
|
|
|
check_deps = opts.get('deps', [])
|
2018-05-17 01:28:53 +02:00
|
|
|
extra_deps = []
|
|
|
|
found = true
|
|
|
|
|
|
|
|
# First try without linking
|
|
|
|
|
2018-06-05 20:59:29 +02:00
|
|
|
found = cpp.has_function(name, dependencies: check_deps)
|
2018-05-17 01:28:53 +02:00
|
|
|
|
|
|
|
if not found and link_withs.length() > 0
|
|
|
|
found = true
|
|
|
|
|
|
|
|
foreach link_with : link_withs
|
|
|
|
dep = cpp.find_library(link_with, required: false)
|
|
|
|
if dep.found()
|
|
|
|
extra_deps += dep
|
|
|
|
else
|
|
|
|
found = false
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
if found
|
2018-06-05 20:59:29 +02:00
|
|
|
found = cpp.has_function(name, dependencies: check_deps + extra_deps)
|
2018-05-17 01:28:53 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if found
|
|
|
|
deps += extra_deps
|
|
|
|
conf.set('HAVE_@0@'.format(name.to_upper()), 1)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
if cpp.links(files('meson-cc-tests/intel-atomic-primitives-test.c'), name: 'Intel atomics')
|
|
|
|
conf.set('HAVE_INTEL_ATOMIC_PRIMITIVES', 1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if cpp.links(files('meson-cc-tests/solaris-atomic-operations.c'), name: 'Solaris atomic ops')
|
|
|
|
conf.set('HAVE_SOLARIS_ATOMIC_OPS', 1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
subdir('src')
|
|
|
|
subdir('util')
|
2018-11-14 11:12:40 +01:00
|
|
|
|
|
|
|
if not get_option('tests').disabled()
|
|
|
|
subdir('test')
|
|
|
|
endif
|
2018-05-17 01:28:53 +02:00
|
|
|
|
|
|
|
configure_file(output: 'config.h', configuration: conf)
|