Hi @space88man
Could you also replace `%{?centos_ver}` macro to `%{?rhel}`.
*Example*
```
%if 0%{?centos_ver} == 7 && %{with openssl11}
```
To
```
%if 0%{?rhel} == 7 && %{with openssl11}
```
This will allow using the same approach for RHEL dist too.
--
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/2779#issuecomment-863494033