1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

- Fix build after wxgtk2 update

PR:		132912
Submitted by:	Cezary Morga <cm@therek.net>
Reported by:	pavbot
This commit is contained in:
Martin Wilke 2009-03-22 10:38:58 +00:00
parent 2689c51850
commit 8fe526bf29
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230638
2 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= Alien-wxWidgets
PORTVERSION= 0.42
PORTREVISION= 1
CATEGORIES= x11-toolkits perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -0,0 +1,11 @@
--- inc/My/Build/Base.pm.orig 2009-03-21 00:11:09.000000000 +0100
+++ inc/My/Build/Base.pm 2009-03-21 00:11:36.000000000 +0100
@@ -108,7 +108,7 @@
$ver =~ m/^(\d+)\.(\d+)\.(\d+)$/ and
$dec = $1 + $2 / 1000 + $3 / 1000000;
- return $dec;
+ return sprintf( "%.6f", $dec );
}
sub _init_config {