• 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
xxxxxxxxxx
 
Fix HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
​
During autoreconf GOBJECT_INTROSPECTION_CHECK could not be resolved because we
don't have introspection which provides its custom m4 macro. Reconfigure fails
with:
​
gdk/Makefile.am:196: error: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
gtk/Makefile.am:1347: error: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL
​
We avoid to add a copy of introspection.m4 in the m4 directory of libgtk3 by
adding a check, as performed in Systemd.
​
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
​
--- a/configure.ac
+++ b/configure.ac
@@ -1621,7 +1621,10 @@
 # GObject introspection
 ##################################################
​
-GOBJECT_INTROSPECTION_CHECK(introspection_required_version)
+m4_ifdef([GOBJECT_INTROSPECTION_CHECK],
+         [GOBJECT_INTROSPECTION_CHECK(introspection_required_version)],
+         [AM_CONDITIONAL([HAVE_INTROSPECTION], [false])
+          enable_introspection=no])
​
 ##################################################
 # 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.