diff --git a/packaging/rules/debian/rules b/packaging/rules/debian/rules index 2d2e7c9fc4bedba0215d4ddb08246fcfefeb7996..a1fd53bba2470ebbee2398aa7b15380e0ded627d 100755 --- a/packaging/rules/debian/rules +++ b/packaging/rules/debian/rules @@ -80,7 +80,6 @@ override_dh_auto_build: ./autogen.sh && \ ./configure \ --prefix=/usr \ - --without-dbus \ --host=${HOST_ARCH} # Daemon build diff --git a/packaging/rules/rpm/jami-daemon.spec b/packaging/rules/rpm/jami-daemon.spec index ec197bf8a85913b739fa6e3a0a0422cb90c785e2..ec16bac0ab241342f569e7c3fed05db5054cb809 100644 --- a/packaging/rules/rpm/jami-daemon.spec +++ b/packaging/rules/rpm/jami-daemon.spec @@ -85,7 +85,6 @@ cd %{_builddir}/ring-project/daemon && \ ./autogen.sh && \ ./configure \ --prefix=%{_prefix} \ - --without-dbus \ --libdir=%{_libdir} # Build the daemon. diff --git a/scripts/install.sh b/scripts/install.sh index ada648a6f747f86595488588cc0faaccd97d88db..3e9e999c84079a6fb5d56acec45bc7aa685f3810 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -99,9 +99,7 @@ mkdir -p contrib/native make -j"${proc}" ) -if [[ "${enable_libwrap}" == "true" ]]; then - CONFIGURE_FLAGS+=" --without-dbus" -else +if [[ "${enable_libwrap}" != "true" ]]; then # Disable shared if requested if [[ "$OSTYPE" != "darwin"* ]]; then CONFIGURE_FLAGS+=" --disable-shared"