[sr-dev] [kamailio/kamailio] Add some missing build requirements (#2368)

sergey-safarov notifications at github.com
Tue Jun 23 22:13:39 CEST 2020


Hi Daniel
Think this change
```
%if 0%{?rhel} || 0%{?centos_ver}
%if 0%{?rhel} > 6 || 0%{?centos_ver} > 6
BuildRequires:  pkgconfig
%endif
%else
BuildRequires:  pkgconfig
%endif
```
Is equal to
```
%if 0%{?rhel}
%if 0%{?rhel} > 6
BuildRequires:  pkgconfig
%endif
%else
BuildRequires:  pkgconfig
%endif
```
And equal to
```
%if 0%{?rhel} > 6
BuildRequires:  pkgconfig
%else
BuildRequires:  pkgconfig
%endif
```
As `pkgconfig` is present in all RPM supported dists think we can use
```
BuildRequires:  pkgconfig
```

What you think?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/2368#issuecomment-648392981
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.kamailio.org/pipermail/sr-dev/attachments/20200623/93b4819f/attachment.html>


More information about the sr-dev mailing list