diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-10-15 09:32:26 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-10-15 09:32:26 +0000 |
commit | bb7e94345052ef63a4c6e11155c6f2280e05777b (patch) | |
tree | e2ac3edc6517219e1952207862dfe0f0cb96c124 /app-shells/tcsh | |
parent | Fixed license according to --version output from all versions in the tree (diff) | |
download | gentoo-2-bb7e94345052ef63a4c6e11155c6f2280e05777b.tar.gz gentoo-2-bb7e94345052ef63a4c6e11155c6f2280e05777b.tar.bz2 gentoo-2-bb7e94345052ef63a4c6e11155c6f2280e05777b.zip |
Revbump for system malloc usage on Darwin to allow larger in memory lists
(Portage version: 2.2.7-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'app-shells/tcsh')
-rw-r--r-- | app-shells/tcsh/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/tcsh/tcsh-6.18.01-r2.ebuild (renamed from app-shells/tcsh/tcsh-6.18.01-r1.ebuild) | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/app-shells/tcsh/ChangeLog b/app-shells/tcsh/ChangeLog index 08768151837b..bfc33b0869d0 100644 --- a/app-shells/tcsh/ChangeLog +++ b/app-shells/tcsh/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-shells/tcsh # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.125 2013/05/20 17:44:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.126 2013/10/15 09:32:26 grobian Exp $ + +*tcsh-6.18.01-r2 (15 Oct 2013) + + 15 Oct 2013; Fabian Groffen <grobian@gentoo.org> +tcsh-6.18.01-r2.ebuild, + -tcsh-6.18.01-r1.ebuild: + Revbump for system malloc usage on Darwin to allow larger in memory lists 20 May 2013; Agostino Sarubbo <ago@gentoo.org> tcsh-6.18.01.ebuild: Stable for s390, wrt bug #466834 diff --git a/app-shells/tcsh/tcsh-6.18.01-r1.ebuild b/app-shells/tcsh/tcsh-6.18.01-r2.ebuild index dc06022d9a5b..9a2e9f47bcf8 100644 --- a/app-shells/tcsh/tcsh-6.18.01-r1.ebuild +++ b/app-shells/tcsh/tcsh-6.18.01-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01-r1.ebuild,v 1.2 2013/05/04 11:48:32 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.18.01-r2.ebuild,v 1.1 2013/10/15 09:32:26 grobian Exp $ EAPI="3" @@ -44,6 +44,9 @@ src_prepare() { sed -i -e 's/cat \$\^ \$> | \$(GENCAT) \$@/rm -f $@; $(GENCAT) $@ $> $^/' \ nls/Makefile.in || die + # use sysmalloc (for larger alloc sets) on Darwin also + sed -i -e 's/__MACHTEN__/__MACH__/' config_f.h || die + # unify ECHO behaviour echo "#undef ECHO_STYLE" >> config_f.h echo "#define ECHO_STYLE BOTH_ECHO" >> config_f.h |