[gtk+/wip/baedert/meson: 833/841] gtk/meson: Read dirs from options
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/meson: 833/841] gtk/meson: Read dirs from options
- Date: Thu, 3 Nov 2016 11:18:03 +0000 (UTC)
commit 251bfc0bf553344bc03f9b88d67a2e20b9bec86a
Author: Timm Bäder <mail baedert org>
Date: Sat Sep 24 10:04:23 2016 +0200
gtk/meson: Read dirs from options
gtk/meson.build | 29 +++++++++++++++++++----------
1 files changed, 19 insertions(+), 10 deletions(-)
---
diff --git a/gtk/meson.build b/gtk/meson.build
index be77b62..79a93a1 100644
--- a/gtk/meson.build
+++ b/gtk/meson.build
@@ -762,6 +762,17 @@ gtkversion = configure_file(
configuration: cdata
)
+gtk_cargs = [
+ '-DGTK_COMPILATION',
+ '-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED',
+ '-DGTK_BINARY_VERSION="' + gtk_binary_version + '"',
+ '-DGTK_HOST="' + host_machine.system() + '"',
+ '-DGTK_SYSCONFDIR="' + get_option('prefix') + '/etc"',
+ '-DGTK_DATADIR="' + get_option('datadir') + '"',
+ '-DGTK_DATA_PREFIX="'+ get_option('prefix') + '"',
+ '-DGTK_PRINT_BACKENDS="null"',
+]
+
gtk_sources += [
gtk_dbus_src,
gtk_unix_sources,
@@ -792,6 +803,13 @@ gtk_deps = [
]
if x11_enabled
+ runcmd = run_command('pkg-config', '--variable=pkgdatadir', 'wayland-protocols')
+ if runcmd.returncode() == 0
+ gtk_cargs += '-DX11_DATA_PREFIX="' + runcmd.stdout().strip() + '"'
+ else
+ error('Could not get wayland-protocols pkgdatadir via pkg-config.')
+ endif
+
gtk_sources += [
gtk_x11_sources,
gtk_use_wayland_or_x11_c_sources
@@ -816,16 +834,7 @@ endif
libgtk = shared_library('gtk',
gtk_sources,
gtkmarshal_h,
- c_args: [
- '-DGTK_COMPILATION',
- '-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED',
- '-DGTK_BINARY_VERSION="' + gtk_binary_version + '"',
- '-DGTK_HOST="' + host_machine.system() + '"',
- '-DGTK_SYSCONFDIR="sysconfdir"',
- '-DGTK_DATA_PREFIX="dataprefix"',
- '-DGTK_PRINT_BACKENDS="null"',
- '-DX11_DATA_PREFIX="/usr"'
- ],
+ c_args: gtk_cargs,
include_directories: [ confinc, gdkinc, gtkinc ],
dependencies: [gtk_deps, libgdk_dep],
)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]