2017-12-13 18:13:54 +00:00
|
|
|
|
project('nautilus', 'c',
|
2018-06-09 15:53:27 +00:00
|
|
|
|
default_options: ['c_std=c11'],
|
2018-09-03 17:31:11 +00:00
|
|
|
|
version: '3.30.0',
|
2018-09-05 10:46:45 +00:00
|
|
|
|
meson_version: '>= 0.47.0',
|
2017-12-13 18:13:54 +00:00
|
|
|
|
license: 'GPL3+'
|
|
|
|
|
)
|
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
###############
|
|
|
|
|
# Directories #
|
|
|
|
|
###############
|
|
|
|
|
|
|
|
|
|
prefix = get_option('prefix')
|
|
|
|
|
|
2017-12-13 18:13:54 +00:00
|
|
|
|
bindir = get_option('bindir')
|
|
|
|
|
datadir = get_option('datadir')
|
|
|
|
|
desktopdir = join_paths(datadir, 'applications')
|
|
|
|
|
includedir = get_option('includedir')
|
|
|
|
|
libdir = get_option('libdir')
|
2018-07-14 10:35:24 +00:00
|
|
|
|
localedir = get_option('localedir')
|
2017-12-13 18:13:54 +00:00
|
|
|
|
extensiondir = join_paths(libdir, 'nautilus', 'extensions-3.0')
|
|
|
|
|
servicedir = join_paths(datadir, 'dbus-1', 'services')
|
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
###################
|
|
|
|
|
# End directories #
|
|
|
|
|
###################
|
|
|
|
|
|
|
|
|
|
#############
|
|
|
|
|
# Compilers #
|
|
|
|
|
#############
|
|
|
|
|
|
2017-12-13 18:13:54 +00:00
|
|
|
|
cc = meson.get_compiler('c')
|
2018-07-14 10:35:24 +00:00
|
|
|
|
|
|
|
|
|
#################
|
|
|
|
|
# End compilers #
|
|
|
|
|
#################
|
2017-12-13 18:13:54 +00:00
|
|
|
|
|
2018-02-26 07:47:59 +00:00
|
|
|
|
add_project_arguments(
|
|
|
|
|
cc.get_supported_arguments([
|
|
|
|
|
'-Wall',
|
|
|
|
|
'-Wduplicated-branches',
|
2018-05-28 09:59:33 +00:00
|
|
|
|
'-Wduplicated-cond',
|
2018-02-26 07:47:59 +00:00
|
|
|
|
'-Wlogical-op',
|
|
|
|
|
'-Werror=declaration-after-statement',
|
|
|
|
|
'-Werror=empty-body',
|
|
|
|
|
'-Werror=format=2',
|
|
|
|
|
'-Werror=implicit-function-declaration',
|
2018-10-06 16:19:28 +00:00
|
|
|
|
'-Werror=incompatible-pointer-types',
|
2018-02-26 07:47:59 +00:00
|
|
|
|
'-Werror=init-self',
|
|
|
|
|
'-Werror=missing-include-dirs',
|
|
|
|
|
'-Werror=missing-prototypes',
|
|
|
|
|
'-Werror=pointer-arith',
|
|
|
|
|
'-Werror=sequence-point',
|
|
|
|
|
'-Werror=shadow',
|
|
|
|
|
'-Werror=strict-prototypes',
|
|
|
|
|
'-Werror=undef',
|
|
|
|
|
'-Werror=uninitialized',
|
2018-10-31 20:47:59 +00:00
|
|
|
|
# Context: https://gitlab.com/freedesktop-sdk/freedesktop-sdk/commit/ce54a2527555e51e4ebf4cce9cbb6259cafa89a4
|
|
|
|
|
# -O2 and -fexceptions unmask some cases of -Wmaybe-uninitialized, which
|
|
|
|
|
# become errors for some reason (I’m guessing because of the
|
|
|
|
|
# -Werror=uninitialized above, but no idea why that implies this).
|
|
|
|
|
# This being an error is nice and all, but not when its appearance is
|
|
|
|
|
# dependent on optimization level and other flags.
|
|
|
|
|
'-Wno-error=maybe-uninitialized',
|
2018-02-26 07:47:59 +00:00
|
|
|
|
]),
|
2018-06-09 15:58:46 +00:00
|
|
|
|
'-D_GNU_SOURCE',
|
2018-02-26 07:47:59 +00:00
|
|
|
|
language: 'c'
|
|
|
|
|
)
|
|
|
|
|
|
2018-10-08 11:13:23 +00:00
|
|
|
|
######################
|
|
|
|
|
# Host system checks #
|
|
|
|
|
######################
|
2018-06-02 10:13:32 +00:00
|
|
|
|
|
2018-10-08 11:13:23 +00:00
|
|
|
|
host_system = host_machine.system()
|
|
|
|
|
host_cpu = host_machine.cpu()
|
|
|
|
|
unsupported_cpus = [
|
|
|
|
|
'alpha',
|
|
|
|
|
'ia64',
|
|
|
|
|
'm68k',
|
|
|
|
|
'parisc',
|
|
|
|
|
'parisc64',
|
|
|
|
|
'sh4',
|
|
|
|
|
'sparc64',
|
|
|
|
|
]
|
|
|
|
|
system_supports_seccomp = host_system == 'linux'
|
|
|
|
|
cpu_supports_seccomp = not unsupported_cpus.contains(host_cpu)
|
|
|
|
|
seccomp_required = system_supports_seccomp and cpu_supports_seccomp
|
|
|
|
|
|
|
|
|
|
##########################
|
|
|
|
|
# End host system checks #
|
|
|
|
|
##########################
|
2018-07-14 10:35:24 +00:00
|
|
|
|
|
|
|
|
|
##################
|
|
|
|
|
# Module imports #
|
|
|
|
|
##################
|
|
|
|
|
|
2017-12-13 18:13:54 +00:00
|
|
|
|
gnome = import('gnome')
|
|
|
|
|
i18n = import('i18n')
|
2018-01-30 18:30:10 +00:00
|
|
|
|
pkgconfig = import('pkgconfig')
|
2017-12-13 18:13:54 +00:00
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
######################
|
|
|
|
|
# End module imports #
|
|
|
|
|
######################
|
|
|
|
|
|
|
|
|
|
################
|
|
|
|
|
# Dependencies #
|
|
|
|
|
################
|
2018-02-20 22:14:45 +00:00
|
|
|
|
glib_ver = '>= 2.55.1'
|
2017-12-13 18:13:54 +00:00
|
|
|
|
|
|
|
|
|
libgd = subproject(
|
|
|
|
|
'libgd',
|
|
|
|
|
default_options: [
|
|
|
|
|
'static=true',
|
|
|
|
|
'with-gtk-hacks=true',
|
|
|
|
|
'with-main-view=true',
|
|
|
|
|
'with-tagged-entry=true'
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
libgd_dep = libgd.get_variable('libgd_dep')
|
|
|
|
|
|
2018-03-24 12:08:57 +00:00
|
|
|
|
libm = cc.find_library('m')
|
2017-12-13 18:13:54 +00:00
|
|
|
|
|
2018-01-31 08:27:52 +00:00
|
|
|
|
if get_option('extensions')
|
|
|
|
|
gexiv = dependency('gexiv2', version: '>= 0.10.0')
|
|
|
|
|
endif
|
2017-12-13 18:13:54 +00:00
|
|
|
|
gio = dependency('gio-2.0', version: glib_ver)
|
|
|
|
|
gio_unix = dependency('gio-unix-2.0', version: glib_ver)
|
|
|
|
|
glib = dependency('glib-2.0', version: glib_ver)
|
|
|
|
|
gmodule = dependency('gmodule-no-export-2.0', version: glib_ver)
|
|
|
|
|
gnome_autoar = dependency('gnome-autoar-0', version: '>= 0.2.1')
|
2018-04-28 10:21:50 +00:00
|
|
|
|
gsettings_desktop_schemas = dependency('gsettings-desktop-schemas')
|
2018-03-20 19:02:49 +00:00
|
|
|
|
gtk = dependency('gtk+-3.0', version: '>= 3.22.27')
|
2018-10-08 11:13:23 +00:00
|
|
|
|
if seccomp_required
|
2018-10-09 12:36:37 +00:00
|
|
|
|
message('seccomp required on this platform, make sure bubblewrap is available at runtime as well.')
|
2018-06-02 10:13:32 +00:00
|
|
|
|
seccomp = dependency('libseccomp')
|
2018-10-08 11:13:23 +00:00
|
|
|
|
else
|
|
|
|
|
warning('The host does not support seccomp, thumbnailer sandboxing will be disabled. Such setups are not recommended, use at your own risk!')
|
|
|
|
|
seccomp = dependency('', required: false)
|
2018-06-02 10:13:32 +00:00
|
|
|
|
endif
|
2018-01-04 15:27:13 +00:00
|
|
|
|
selinux = []
|
2017-12-13 18:13:54 +00:00
|
|
|
|
if get_option('selinux')
|
|
|
|
|
selinux = dependency('libselinux', version: '>= 2.0')
|
2016-09-28 06:16:11 +00:00
|
|
|
|
endif
|
2018-01-03 18:16:50 +00:00
|
|
|
|
tracker_sparql = dependency('tracker-sparql-2.0')
|
2017-12-13 18:13:54 +00:00
|
|
|
|
x11 = dependency('x11')
|
|
|
|
|
xml = dependency('libxml-2.0', version: '>= 2.7.8')
|
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
####################
|
|
|
|
|
# End dependencies #
|
|
|
|
|
####################
|
|
|
|
|
|
|
|
|
|
#################
|
|
|
|
|
# Configuration #
|
|
|
|
|
#################
|
2017-12-13 18:13:54 +00:00
|
|
|
|
conf = configuration_data()
|
|
|
|
|
|
2018-03-16 15:24:11 +00:00
|
|
|
|
if get_option('profile') == 'development'
|
|
|
|
|
profile = 'Devel'
|
2018-03-19 11:08:49 +00:00
|
|
|
|
name_suffix = ' (Development Snapshot)'
|
2018-07-14 08:00:39 +00:00
|
|
|
|
elif get_option('profile') != ''
|
|
|
|
|
profile = get_option('profile')
|
|
|
|
|
name_suffix = get_option('profile')
|
2018-03-16 15:24:11 +00:00
|
|
|
|
else
|
2018-03-19 11:08:49 +00:00
|
|
|
|
profile = ''
|
|
|
|
|
name_suffix = ''
|
2018-03-16 15:24:11 +00:00
|
|
|
|
endif
|
|
|
|
|
|
2018-07-14 11:56:57 +00:00
|
|
|
|
application_id = 'org.gnome.Nautilus' + profile
|
2018-03-16 15:24:11 +00:00
|
|
|
|
|
2018-07-14 11:56:57 +00:00
|
|
|
|
conf.set_quoted('APPLICATION_ID', application_id)
|
2017-12-13 18:13:54 +00:00
|
|
|
|
conf.set_quoted('GETTEXT_PACKAGE', 'nautilus')
|
2018-07-14 10:35:24 +00:00
|
|
|
|
conf.set_quoted('INSTALL_PREFIX', prefix)
|
|
|
|
|
conf.set_quoted('LOCALEDIR', join_paths(prefix, localedir))
|
|
|
|
|
conf.set_quoted('NAME_SUFFIX', name_suffix)
|
2017-12-13 18:13:54 +00:00
|
|
|
|
conf.set_quoted('NAUTILUS_DATADIR', join_paths(datadir, 'nautilus'))
|
|
|
|
|
conf.set_quoted('NAUTILUS_EXTENSIONDIR', join_paths(prefix, extensiondir))
|
2018-07-14 10:35:24 +00:00
|
|
|
|
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
2018-03-16 15:24:11 +00:00
|
|
|
|
conf.set_quoted('PROFILE', profile)
|
2018-07-14 10:35:24 +00:00
|
|
|
|
conf.set_quoted('VERSION', '@0@-@VCS_TAG@'.format(meson.project_version()))
|
2018-04-28 10:21:50 +00:00
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
###################################################
|
|
|
|
|
# gnome-desktop macros for thumbnailer sandboxing #
|
|
|
|
|
###################################################
|
2018-10-08 11:13:23 +00:00
|
|
|
|
|
|
|
|
|
conf.set('ENABLE_SECCOMP', seccomp.found())
|
|
|
|
|
conf.set('HAVE_BWRAP', seccomp.found())
|
2018-04-28 10:21:50 +00:00
|
|
|
|
|
2018-10-08 11:15:39 +00:00
|
|
|
|
conf.set('ENABLE_PACKAGEKIT', get_option('packagekit'))
|
|
|
|
|
conf.set('ENABLE_PROFILING', get_option('profiling'))
|
|
|
|
|
conf.set('HAVE_SELINUX', get_option('selinux'))
|
2016-09-28 06:16:11 +00:00
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
#############################################################
|
|
|
|
|
# config.h dependency, add to target dependencies if needed #
|
|
|
|
|
#############################################################
|
|
|
|
|
|
2018-03-19 11:08:49 +00:00
|
|
|
|
config_h = declare_dependency(
|
|
|
|
|
sources: vcs_tag(
|
|
|
|
|
command: ['git', 'rev-parse', '--short', 'HEAD'],
|
2018-07-14 10:35:24 +00:00
|
|
|
|
fallback: get_option('profile') != ''? 'devel' : 'stable',
|
2018-03-19 11:08:49 +00:00
|
|
|
|
input: configure_file(
|
|
|
|
|
output: 'config.h.in',
|
|
|
|
|
configuration: conf
|
|
|
|
|
),
|
|
|
|
|
output: 'config.h'
|
2018-03-16 15:24:11 +00:00
|
|
|
|
)
|
2018-03-19 11:08:49 +00:00
|
|
|
|
)
|
2018-07-14 10:35:24 +00:00
|
|
|
|
|
|
|
|
|
#####################
|
|
|
|
|
# End configuration #
|
|
|
|
|
#####################
|
2016-09-28 06:16:11 +00:00
|
|
|
|
|
2018-01-31 08:24:07 +00:00
|
|
|
|
nautilus_include_dirs = include_directories(
|
|
|
|
|
'.',
|
|
|
|
|
'libnautilus-extension'
|
|
|
|
|
)
|
2016-09-28 06:16:11 +00:00
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
#########
|
|
|
|
|
# Build #
|
|
|
|
|
#########
|
|
|
|
|
|
|
|
|
|
subdirs = [
|
|
|
|
|
'data',
|
|
|
|
|
'eel',
|
|
|
|
|
'libnautilus-extension',
|
|
|
|
|
'po',
|
|
|
|
|
'src',
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
########################
|
|
|
|
|
# Conditional building #
|
|
|
|
|
########################
|
2017-03-01 16:08:50 +00:00
|
|
|
|
|
2017-12-13 18:13:54 +00:00
|
|
|
|
if get_option('docs')
|
2018-07-14 10:35:24 +00:00
|
|
|
|
subdirs += 'docs'
|
|
|
|
|
endif
|
|
|
|
|
if get_option('tests') != 'none'
|
|
|
|
|
subdirs += 'test'
|
2017-03-01 16:08:50 +00:00
|
|
|
|
endif
|
2018-01-31 08:27:52 +00:00
|
|
|
|
if get_option('extensions')
|
2018-07-14 10:35:24 +00:00
|
|
|
|
subdirs += 'extensions'
|
2016-09-28 06:16:11 +00:00
|
|
|
|
endif
|
2017-03-07 09:24:54 +00:00
|
|
|
|
|
2018-07-14 10:35:24 +00:00
|
|
|
|
foreach dir : subdirs
|
|
|
|
|
subdir(dir)
|
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
|
|
#############
|
|
|
|
|
# End build #
|
|
|
|
|
#############
|
|
|
|
|
|
|
|
|
|
#########################################################
|
|
|
|
|
# Compile GSettings schemas when installing from source #
|
|
|
|
|
#########################################################
|
|
|
|
|
meson.add_install_script('build-aux/meson/postinstall.py')
|