diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-03-25 14:31:43 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-03-25 14:31:43 +0000 |
commit | f5c0f61f8d3c92f6e14d533f4baf6cee6a51e47a (patch) | |
tree | 99d7a1551eb7b0f3ece3b63c2ad7c88abae98703 /dev-libs/pth | |
parent | ~amd64 (diff) | |
download | historical-f5c0f61f8d3c92f6e14d533f4baf6cee6a51e47a.tar.gz historical-f5c0f61f8d3c92f6e14d533f4baf6cee6a51e47a.tar.bz2 historical-f5c0f61f8d3c92f6e14d533f4baf6cee6a51e47a.zip |
fix compile warnings
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-libs/pth')
-rw-r--r-- | dev-libs/pth/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/pth/Manifest | 16 | ||||
-rw-r--r-- | dev-libs/pth/pth-1.4.0.ebuild | 5 | ||||
-rw-r--r-- | dev-libs/pth/pth-1.4.1.ebuild | 5 |
4 files changed, 17 insertions, 16 deletions
diff --git a/dev-libs/pth/ChangeLog b/dev-libs/pth/ChangeLog index 45cac1811a9f..ee5a13689d9d 100644 --- a/dev-libs/pth/ChangeLog +++ b/dev-libs/pth/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/pth # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.28 2005/02/09 10:19:15 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/ChangeLog,v 1.29 2005/03/25 14:31:43 vanquirius Exp $ + + 25 Mar 2005; Marcelo Goes <vanquirius@gentoo.org> pth-1.4.0.ebuild, + pth-1.4.1.ebuild: + Replacing pow10 with math_pow10 and round with math_round in pth_string.c to + fix warnings. 09 Feb 2005; Daniel Black <dragonheart@gentoo.org> pth-2.0.3.ebuild: gawk problem fixed enabling full locale diff --git a/dev-libs/pth/Manifest b/dev-libs/pth/Manifest index ce4258699086..b753da178994 100644 --- a/dev-libs/pth/Manifest +++ b/dev-libs/pth/Manifest @@ -1,18 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 609c2259a30ad33bb592b8021867ac7e ChangeLog 3444 +MD5 9d85a39e3010a42166ade6f1abd4dd2d pth-1.4.0.ebuild 771 +MD5 5bf8626327c93fa32ce5702759caed12 pth-1.4.1.ebuild 759 +MD5 a1c593cedca7b1bd086e31c6d09422e4 ChangeLog 3629 MD5 566cf4f89e44670d0aba4a745913d748 metadata.xml 224 MD5 2d83231bcef0c2543031db5c1c6c8781 pth-2.0.3.ebuild 830 -MD5 1653c02c5abf5795fefde2f616286528 pth-1.4.0.ebuild 656 -MD5 ec870506fee931e3ae4250c693cbce55 pth-1.4.1.ebuild 654 MD5 5a8d84760fa717b03ba0a74fdcda84a2 files/digest-pth-1.4.0 61 MD5 1bfd642d99d813a259564df018c7f6dd files/digest-pth-1.4.1 61 MD5 b2b42d9f7e85e829667e5cec706c44fe files/digest-pth-2.0.3 61 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.0 (GNU/Linux) - -iD8DBQFCCeOpmdTrptrqvGERApaNAKCAsvzXZQ3HigdtsdksZCrJse0HEQCaAtzw -aYIBuSd68t/7mvWLeznqLBA= -=TlfJ ------END PGP SIGNATURE----- diff --git a/dev-libs/pth/pth-1.4.0.ebuild b/dev-libs/pth/pth-1.4.0.ebuild index b20517c50259..f39681b52096 100644 --- a/dev-libs/pth/pth-1.4.0.ebuild +++ b/dev-libs/pth/pth-1.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.22 2005/01/22 09:41:13 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.0.ebuild,v 1.23 2005/03/25 14:31:43 vanquirius Exp $ inherit gnuconfig libtool @@ -19,6 +19,9 @@ src_unpack() { unpack ${A} gnuconfig_update use ppc-macos && darwintoolize + #fix warnings + sed -i "s:pow10:math_pow10:g" ${S}/pth_string.c + sed -i "s:round:math_round:g" ${S}/pth_string.c } src_install() { diff --git a/dev-libs/pth/pth-1.4.1.ebuild b/dev-libs/pth/pth-1.4.1.ebuild index 90536e7362a1..f836e134c63a 100644 --- a/dev-libs/pth/pth-1.4.1.ebuild +++ b/dev-libs/pth/pth-1.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.1.ebuild,v 1.20 2005/01/22 09:41:13 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/pth/pth-1.4.1.ebuild,v 1.21 2005/03/25 14:31:43 vanquirius Exp $ inherit gnuconfig @@ -21,6 +21,9 @@ src_unpack() { # update GNU config files gnuconfig_update + #fix warnings + sed -i "s:pow10:math_pow10:g" pth_string.c + sed -i "s:round:math_round:g" pth_string.c } src_install() { |