Skip to content
Snippets Groups Projects
Commit 39264e59 authored by Vladimir Stoiakin's avatar Vladimir Stoiakin Committed by Sébastien Blin
Browse files

build: fix packaging with sdbus-c++

Change-Id: Ie7ab5f35d0f215cd32932f277dd7cc178e0dd2cc
parent 9ef96845
No related branches found
No related tags found
No related merge requests found
Showing with 7 additions and 17 deletions
......@@ -109,7 +109,7 @@ If you use a Qt version that is not system-wide installed, you need to
specify its path using the `--qt` flag, e.g.
`./build.py --install --qt=/home/<username>/Qt/6.2.1/gcc_64`.
Now you will have the daemon in `daemon/bin/jamid` and the client in
Now you will have the daemon in `daemon/bin/dbus/jamid` and the client in
`build/jami`. You can now run Jami using:
```bash
......
daemon @ 3dd5f4eb
Subproject commit 2eea2ce34ddb3eb99074a9f6c8fe7c39e2771848
Subproject commit 3dd5f4ebfd138e423025fd9d90a879455eb39376
......@@ -22,7 +22,7 @@ RUN apt-get install -y -o Acquire::Retries=10 \
cmake \
libtool \
libdbus-1-dev \
libdbus-c++-dev \
libsystemd-dev \
libargon2-0-dev \
libcanberra-gtk3-dev \
libclutter-gtk-1.0-dev \
......@@ -66,4 +66,4 @@ RUN apt-get install -y -o Acquire::Retries=10 \
libssl-dev
RUN apt-get install -y pandoc \
googletest \
libgtest-dev
\ No newline at end of file
libgtest-dev
......@@ -9,7 +9,6 @@ RUN apt-get update && \
equivs \
python-is-python3 \
libdbus-1-dev \
libdbus-c++-dev \
wget
ADD extras/packaging/gnu-linux/scripts/prebuild-package-debian.sh /opt/prebuild-package-debian.sh
......
......@@ -26,8 +26,6 @@ RUN dnf install -y \
expat-devel \
pcre-devel \
yaml-cpp-devel \
dbus-c++-devel \
dbus-devel \
libXext-devel \
libXfixes-devel \
yasm \
......
......@@ -27,8 +27,6 @@ RUN dnf install -y \
expat-devel \
pcre-devel \
yaml-cpp-devel \
dbus-c++-devel \
dbus-devel \
libXext-devel \
libXfixes-devel \
yasm \
......
......@@ -27,8 +27,6 @@ RUN dnf install -y \
expat-devel \
pcre-devel \
yaml-cpp-devel \
dbus-c++-devel \
dbus-devel \
libXext-devel \
libXfixes-devel \
yasm \
......
......@@ -23,7 +23,6 @@ RUN zypper --non-interactive install -y \
libtool \
pcre-devel \
yaml-cpp-devel \
libdbus-c++-devel \
libXext-devel \
libXfixes-devel \
yasm \
......@@ -51,7 +50,6 @@ RUN zypper --non-interactive install -y \
clutter-gtk-devel \
libnma-devel \
libcryptopp-devel \
libdbus-c++-devel \
libexpat-devel \
gnome-icon-theme-symbolic \
libgsm-devel \
......
......@@ -16,7 +16,7 @@ Build-Depends: debhelper (>= 9),
libayatana-appindicator3-dev | libappindicator3-dev,
# daemon
libdbus-1-dev,
libdbus-c++-dev,
libsystemd-dev,
libupnp-dev,
libgnutls28-dev,
libpulse-dev,
......
......@@ -35,7 +35,7 @@ BuildRequires: opus-devel
BuildRequires: pulseaudio-libs-devel
%endif
%if %{defined suse_version}
BuildRequires: libdbus-c++-devel
BuildRequires: systemd-devel
BuildRequires: libexpat-devel
BuildRequires: libopus-devel
BuildRequires: libpulse-devel
......
......@@ -309,7 +309,6 @@ parts:
- libjsoncpp-dev
- libnm-dev # connectivityChanged()
- libdbus-1-dev # dbus
- libdbus-c++-dev
- libpulse-dev # pulse
- libudev-dev
- libopus-dev # Avoid to build opus from contrib
......
......@@ -52,7 +52,7 @@ for ARCH in "${ARCHS[@]}"; do
# force to build every contrib
for dir in "$DAEMON"/contrib/src/*/; do
PKG=$(basename -- "$dir")
if [ "$PKG" != "dbus-cpp" ] && [ "$PKG" != "natpmp" ] &&
if [ "$PKG" != "sdbus-cpp" ] && [ "$PKG" != "natpmp" ] &&
[ "$PKG" != "portaudio" ] && [ "$PKG" != "pthreads" ] &&
[ "$PKG" != "lttng-ust" ] && [ "$PKG" != "openssl" ] &&
[ "$PKG" != "media-sdk" ] && [ "$PKG" != "jack" ] &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment