mirror of
https://github.com/netfun2000/lcd4linux.git
synced 2026-02-27 09:44:34 +08:00
the DBus plugin is now disabled when dbus is not installed instead of stopping the build
Fix a few warnings in drv_PICGraphic.c git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1064 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
This commit is contained in:
@@ -249,8 +249,8 @@ fi
|
||||
|
||||
#DBus
|
||||
if test "$PLUGIN_DBUS" = "yes"; then
|
||||
PKG_CHECK_MODULES(DBUS, dbus-1)
|
||||
if test "x$DBUS_LIBS" != "x"; then
|
||||
PKG_CHECK_MODULES(DBUS, dbus-1, dbus-1 >= 1.0, HAVE_DBUS="yes", HAVE_DBUS="no")
|
||||
if test "x$HAVE_DBUS" != "xyes"; then
|
||||
PLUGINS="$PLUGINS plugin_dbus.o"
|
||||
PLUGINLIBS="$PLUGINLIBS $DBUS_LIBS"
|
||||
CPPFLAGS="$CPPFLAGS $DBUS_CFLAGS"
|
||||
|
||||
Reference in New Issue
Block a user