diff --git a/docker/Dockerfile_debian_10 b/docker/Dockerfile_debian_10 index c07e18dc86328bc37ab26f832cda5e4f7dd54f43..469a0c5c8f1268a0cb3885eadbe5803cdf20a13b 100644 --- a/docker/Dockerfile_debian_10 +++ b/docker/Dockerfile_debian_10 @@ -12,6 +12,7 @@ RUN apt-get install -y -o Acquire::Retries=10 \ g++-8 \ clang \ clang-tools \ + libarchive-dev \ wget ADD scripts/prebuild-package-debian.sh /opt/prebuild-package-debian.sh diff --git a/packaging/rules/debian/rules b/packaging/rules/debian/rules index 766589a663a6d0d4338914895848adb6b48020d3..0d5893c1889445730daf6957aefd1311fda96920 100755 --- a/packaging/rules/debian/rules +++ b/packaging/rules/debian/rules @@ -31,6 +31,10 @@ JAMI_DAEMON_PKG_NAME="jami-daemon" # Bundled packages from contrib BUNDLED_PKGS="" +ifeq (debian_10,$(findstring debian_10, $(DISTRIBUTION))) +# Daemon's bundled libarchive does not build on Debian 10 +BUNDLED_PKGS="--disable-libarchive" +endif ifeq (raspbian_10_armhf,$(findstring raspbian_10_armhf, $(DISTRIBUTION))) # Raspbian's yaml-cpp lib does not work properly BUNDLED_PKGS="--enable-ffmpeg --enable-yaml-cpp"