diff options
author | 2007-05-23 01:34:43 +0000 | |
---|---|---|
committer | 2007-05-23 01:34:43 +0000 | |
commit | d9a3ca49e8825a17f5f8b63a9802a7548f3011c3 (patch) | |
tree | 9466451f8c4c8b461e501c650ec7f06f2995578e /app-crypt | |
parent | Version bump. (diff) | |
download | gentoo-2-d9a3ca49e8825a17f5f8b63a9802a7548f3011c3.tar.gz gentoo-2-d9a3ca49e8825a17f5f8b63a9802a7548f3011c3.tar.bz2 gentoo-2-d9a3ca49e8825a17f5f8b63a9802a7548f3011c3.zip |
heimdal LDAP bits use deprecated functions so we need to define LDAP_DEPRECATED during compile
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/heimdal/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/heimdal/heimdal-0.7.2-r3.ebuild | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/app-crypt/heimdal/ChangeLog b/app-crypt/heimdal/ChangeLog index 0dbb7c155aa5..5842012b8360 100644 --- a/app-crypt/heimdal/ChangeLog +++ b/app-crypt/heimdal/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/heimdal # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.116 2007/04/14 00:43:47 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/ChangeLog,v 1.117 2007/05/23 01:34:43 cardoe Exp $ + + 23 May 2007; Doug Goldstein <cardoe@gentoo.org> heimdal-0.7.2-r3.ebuild: + heimdal LDAP bits use deprecated functions so we need to define + LDAP_DEPRECATED during compile 14 Apr 2007; <dan@gentoo.org> heimdal-0.7.2-r3.ebuild: remove krb4 as per bug #173354 diff --git a/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild b/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild index 409aa743a6d4..fe7c3e70385f 100644 --- a/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild +++ b/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild,v 1.13 2007/04/14 00:43:47 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-0.7.2-r3.ebuild,v 1.14 2007/05/23 01:34:43 cardoe Exp $ WANT_AUTOMAKE=1.8 WANT_AUTOCONF=latest -inherit autotools libtool eutils virtualx toolchain-funcs +inherit autotools libtool eutils virtualx toolchain-funcs flag-o-matic PATCHVER=0.2 PATCH_P=${P}-gentoo-patches-${PATCHVER} @@ -45,7 +45,10 @@ src_unpack() { src_compile() { local myconf="" - use ldap && myconf="${myconf} --with-openldap=/usr" + if use ldap; then + myconf="${myconf} --with-openldap=/usr" + append-flags -DLDAP_DEPRECATED=1 + fi econf \ $(use_with ipv6) \ |