e53a6799ec
Switch to meson-package as configure is not shipped anymore
This bump will fix the following build failure raised since bump of
pango to version 1.50.3 in commit
6b2b1d26cc
:
attrlist.cc: In constructor 'Pango::AttrList::AttrList(const Glib::ustring&, gunichar)':
attrlist.cc:38:20: error: 'pango_parse_markup' was not declared in this scope
38 | gboolean bTest = pango_parse_markup(markup_text.c_str(), -1 /* means null-terminated */, accel_marker,
| ^~~~~~~~~~~~~~~~~~
https://gitlab.gnome.org/GNOME/pangomm/-/blob/2.48.2/NEWS
Fixes:
- http://autobuild.buildroot.org/results/efe5015ddb4bede6669ad5b1e4f027a2e076d16b
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
612 B
Makefile
17 lines
612 B
Makefile
################################################################################
|
|
#
|
|
# pangomm
|
|
#
|
|
################################################################################
|
|
|
|
PANGOMM_VERSION_MAJOR = 2.48
|
|
PANGOMM_VERSION = $(PANGOMM_VERSION_MAJOR).2
|
|
PANGOMM_SOURCE = pangomm-$(PANGOMM_VERSION).tar.xz
|
|
PANGOMM_SITE = http://ftp.gnome.org/pub/gnome/sources/pangomm/$(PANGOMM_VERSION_MAJOR)
|
|
PANGOMM_LICENSE = LGPL-2.1+ (library), GPL-2.0+ (tools)
|
|
PANGOMM_LICENSE_FILES = COPYING COPYING.tools
|
|
PANGOMM_INSTALL_STAGING = YES
|
|
PANGOMM_DEPENDENCIES = glibmm cairomm libsigc pango host-pkgconf
|
|
|
|
$(eval $(meson-package))
|