Accepting request 1243433 from network:utilities

OBS-URL: https://build.opensuse.org/request/show/1243433
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wireshark?expand=0&rev=231
This commit is contained in:
Ana Guerrero 2025-02-06 21:02:03 +00:00 committed by Git OBS Bridge
commit ce7efd3741
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Feb 4 10:46:24 UTC 2025 - ecsos <ecsos@opensuse.org>
- Fix build error for Leap.
-------------------------------------------------------------------
Tue Jan 28 08:14:39 UTC 2025 - Robert Frohl <rfrohl@suse.com>

View File

@ -42,6 +42,13 @@ Source3: https://www.wireshark.org/download/gerald_at_wireshark_dot_org.g
# PATCH-FEATURE-SLE wireshark-0010-dumpcap-permission-denied.patch bsc#1180102
Patch10: wireshark-0010-dumpcap-permission-denied.patch
BuildRequires: %{rb_default_ruby_suffix}-rubygem-asciidoctor
%if 0%{?suse_version} < 1600
BuildRequires: gcc13
BuildRequires: gcc13-c++
%else
BuildRequires: gcc
BuildRequires: gcc-c++
%endif
BuildRequires: bison
BuildRequires: flex
BuildRequires: glib2-devel >= 2.32
@ -177,6 +184,10 @@ echo "`grep %{name}-%{version}.tar.xz %{SOURCE2} | grep SHA256 | head -n1 | cut
%autosetup -p1
%build
%if 0%{?suse_version} < 1600
export CC=gcc-13
export CXX=g++-13
%endif
%if %{with qt5}
%cmake -DCMAKE_INSTALL_LIBDIR='%{_lib}/' -DUSE_qt6=OFF
%else