View | Details | Raw Unified | Return to bug 35516
Collapse All | Expand All

(-)a/.gear/wireshark.spec (-2 / +15 lines)
Lines 1-12 Link Here
1
# vim: set ft=spec: -*- rpm-spec -*-
1
# vim: set ft=spec: -*- rpm-spec -*-
2
2
3
%def_with nghttp2
4
3
# Wireshark has huge number of plugins that are not linked against most of the external libraries
5
# Wireshark has huge number of plugins that are not linked against most of the external libraries
4
# as they are loaded into wireshark/tshark processes which guarantee that linkage
6
# as they are loaded into wireshark/tshark processes which guarantee that linkage
5
%set_verify_elf_method unresolved=relaxed
7
%set_verify_elf_method unresolved=relaxed
6
8
7
Name: wireshark
9
Name: wireshark
8
Version: 2.6.4
10
Version: 2.6.4
9
Release: alt1
11
Release: alt1.1
10
12
11
Summary: The BugTraq Award Winning Network Traffic Analyzer
13
Summary: The BugTraq Award Winning Network Traffic Analyzer
12
Group: Monitoring
14
Group: Monitoring
Lines 25-31 BuildRequires: libkrb5-devel libpcap-devel libpcre-devel libportaudio2-devel lib Link Here
25
BuildRequires: liblua5-devel < 5.3
27
BuildRequires: liblua5-devel < 5.3
26
BuildRequires: libssh-devel
28
BuildRequires: libssh-devel
27
BuildRequires: libnl-devel
29
BuildRequires: libnl-devel
30
%if_with nghttp2
28
BuildRequires: libnghttp2-devel
31
BuildRequires: libnghttp2-devel
32
%endif
29
BuildRequires: liblz4-devel
33
BuildRequires: liblz4-devel
30
BuildRequires: libxml2-devel
34
BuildRequires: libxml2-devel
31
BuildRequires: libspandsp6-devel
35
BuildRequires: libspandsp6-devel
Lines 135-140 export ac_cv_path_HTML_VIEWER=url_handler.sh Link Here
135
# Workaround for Lua 5.1 detection
139
# Workaround for Lua 5.1 detection
136
export ac_cv_lib_lualib_luaL_openlib=no
140
export ac_cv_lib_lualib_luaL_openlib=no
137
141
142
# Some plugins use C++ and need lcxa. It can't be loaded
143
# dynamically, so all binaries should be linked with it.
144
%ifarch %e2k
145
cc --version | grep -q '^lcc:1.21' && export LIBS+=" -lcxa"
146
%endif
147
138
chmod ugo+rx configure
148
chmod ugo+rx configure
139
%configure \
149
%configure \
140
   --sysconfdir=%_sysconfdir/%name \
150
   --sysconfdir=%_sysconfdir/%name \
Lines 267-272 _EOF_ Link Here
267
%_libdir/libwiretap.so
277
%_libdir/libwiretap.so
268
278
269
%changelog
279
%changelog
280
* Tue Oct 16 2018 Michael Shigorin <mike@altlinux.org> 2.6.4-alt1.1
281
- introduce nghttp2 knob (on by default)
282
- E2K: link against -lcxa explicitly with lcc below 1.23
283
270
* Sat Oct 13 2018 Anton Farygin <rider@altlinux.ru> 2.6.4-alt1
284
* Sat Oct 13 2018 Anton Farygin <rider@altlinux.ru> 2.6.4-alt1
271
- 2.6.4 (fixes: CVE-2018-18227, CVE-2018-18225, CVE-2018-18225,  CVE-2018-12086)
285
- 2.6.4 (fixes: CVE-2018-18227, CVE-2018-18225, CVE-2018-18225,  CVE-2018-12086)
272
- disabled build gtk+ UI
286
- disabled build gtk+ UI
273
- 

Return to bug 35516