summarylogtreecommitdiffstats
path: root/0001-configure-meson-Tmp-fix-for-gobject-2.0-libs-missing.patch
blob: 0f67b36e4bc61db5582a5e3b6b4259d352a7c405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
From e1486fee47785c094e93eca336684ab38bcb16bc Mon Sep 17 00:00:00 2001
From: "Miguel A. Vico" <mvicomoya@nvidia.com>
Date: Tue, 26 Mar 2019 15:34:12 -0700
Subject: [PATCH 1/8] configure/meson: Tmp fix for gobject-2.0 libs missing in
 pango pkgconfig
X-NVConfidentiality: public

This fixes the following build error, until the pango pkgconfig is
restored to also include the corresponding flags to link against
gobject-2.0:

  /usr/bin/ld: clients/weston_editor-editor.o: undefined reference to symbol 'g_object_unref'
  /usr/bin/ld: /usr/lib/libgobject-2.0.so.0: error adding symbols: DSO missing from command line
  collect2: error: ld returned 1 exit status

Signed-off-by: Miguel A Vico Moya <mvicomoya@nvidia.com>
---
 configure.ac       | 2 +-
 shared/meson.build | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index c05ad011..425ba238 100644
--- a/configure.ac
+++ b/configure.ac
@@ -503,7 +503,7 @@ if test x$enable_clients = xyes; then
 	  [AC_ERROR([cairo-egl not used because $CAIRO_EGL_PKG_ERRORS])])],
   [have_cairo_egl=no])
 
-  PKG_CHECK_MODULES(PANGO, [pangocairo pango glib-2.0 >= 2.36], [have_pango=yes], [have_pango=no])
+  PKG_CHECK_MODULES(PANGO, [pangocairo pango glib-2.0 >= 2.36 gobject-2.0 >= 2.36], [have_pango=yes], [have_pango=no])
 fi
 
 AC_ARG_ENABLE(resize-optimization,
diff --git a/shared/meson.build b/shared/meson.build
index 5b0d8d13..c90be7de 100644
--- a/shared/meson.build
+++ b/shared/meson.build
@@ -37,9 +37,10 @@ deps_cairo_shared = [
 dep_pango = dependency('pango', required: false)
 dep_pangocairo = dependency('pangocairo', required: false)
 dep_glib = dependency('glib-2.0', version: '>= 2.36', required: false)
+dep_gobject = dependency('gobject-2.0', version: '>= 2.36', required: false)
 
-if dep_pango.found() and dep_pangocairo.found() and dep_glib.found()
-	deps_cairo_shared += [ dep_pango, dep_pangocairo, dep_glib ]
+if dep_pango.found() and dep_pangocairo.found() and dep_glib.found() and dep_gobject.found()
+	deps_cairo_shared += [ dep_pango, dep_pangocairo, dep_glib, dep_gobject ]
 	config_h.set('HAVE_PANGO', '1')
 endif
 
-- 
2.21.0