rpm: fix compilation on centos (uses cmake3).

Change-Id: Ia0319658a0e8c9d8e13595d6773dcd6438228bda
Reviewed-on: https://code.wireshark.org/review/28112
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2018-06-07 17:40:51 +02:00 committed by Anders Broman
parent 43a88c230f
commit b296168874
1 changed files with 9 additions and 1 deletions

View File

@ -52,7 +52,11 @@ Obsoletes: wireshark-devel
BuildRoot: /tmp/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: cmake >= 3.5 or cmake3 >= 3.5
%if 0%{?rhel}
BuildRequires: cmake3 >= 3.5
%else
BuildRequires: cmake >= 3.5
%endif
BuildRequires: gcc
BuildRequires: python
BuildRequires: perl
@ -214,7 +218,11 @@ Requires: libmaxminddb
# the prefix and everything else too. If you need to change the prefix
# set _prefix (note the underscore) either in this file or on rpmbuild's
# command-line.
%if 0%{?rhel}
cmake3 \
%else
%cmake \
%endif
%if %{with qt5}
-DBUILD_wireshark=ON \
%else