• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/package/libgtk3/0002-fix-introspection-check.patch
Vicente Olivert RieraVicente Olivert Riera committed 2e6ace7d12b11 Nov 2014
Raw file
Source viewDiff to previous
 
1
Fix HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
2
​
3
During autoreconf GOBJECT_INTROSPECTION_CHECK could not be resolved because we
4
don't have introspection which provides its custom m4 macro. Reconfigure fails
5
with:
6
​
7
gdk/Makefile.am:196: error: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
8
gtk/Makefile.am:1347: error: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
9
​
10
We avoid to add a copy of introspection.m4 in the m4 directory of libgtk3 by
11
adding a check, as performed in Systemd.
12
​
13
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
14
​
15
--- a/configure.ac
16
+++ b/configure.ac
17
@@ -1621,7 +1621,10 @@
18
 # GObject introspection
19
 ##################################################
20
​
21
-GOBJECT_INTROSPECTION_CHECK(introspection_required_version)
22
+m4_ifdef([GOBJECT_INTROSPECTION_CHECK],
23
+         [GOBJECT_INTROSPECTION_CHECK(introspection_required_version)],
24
+         [AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
25
+          enable_introspection=no])
26
​
27
 ##################################################
28
 # colord module
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.