New commits:
commit 46506487785030410f2f4d560bced028aaedc911
Author: Sukneet Basuta <sukneet AT sourcemage.org>
Commit: Sukneet Basuta <sukneet AT sourcemage.org>
avahi: Do not run autoreconf as it seems to break install
Changed qt.patch to patch configure rather than configure.ac so
autoreconf does not need to be run.
BUILD: Setting variables in DEPENDS isn't persistent, so change check for
no D-BUS.
Explicitly disable pygtk annd gdbm if not enabled
DEPENDS: if glib is disabled, disable gobject as well.
Remove setting AVAHI_NODBUS as it is not persistent.
Set disable gdbm flag in BUILD.
diff --git a/utils/avahi/BUILD b/utils/avahi/BUILD
index ddb918a..efaf029 100755
--- a/utils/avahi/BUILD
+++ b/utils/avahi/BUILD
@@ -9,7 +9,7 @@ if [[ "$AVAHI_DAEMON" == 'n' ]]; then
OPTS="${OPTS} --with-xml=none"
fi &&
-if [[ "$AVAHI_NODBUS" == 'y' ]]; then
+if ! is_depends_enabled $SPELL dbus; then
OPTS="${OPTS} --disable-dbus"
fi &&
@@ -21,7 +21,14 @@ if [[ "$AVAHI_COMPAT_HOWL" == 'y' ]]; then
OPTS="$OPTS --enable-compat-howl"
fi &&