Commit c27afbca authored by Luca Boccassi's avatar Luca Boccassi

Problem: dev packages do not depend on static deps

Solution: add them so that pkg-config Requires.private is
satisfied
parent 28d5ce3d
......@@ -32,7 +32,12 @@ Description: lightweight messaging kernel (shared library)
Package: libzmq3-dev
Architecture: any
Section: libdevel
Depends: libzmq5 (= ${binary:Version}), ${misc:Depends}
Depends: libzmq5 (= ${binary:Version}), ${misc:Depends},
libkrb5-dev,
libnorm-dev,
libpgm-dev,
libsodium-dev,
libunwind-dev | libunwind8-dev | libunwind7-dev,
Conflicts: libzmq-dev, libzmq5-dev
Replaces: libzmq5-dev
Provides: libzmq5-dev
......
......@@ -110,6 +110,19 @@ This package contains the ZeroMQ shared library.
Summary: Development files and static library for the ZeroMQ library
Group: Development/Libraries
Requires: %{lib_name} = %{version}-%{release}, pkgconfig
Requires: libsodium-devel
%bcond_with pgm
%if %{with pgm}
Requires: openpgm-devel
%endif
%bcond_with libgssapi_krb5
%if %{with libgssapi_krb5}
Requires: krb5-devel
%endif
%bcond_with libsodium
%if %{with libsodium}
Requires: libsodium-devel
%endif
%description devel
The 0MQ lightweight messaging kernel is a library which extends the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment