mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
For change log, see [1].
A notable change is that this release fixes GCC 15 build issues
and some deprecation warnings.
Updated license files and hashes due to upstream commit [2].
There is not an actual license change.
[1] https://gitlab.freedesktop.org/dbus/dbus-glib/-/blob/dbus-glib-0.114/NEWS
[2] ad08ba0c6b
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Florian Larysch <fl@n621.de>
Tested-by: Florian Larysch <fl@n621.de>
[Julien: add extra info in the commit log]
Signed-off-by: Julien Olivain <ju.o@free.fr>
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# dbus-glib
|
|
#
|
|
################################################################################
|
|
|
|
DBUS_GLIB_VERSION = 0.114
|
|
DBUS_GLIB_SITE = http://dbus.freedesktop.org/releases/dbus-glib
|
|
DBUS_GLIB_INSTALL_STAGING = YES
|
|
DBUS_GLIB_LICENSE = AFL-2.1 or GPL-2.0+
|
|
DBUS_GLIB_LICENSE_FILES = \
|
|
COPYING \
|
|
LICENSES/AFL-2.1.txt \
|
|
LICENSES/GPL-2.0-or-later.txt
|
|
DBUS_GLIB_CPE_ID_VENDOR = freedesktop
|
|
|
|
DBUS_GLIB_CONF_ENV = \
|
|
ac_cv_have_abstract_sockets=yes \
|
|
ac_cv_func_posix_getpwnam_r=yes \
|
|
have_abstract_sockets=yes
|
|
|
|
DBUS_GLIB_CONF_OPTS = \
|
|
--disable-tests \
|
|
--disable-xml-docs \
|
|
--with-introspect-xml=$(DBUS_HOST_INTROSPECT) \
|
|
--with-dbus-binding-tool=$(DBUS_GLIB_HOST_BINARY) \
|
|
--disable-bash-completion \
|
|
--disable-doxygen-docs \
|
|
--enable-asserts=yes
|
|
|
|
DBUS_GLIB_DEPENDENCIES = host-pkgconf dbus host-dbus host-dbus-glib libglib2 expat
|
|
|
|
HOST_DBUS_GLIB_DEPENDENCIES = host-dbus host-expat host-libglib2
|
|
|
|
HOST_DBUS_GLIB_CONF_OPTS = \
|
|
--disable-tests \
|
|
--disable-xml-docs \
|
|
--disable-bash-completion \
|
|
--disable-doxygen-docs \
|
|
--enable-asserts=yes
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
# dbus-glib for the host
|
|
DBUS_GLIB_HOST_BINARY = $(HOST_DIR)/bin/dbus-binding-tool
|