diff options
author | Preston A. Elder <prez@gentoo.org> | 2002-05-26 10:14:02 +0000 |
---|---|---|
committer | Preston A. Elder <prez@gentoo.org> | 2002-05-26 10:14:02 +0000 |
commit | 88cea71ba2d31d238d266c8630d736ed0014a2b6 (patch) | |
tree | e0bb51c9601e6c015ea1f294558c823375977c5e /net-analyzer/ucd-snmp | |
parent | support for gcc3.1 (diff) | |
download | gentoo-2-88cea71ba2d31d238d266c8630d736ed0014a2b6.tar.gz gentoo-2-88cea71ba2d31d238d266c8630d736ed0014a2b6.tar.bz2 gentoo-2-88cea71ba2d31d238d266c8630d736ed0014a2b6.zip |
Fixed for gcc 3.1
Diffstat (limited to 'net-analyzer/ucd-snmp')
-rw-r--r-- | net-analyzer/ucd-snmp/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild | 3 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-analyzer/ucd-snmp/ChangeLog b/net-analyzer/ucd-snmp/ChangeLog index bf22cec0fd3f..f106b3d524ae 100644 --- a/net-analyzer/ucd-snmp/ChangeLog +++ b/net-analyzer/ucd-snmp/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for net-analyzer/ucd-snmp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.3 2002/05/04 03:16:38 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.4 2002/05/26 10:14:02 prez Exp $ *ucd-snmp-4.2.3-r1 (3 May 2002) + 26 May 2002: Preston A. Elder <prez@gentoo.org> : + + Made it work with gcc 3.1 by removing the --with-openssl=/usr stuff, + it caused configure to not find headers, plus openssl is autodetected. + 3 May 2002; Donny Davies <woodchip@gentoo.org> : Added LICENSE, SLOT. diff --git a/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild b/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild index e8727d053cb4..bf75ef97abd8 100644 --- a/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild +++ b/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild,v 1.1 2002/05/04 03:16:38 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.3-r1.ebuild,v 1.2 2002/05/26 10:14:02 prez Exp $ S=${WORKDIR}/${P} DESCRIPTION="Software for generating and retrieving SNMP data" @@ -16,7 +16,6 @@ SLOT="0" src_compile() { local myconf - use ssl && myconf="${myconf} --with-openssl=/usr" use ssl || myconf="${myconf} --enable-internal-md5 --with-openssl=no" use tcpd && myconf="${myconf} --with-libwrap" use ipv6 && myconf="${myconf} --with-ipv6" |