diff options
author | François Andriot <albator78@libertysurf.fr> | 2022-02-03 16:29:45 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2022-02-03 16:51:32 +0100 |
commit | 5b58ce0a4a818f61e077efaba45358c327c847bd (patch) | |
tree | 6e5f7988d4f938926f6c6ec61669f6a21c85118b /redhat/applications/krecipes | |
parent | 005cac842eb86cd5b6388b20e2be55f66825b738 (diff) | |
download | tde-packaging-5b58ce0a4a818f61e077efaba45358c327c847bd.tar.gz tde-packaging-5b58ce0a4a818f61e077efaba45358c327c847bd.zip |
RPM: fix dependencies to postgresql-devel in koffice and krecipes
Diffstat (limited to 'redhat/applications/krecipes')
-rw-r--r-- | redhat/applications/krecipes/krecipes.spec | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/redhat/applications/krecipes/krecipes.spec b/redhat/applications/krecipes/krecipes.spec index 69c3d81f8..c2b24ef16 100644 --- a/redhat/applications/krecipes/krecipes.spec +++ b/redhat/applications/krecipes/krecipes.spec @@ -79,7 +79,17 @@ BuildRequires: brp-check-trinity BuildRequires: mysql-devel # POSTGRESQL support -BuildRequires: postgresql-devel +%if 0%{?suse_version} >= 1550 || 0%{?sle_version} >= 150200 +BuildRequires: postgresql10 +BuildRequires: postgresql10-devel +%else +BuildRequires: postgresql +%if 0%{?fedora} >= 30 || 0%{?rhel} >= 8 +BuildRequires: postgresql-server-devel +%else +BuildRequires: postgresql-devel +%endif +%endif # SQLITE support BuildRequires: sqlite-devel |