Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dbus: initial support
  • Loading branch information
perexg committed Aug 11, 2014
1 parent d77ec6c commit 9c7b604
Show file tree
Hide file tree
Showing 5 changed files with 445 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -303,6 +303,9 @@ endif
# libaesdec
SRCS-${CONFIG_SSL} += src/descrambler/libaesdec/libaesdec.c

# DBUS
SRCS-${CONFIG_DBUS_1} += src/dbus.c

# File bundles
SRCS-${CONFIG_BUNDLE} += bundle.c
BUNDLES-yes += docs/html docs/docresources src/webui/static
Expand Down
13 changes: 13 additions & 0 deletions configure
Expand Up @@ -38,6 +38,7 @@ OPTIONS=(
"bundle:no"
"dvbcsa:no"
"kqueue:no"
"dbus_1:auto"
)

#
Expand Down Expand Up @@ -344,6 +345,18 @@ if enabled v4l; then
enable mpegps
fi

#
# DBus
#
if enabled_or_auto dbus_1; then
if check_pkg dbus-1; then
enable dbus_1
elif enabled dbus-1; then
die "DBus-1 development support not found (use --disable-dbus-1)"
fi
fi


# ###########################################################################
# Write config
# ###########################################################################
Expand Down

0 comments on commit 9c7b604

Please sign in to comment.