pinkbyte 14/07/07 12:44:12 Modified: src_configure-v50180002.eblit Log: Revision bump: apply workaround for bug #157774 - do not build gdbm stuff when USE='-gdbm'. Drop old revisions (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Revision Changes Path 1.2 dev-lang/perl/files/eblits/src_configure-v50180002.eblit file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit?r1=1.1&r2=1.2 Index: src_configure-v50180002.eblit =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src_configure-v50180002.eblit 11 Mar 2014 17:01:14 -0000 1.1 +++ src_configure-v50180002.eblit 7 Jul 2014 12:44:12 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v 1.1 2014/03/11 17:01:14 civil Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/perl/files/eblits/src_configure-v50180002.eblit,v 1.2 2014/07/07 12:44:12 pinkbyte Exp $ myconf() { # the myconf array is declared in src_configure @@ -93,7 +93,14 @@ fi # don't try building ODBM, bug #354453 - myconf -Dnoextensions=ODBM_File + disabled_extensions="ODBM_File" + + if ! use gdbm ; then + # workaround for bug #157774: don't try building GDBM related stuff with USE="-gdbm" + disabled_extensions="${disabled_extensions} GDBM_File NDBM_File" + fi + + myconf -Dnoextensions="${disabled_extensions}" sh Configure \ -des \
