2016-08-15 08:03:57 +00:00
|
|
|
project('gtk+-3.0', 'c',
|
2016-11-03 08:47:00 +00:00
|
|
|
version: '3.90.0',
|
2016-08-15 08:03:57 +00:00
|
|
|
default_options: [
|
|
|
|
'buildtype=debugoptimized',
|
|
|
|
'c_std=gnu89',
|
|
|
|
'warning_level=1'
|
|
|
|
],
|
|
|
|
license: 'LGPLv2.1+')
|
|
|
|
|
2016-08-21 14:00:37 +00:00
|
|
|
gnome = import('gnome')
|
|
|
|
|
|
|
|
add_global_arguments('-DG_LOG_USE_STRUCTURED=1', language: 'c')
|
2016-08-23 06:21:54 +00:00
|
|
|
add_global_arguments('-DG_ENABLE_DEBUG', language: 'c')
|
|
|
|
add_global_arguments('-DG_ENABLE_CONSISTENCY_CHECKS', language: 'c')
|
2016-08-21 14:00:37 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
gtk_version = meson.project_version().split('.')
|
|
|
|
gtk_major_version = gtk_version[0].to_int()
|
|
|
|
gtk_minor_version = gtk_version[1].to_int()
|
|
|
|
gtk_micro_version = gtk_version[2].to_int()
|
2016-08-23 06:21:54 +00:00
|
|
|
gtk_interface_age = 0
|
2016-09-24 06:15:28 +00:00
|
|
|
add_global_arguments('-DGTK_VERSION="' + meson.project_version() + '"', language: 'c')
|
|
|
|
|
|
|
|
# Define a string for the earliest version that this release has
|
|
|
|
# backwards binary compatibility with for all interfaces a module
|
|
|
|
# might. Unless we add module-only API with lower stability
|
|
|
|
# guarantees, this should be unchanged until we break binary compat
|
|
|
|
# for GTK+.
|
|
|
|
gtk_binary_version = '3.0.0'
|
2016-08-15 08:03:57 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
gtk_binary_age = 100 * gtk_minor_version + gtk_micro_version
|
2016-08-21 14:00:37 +00:00
|
|
|
gtk_api_version = '@0@.0'.format(gtk_major_version)
|
2016-08-15 08:03:57 +00:00
|
|
|
|
2016-08-21 15:16:03 +00:00
|
|
|
x11_enabled = get_option('enable-x11-backend')
|
|
|
|
wayland_enabled = get_option('enable-wayland-backend')
|
|
|
|
broadway_enabled = get_option('enable-broadway-backend')
|
|
|
|
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
mkmarshal = find_program('build_marshal.py')
|
2016-08-22 19:26:38 +00:00
|
|
|
glib_marshal = find_program('glib-genmarshal')
|
2016-09-24 15:35:10 +00:00
|
|
|
mkenum = find_program('build_enum.py')
|
|
|
|
perl = find_program('perl')
|
2016-08-23 06:21:54 +00:00
|
|
|
glib_mkenums = find_program('glib-mkenums')
|
|
|
|
|
2016-09-20 14:29:14 +00:00
|
|
|
os_unix = false
|
|
|
|
os_linux = false
|
|
|
|
os_win32 = false
|
|
|
|
os_darwin = false
|
|
|
|
|
|
|
|
if host_machine.system().contains('darwin')
|
|
|
|
os_darwin = true
|
|
|
|
elif host_machine.system().contains('mingw')
|
|
|
|
os_win32 = true
|
|
|
|
elif host_machine.system().contains('linux')
|
|
|
|
os_linux = true
|
|
|
|
endif
|
|
|
|
|
|
|
|
os_unix = not os_win32
|
|
|
|
|
2016-08-22 19:26:38 +00:00
|
|
|
|
2016-08-15 08:03:57 +00:00
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
cdata = configuration_data()
|
2016-08-21 14:00:37 +00:00
|
|
|
cdata.set('PACKAGE_VERSION', '"'+meson.project_version()+'"')
|
2016-08-21 15:16:03 +00:00
|
|
|
cdata.set('GTK_LOCALEDIR', '"'+get_option('localedir')+'"')
|
|
|
|
cdata.set('GTK_DATADIR', '"'+get_option('datadir')+'"')
|
|
|
|
cdata.set('GTK_LIBDIR', '"'+get_option('libdir')+'"')
|
2016-09-24 15:35:10 +00:00
|
|
|
cdata.set('GETTEXT_PACKAGE', '"gtk30"')
|
2016-09-10 04:58:16 +00:00
|
|
|
cdata.set('GTK_MAJOR_VERSION', gtk_major_version)
|
2016-08-23 06:21:54 +00:00
|
|
|
cdata.set('GTK_MINOR_VERSION', gtk_minor_version)
|
|
|
|
cdata.set('GTK_MICRO_VERSION', gtk_micro_version)
|
|
|
|
cdata.set('GTK_BINARY_AGE', gtk_binary_age)
|
|
|
|
cdata.set('GTK_INTERFACE_AGE', gtk_interface_age)
|
2016-08-15 08:03:57 +00:00
|
|
|
check_headers = [
|
|
|
|
['HAVE_CRT_EXTERNS_H', 'crt/externs.h'],
|
|
|
|
['HAVE_DLFCN_H', 'dlfcn.h'],
|
|
|
|
['HAVE_FTW_H', 'ftw.h'],
|
|
|
|
['HAVE_INTTYPES_H', 'inttypes.h'],
|
|
|
|
['HAVE_LOCALE_H', 'locale.h'],
|
|
|
|
['HAVE_MEMORY_H', 'memory.h'],
|
|
|
|
['HAVE_STDINT_H', 'stdint.h'],
|
|
|
|
['HAVE_STDLIB_H', 'stdlib.h'],
|
|
|
|
['HAVE_STRINGS_H', 'strings.h'],
|
|
|
|
['HAVE_STRING_H', 'string.h'],
|
|
|
|
['HAVE_SYS_MMAN_H', 'sys/mman.h'],
|
|
|
|
['HAVE_SYS_PARAM_H', 'sys/param.h'],
|
|
|
|
['HAVE_SYS_STAT_H', 'sys/stat.h'],
|
|
|
|
['HAVE_SYS_SYSINFO_H', 'sys/sysinfo.h'],
|
|
|
|
['HAVE_SYS_SYSTEMINFO_H', 'sys/systeminfo.h'],
|
|
|
|
['HAVE_SYS_TIME_H', 'sys/time.h'],
|
|
|
|
['HAVE_SYS_TYPES_H', 'sys/types.h'],
|
|
|
|
['HAVE_UNISTD_H', 'unistd.h'],
|
2016-09-24 10:46:10 +00:00
|
|
|
['HAVE_LINUX_MEMFD_H', 'linux/memfd.h'],
|
2016-08-15 08:03:57 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
foreach h : check_headers
|
|
|
|
if cc.has_header(h.get(1))
|
|
|
|
cdata.set(h.get(0), 1)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
check_functions = [
|
|
|
|
# check token HAVE_BIND_TEXTDOMAIN_CODESET
|
|
|
|
# check token HAVE_CUPS_API_1_6
|
|
|
|
['HAVE_DCGETTEXT', 'dcgettext', '#include<libintl.h>'],
|
|
|
|
['HAVE_DECL_ISINF', 'isinf', '#include<math.h>'],
|
|
|
|
['HAVE_DECL_ISNAN', 'isnan', '#include<math.h>'],
|
|
|
|
['HAVE_GETPAGESIZE', 'getpagesize', '#include<unistd.h>'],
|
|
|
|
['HAVE_GETRESUID', 'getresuid', '#include<unistd.h>'],
|
|
|
|
# check token HAVE_GETTEXT
|
|
|
|
# check token HAVE_GIO_UNIX
|
|
|
|
# check token HAVE_GNU_FTW
|
|
|
|
# check token HAVE_HTTPGETAUTHSTRING
|
|
|
|
# check token HAVE_HTTP_AUTHSTRING
|
|
|
|
# check token HAVE_IPRINTDIALOGCALLBACK
|
|
|
|
# check token HAVE_LC_MESSAGES
|
|
|
|
# check token HAVE_LOCALTIME_R
|
|
|
|
['HAVE_LSTAT', 'lstat', '#include<sys/stat.h>'],
|
|
|
|
['HAVE_MMAP', 'mmap', '#include<sys/mman.h>'],
|
|
|
|
['HAVE_NEARBYINT', 'nearbyint', '#include<math.h>'],
|
2016-09-24 15:35:10 +00:00
|
|
|
['HAVE_POSIX_FALLOCATE', 'posix_fallocate', '#include<fcntl.h>'],
|
|
|
|
['HAVE__LOCK_FILE', '_lock_file', '#include<stdio.h>'],
|
|
|
|
['HAVE_FLOCKFILE', 'flockfile', '#include<stdio.h>'],
|
|
|
|
['HAVE_MKSTEMP', 'mkstemp', '#include<stdlib.h>'],
|
|
|
|
['HAVE_MALLINFO', 'mallinfo', '#include<malloc.h>'],
|
2016-08-15 08:03:57 +00:00
|
|
|
['HAVE_ROUND', 'round', '#include<math.h>'],
|
|
|
|
['HAVE_RINT', 'rint', '#include<math.h>'],
|
2016-08-21 14:00:37 +00:00
|
|
|
['HAVE_LOG2', 'log2', '#include<math.h>'],
|
|
|
|
['HAVE_EXP2', 'exp2', '#include<math.h>'],
|
2016-09-24 06:44:53 +00:00
|
|
|
['HAVE_SINCOS', 'sincos', '#include<math.h>'],
|
2016-09-24 10:46:10 +00:00
|
|
|
['HAVE_XKB', 'XkbQueryExtension', '#include<X11/XKBlib.h>'],
|
2016-08-15 08:03:57 +00:00
|
|
|
# check token HAVE_SOCKADDR_UN_SUN_LEN
|
|
|
|
# check token HAVE_SOLARIS_XINERAMA
|
|
|
|
# check token HAVE_XFREE_XINERAMA
|
|
|
|
# check token HAVE_XINERAMA
|
|
|
|
# check token HAVE__NL_MEASUREMENT_MEASUREMENT
|
|
|
|
# check token HAVE__NL_PAPER_HEIGHT
|
|
|
|
# check token HAVE__NL_PAPER_WIDTH
|
|
|
|
# check token HAVE__NL_TIME_FIRST_WEEKDAY
|
|
|
|
# check token HAVE__NSGETENVIRON
|
|
|
|
]
|
2016-09-24 15:35:10 +00:00
|
|
|
if x11_enabled
|
|
|
|
check_functions += [
|
|
|
|
['HAVE_XGENERICEVENTS', 'XGetEventData', '#include<X11/Xlib.h>'],
|
|
|
|
['HAVE_XSYNC', 'XSyncQueryExtension', '#include<X11/Xlib.h>\n#include</usr/include/X11/extensions/sync.h>']
|
|
|
|
]
|
|
|
|
endif
|
2016-08-15 08:03:57 +00:00
|
|
|
|
|
|
|
foreach f : check_functions
|
|
|
|
if cc.has_function(f.get(1), prefix : f.get(2))
|
|
|
|
cdata.set(f.get(0), 1)
|
|
|
|
endif
|
|
|
|
endforeach
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
# Disable deprecation checks for all libraries we depend on on stable branches.
|
|
|
|
# This is so newer versions of those libraries don't cause more warnings with
|
|
|
|
# a stable GTK version.
|
|
|
|
# We don't ever want to turn off deprecation warnings for master however, because
|
|
|
|
# that's where we get rid of deprecated API we use.
|
|
|
|
if gtk_minor_version % 2 == 0
|
|
|
|
cdata.set('GLIB_DISABLE_DEPRECATION_WARNINGS', 1)
|
|
|
|
endif
|
|
|
|
|
2016-08-15 08:03:57 +00:00
|
|
|
|
|
|
|
confinc = include_directories('.')
|
|
|
|
gdkinc = include_directories('gdk')
|
2016-08-23 06:21:54 +00:00
|
|
|
gtkinc = include_directories('gtk')
|
|
|
|
|
|
|
|
glib_dep = dependency('glib-2.0', version: '>= 2.49.4')
|
|
|
|
giounix_dep = dependency('gio-unix-2.0', required : false)
|
|
|
|
pango_dep = dependency('pango', version: '>=1.37.3')
|
2016-09-20 14:29:14 +00:00
|
|
|
pangoft_dep = dependency('pangoft2', required: wayland_enabled or x11_enabled)
|
2016-09-24 06:15:28 +00:00
|
|
|
cairo_dep = dependency('cairo', version: '>= 1.14.0')
|
2016-08-15 08:03:57 +00:00
|
|
|
pangocairo_dep = dependency('pangocairo')
|
2016-08-23 06:21:54 +00:00
|
|
|
cairogobj_dep = dependency('cairo-gobject')
|
|
|
|
pixbuf_dep = dependency('gdk-pixbuf-2.0', version: '>= 2.30.0')
|
2016-09-24 06:15:28 +00:00
|
|
|
epoxy_dep = dependency('epoxy', version: '>= 1.0')
|
2016-08-23 06:21:54 +00:00
|
|
|
atk_dep = dependency('atk', version: '>= 2.15.1')
|
|
|
|
atkbridge_dep = dependency('atk-bridge-2.0')
|
|
|
|
gmodule_dep = dependency('gmodule-2.0')
|
2016-09-24 15:35:10 +00:00
|
|
|
colord_dep = dependency('colord', version: '>= 0.1.9', required: false)
|
2016-08-15 08:03:57 +00:00
|
|
|
fontconfig_dep = dependency('fontconfig')
|
2016-09-20 14:29:14 +00:00
|
|
|
harfbuzz_dep = dependency('harfbuzz', version: '>= 0.9', required: false)
|
2016-09-24 15:35:10 +00:00
|
|
|
xkbdep = dependency('xkbcommon', version: '>= 0.2.0')
|
2016-11-03 08:47:00 +00:00
|
|
|
graphene_dep = dependency('graphene-1.0')
|
2016-08-15 08:03:57 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if wayland_enabled
|
|
|
|
wlclientdep = dependency('wayland-client', version: '>= 1.9.91')
|
|
|
|
wlprotocolsdep = dependency('wayland-protocols', version: '>= 1.7')
|
|
|
|
wlcursordep = dependency('wayland-cursor', version: '>= 1.9.91')
|
|
|
|
wlegldep = dependency('wayland-egl')
|
2016-08-15 08:03:57 +00:00
|
|
|
endif
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if x11_enabled
|
|
|
|
xrandr_dep = dependency('xrandr', version: '>= 1.2.99')
|
|
|
|
xrandr15_dep = dependency('xrandr', version: '>= 1.5', required: false)
|
|
|
|
x11_dep = dependency('x11')
|
|
|
|
xrender_dep = dependency('xrender')
|
|
|
|
xi_dep = dependency('xi')
|
|
|
|
xext_dep = dependency('xext')
|
|
|
|
xcursor_dep = dependency('xcursor', required: false)
|
|
|
|
xdamage_dep = dependency('xdamage', required: false)
|
|
|
|
xfixes_dep = dependency('xfixes', required: false)
|
|
|
|
xcomposite_dep = dependency('xcomposite', required: false)
|
|
|
|
|
|
|
|
|
|
|
|
if xdamage_dep.found()
|
|
|
|
cdata.set('HAVE_XDAMAGE', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if xcursor_dep.found()
|
|
|
|
cdata.set('HAVE_XCURSOR', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if xcomposite_dep.found()
|
|
|
|
cdata.set('HAVE_XCOMPOSITE', 1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if xfixes_dep.found()
|
|
|
|
cdata.set('HAVE_XFIXES', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if xi_dep.found() and cc.has_header('X11/extensions/XInput2.h')
|
|
|
|
cdata.set('XINPUT_2', 1)
|
|
|
|
prefix = '#include<X11/Xlib.h>\n#include<X11/extensions/XInput2.h>'
|
|
|
|
if cc.has_function('XIAllowTouchEvents', prefix: prefix) and cc.has_member('XIScrollClassInfo', 'number', prefix: prefix)
|
|
|
|
cdata.set('XINPUT_2_2', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
endif
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if xrandr_dep.found()
|
|
|
|
cdata.set('HAVE_RANDR', 1)
|
2016-09-24 10:46:10 +00:00
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
if xrandr15_dep.found()
|
|
|
|
cdata.set('HAVE_RANDR15', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-09-24 15:35:10 +00:00
|
|
|
mlib = cc.find_library('m', required: false)
|
|
|
|
shmlib = cc.find_library('rt')
|
|
|
|
|
|
|
|
if giounix_dep.found()
|
|
|
|
cdata.set('HAVE_GIO_UNIX', 1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if colord_dep.found()
|
|
|
|
cdata.set('HAVE_COLORD', 1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if mlib.found()
|
|
|
|
cdata.set('HAVE_LIBM', 1)
|
|
|
|
endif
|
2016-09-24 10:46:10 +00:00
|
|
|
|
2016-08-23 06:21:54 +00:00
|
|
|
configure_file(
|
|
|
|
input : 'config.h.meson',
|
|
|
|
output: 'config.h',
|
|
|
|
configuration: cdata
|
|
|
|
)
|
2016-08-15 08:03:57 +00:00
|
|
|
|
|
|
|
subdir('gdk')
|
2016-11-03 08:47:00 +00:00
|
|
|
subdir('gsk')
|
2016-09-20 09:10:27 +00:00
|
|
|
subdir('gtk')
|
|
|
|
subdir('demos')
|
2016-09-24 06:15:28 +00:00
|
|
|
subdir('tests')
|
|
|
|
subdir('testsuite')
|
2016-09-24 07:38:10 +00:00
|
|
|
subdir('examples')
|