diff options
author | Peter Volkov <pva@gentoo.org> | 2008-03-17 20:40:34 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-03-17 20:40:34 +0000 |
commit | 0e7232acd2b4b2ec72768f0e9946f571f9e04905 (patch) | |
tree | 24718685f6795d4c660edf2c20166969094592ec /net-analyzer/wireshark | |
parent | Synced from my dev overlay, thanks to Adam again :) (diff) | |
download | gentoo-2-0e7232acd2b4b2ec72768f0e9946f571f9e04905.tar.gz gentoo-2-0e7232acd2b4b2ec72768f0e9946f571f9e04905.tar.bz2 gentoo-2-0e7232acd2b4b2ec72768f0e9946f571f9e04905.zip |
Fixed build problem with heimdal, bug #213705, thank Doug Goldstein for report.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-analyzer/wireshark')
-rw-r--r-- | net-analyzer/wireshark/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/wireshark/wireshark-0.99.8.ebuild | 10 |
2 files changed, 14 insertions, 2 deletions
diff --git a/net-analyzer/wireshark/ChangeLog b/net-analyzer/wireshark/ChangeLog index 1859f41b89b6..a79494ff779e 100644 --- a/net-analyzer/wireshark/ChangeLog +++ b/net-analyzer/wireshark/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/wireshark # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.83 2008/03/17 14:06:40 cla Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.84 2008/03/17 20:40:34 pva Exp $ + + 17 Mar 2008; Peter Volkov <pva@gentoo.org> wireshark-0.99.8.ebuild: + Fixed build problem with heimdal, bug #213705, thank Doug Goldstein for + report. 17 Mar 2008; Dawid Węgliński <cla@gentoo.org> wireshark-0.99.8.ebuild: Stable on x86 (bug #212149) diff --git a/net-analyzer/wireshark/wireshark-0.99.8.ebuild b/net-analyzer/wireshark/wireshark-0.99.8.ebuild index 23c815dc20e9..a4ed2a7f66a4 100644 --- a/net-analyzer/wireshark/wireshark-0.99.8.ebuild +++ b/net-analyzer/wireshark/wireshark-0.99.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-0.99.8.ebuild,v 1.4 2008/03/17 14:06:40 cla Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-0.99.8.ebuild,v 1.5 2008/03/17 20:40:34 pva Exp $ # ChangeLog: # 1. Droped check for perl minimal USE flag. We do not have perl with minimal @@ -100,6 +100,14 @@ src_compile() { myconf="${myconf} --disable-wireshark" fi + # Workaround bug #213705. If krb5-config --libs has -lcrypto then pass + # --with-ssl to ./configure. (Mimics code from acinclude.m4). + if use kerberos; then + case `krb5-config --libs` in + *-lcrypto*) myconf="${myconf} --with-ssl" ;; + esac + fi + # dumpcap requires libcap, setuid-install requires dumpcap econf $(use_enable gtk gtk2) \ $(use_enable profile profile-build) \ |