Since the oe-core commit "libtirpc: create the symbol link for rpc header files" create the symbol link of header files, so during checking it will find the related header files, then it will use the old PRC_LDADD value "-lrpc" other than "-ltirpc". So we add the option "--with-tirpc" to the configure command and add the dependence.
Signed-off-by: Zhixiong Chi <[email protected]> --- meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.98.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.98.bb b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.98.bb index 310c41067..2be8d7bb7 100644 --- a/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.98.bb +++ b/meta-oe/recipes-graphics/gtkwave/gtkwave_3.3.98.bb @@ -11,13 +11,13 @@ SRC_URI[md5sum] = "eac3073ef381e0c09da33590296ca37f" SRC_URI[sha256sum] = "efa6bbbeb3bd54104425a69a2aa0d079bb5c3ecc1c420ba57dcaa1c97c5a22f6" inherit pkgconfig autotools gettext texinfo -DEPENDS = "tcl tk gperf-native bzip2 xz pango zlib gtk+ gdk-pixbuf glib-2.0" +DEPENDS = "tcl tk gperf-native bzip2 xz pango zlib gtk+ gdk-pixbuf glib-2.0 libtirpc" RDEPENDS_${PN} = "tk-lib" # depends on gtk+ which has this restriction inherit distro_features_check ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}" -EXTRA_OECONF = "--with-tcl=${STAGING_BINDIR_CROSS} --with-tk=${STAGING_BINDIR_CROSS}" +EXTRA_OECONF = "--with-tcl=${STAGING_BINDIR_CROSS} --with-tk=${STAGING_BINDIR_CROSS} --with-tirpc" FILES_${PN} = "${bindir} ${datadir}" -- 2.23.0 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
