| Summary: | net-libs/gupnp-igd - src_prepare(): libgupnp-igd/Makefile.am:64: HAVE_INTROSPECTION does not appear in AM_CONDITIONAL | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | cyberbat <cyberbat83> |
| Component: | [OLD] Library | Assignee: | Gentoo net-p2p team <net-p2p> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | CC: | pinkbyte |
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
cyberbat
2013-02-06 10:53:26 UTC
Confirmed. Confirming this too for 0.2.1 and for 0.2.2 with USE='-introspection' Problem code:
26 GOBJECT_INTROSPECTION_CHECK([0.10])
27 if test "x$found_introspection" = "xyes"; then
28 INTROSPECTION_TYPELIBDIR=`$PKG_CONFIG --variable=typelibdir --define-variable="libdir=${libdir}" gobject-introspection-1.0`
29 INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir --define-variable="datadir=${datadir}" gobject-introspection-1.0`
30 AC_SUBST(INTROSPECTION_TYPELIBDIR)
31 AC_SUBST(INTROSPECTION_GIRDIR)
32 fi
not subst HAVE_INTROSPECTION
Untested fix:
AC_SUBST(INTROSPECTION_TYPELIBDIR)
+ AC_SUBST([HAVE_INTROSPECTION])
AC_SUBST(INTROSPECTION_GIRDIR)
fi
*** This bug has been marked as a duplicate of bug 468100 *** |