diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | rpm.spec.in | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -275,6 +275,7 @@ - portability: carry libelf in src rpm, include signal.h. - fix: segfault with --checksig, plug memory leak (#72455). - rpm-4.1 release candidate. + - requirement on libelf >= 0.8.2 to work around incompatible soname (#72792). 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/rpm.spec.in b/rpm.spec.in index b53b8a19e..4b8d4f93b 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -26,6 +26,7 @@ Conflicts: patch < 2.5 Prereq: gawk fileutils textutils mktemp shadow-utils %endif Requires: popt = 1.8 +Requires: libelf >= 0.8.2 Obsoletes: rpm-perl < %{version} %if !%{with_internal_db} @@ -62,7 +63,7 @@ the package like its version, a description, etc. %package devel Summary: Development files for manipulating RPM packages. Group: Development/Libraries -Requires: rpm = %{rpm_version}, popt = 1.8 +Requires: rpm = %{rpm_version} %description devel This package contains the RPM C library and header files. These @@ -91,7 +92,6 @@ Summary: Python bindings for apps which will manipulate RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version} Requires: python >= %{with_python_version} -Requires: popt = 1.8 %description python The rpm-python package contains a module that permits applications @@ -111,7 +111,6 @@ Provides: perl(RPM::Database) = %{rpm_version} Provides: perl(RPM::Header) = %{rpm_version} Requires: rpm = %{rpm_version} Requires: perl >= 0:5.00503 -Requires: popt = 1.8 Obsoletes: perl-Perl-RPM %description perl @@ -527,3 +526,4 @@ fi - db: don't return EACCES on db->close w/o environment. - unify cachesize configuration, with (or without) a dbenv. - comments regarding unsupported (yet) db-4.1.17 functionality. +- requirement on libelf >= 0.8.2 to work around incompatible soname (#72792). |