diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-12-04 17:03:29 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-12-04 17:03:29 +0000 |
commit | 8c8ea357e3bfb0297bd1120de84c19778ff4b014 (patch) | |
tree | 3ead148c28ba3b24aa46a311e1d9be50312e20a0 /games-util | |
parent | Whitespace. (diff) | |
download | gentoo-2-8c8ea357e3bfb0297bd1120de84c19778ff4b014.tar.gz gentoo-2-8c8ea357e3bfb0297bd1120de84c19778ff4b014.tar.bz2 gentoo-2-8c8ea357e3bfb0297bd1120de84c19778ff4b014.zip |
this strndup is local (bug #530952)
(Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/qstat/ChangeLog | 5 | ||||
-rw-r--r-- | games-util/qstat/qstat-2.11.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/games-util/qstat/ChangeLog b/games-util/qstat/ChangeLog index 960997ecaac0..9575e5158351 100644 --- a/games-util/qstat/ChangeLog +++ b/games-util/qstat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-util/qstat # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.29 2014/11/28 17:18:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/ChangeLog,v 1.30 2014/12/04 17:03:29 mr_bones_ Exp $ + + 04 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org> qstat-2.11.ebuild: + this strndup is local (bug #530952) 28 Nov 2014; Michael Sterrett <mr_bones_@gentoo.org> qstat-2.11.ebuild: EAPI=5 diff --git a/games-util/qstat/qstat-2.11.ebuild b/games-util/qstat/qstat-2.11.ebuild index f45421a4e125..f5e6f912cdfa 100644 --- a/games-util/qstat/qstat-2.11.ebuild +++ b/games-util/qstat/qstat-2.11.ebuild @@ -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/games-util/qstat/qstat-2.11.ebuild,v 1.11 2014/11/28 17:18:34 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/qstat/qstat-2.11.ebuild,v 1.12 2014/12/04 17:03:29 mr_bones_ Exp $ EAPI=5 DESCRIPTION="Server statics collector supporting many FPS games" @@ -14,6 +14,11 @@ IUSE="debug" DEPEND="!sys-cluster/torque" +src_prepare() { + # bug #530952 + sed -i -e 's/strndup/l_strndup/g' qstat.c || die +} + src_configure() { econf $(use_enable debug) } |