diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-01-02 05:20:53 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-01-02 05:20:53 +0000 |
commit | 97cbc9e19c579feee34b2c9b7630265ca30bba9f (patch) | |
tree | e6f4e4a140ee8f7dc769c4d9e5fc6eefab102f9d /sys-libs | |
parent | new license (diff) | |
download | historical-97cbc9e19c579feee34b2c9b7630265ca30bba9f.tar.gz historical-97cbc9e19c579feee34b2c9b7630265ca30bba9f.tar.bz2 historical-97cbc9e19c579feee34b2c9b7630265ca30bba9f.zip |
added --without-ada to configure options until said support is added
into gcc.
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/ncurses/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/ncurses/ncurses-5.3-r1.ebuild | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sys-libs/ncurses/ChangeLog b/sys-libs/ncurses/ChangeLog index 6fafe8d77c8a..f8b7036d580d 100644 --- a/sys-libs/ncurses/ChangeLog +++ b/sys-libs/ncurses/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/ncurses # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ChangeLog,v 1.19 2002/12/09 22:26:26 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ChangeLog,v 1.20 2003/01/02 05:20:53 raker Exp $ + + 01 Jan 2003; Nick Hadaway <raker@gentoo.org> ncurses-5.3-r1.ebuild : + Added --without-ada to build options as a newer version of ncurses and + a modified gcc are required for this support. See bug #12288 and + #11204. 10 Dec Martin Schlemmer <azarah@gentoo.org> ncurses-5.3-r1.ebuild : Mark as stable for x86. diff --git a/sys-libs/ncurses/ncurses-5.3-r1.ebuild b/sys-libs/ncurses/ncurses-5.3-r1.ebuild index 03ed25b3190c..7d363148299e 100644 --- a/sys-libs/ncurses/ncurses-5.3-r1.ebuild +++ b/sys-libs/ncurses/ncurses-5.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.3-r1.ebuild,v 1.6 2002/12/15 12:35:24 bjb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/ncurses/ncurses-5.3-r1.ebuild,v 1.7 2003/01/02 05:20:53 raker Exp $ IUSE="" @@ -28,13 +28,14 @@ src_compile() { # build in bootstrap.sh. # <azarah@gentoo.org> (23 Oct 2002) ( use build || use bootstrap ) \ - && myconf="${myconf} --without-cxx --without-cxx-binding" + && myconf="${myconf} --without-cxx --without-cxx-binding --without-ada" econf \ --libdir=/lib \ --disable-termcap \ --with-shared \ --with-rcs-ids \ + --without-ada \ ${myconf} || die "configure failed" # do not work with -j2 on P4 - <azarah@gentoo.org> (23 Oct 2002) |