mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
- Update to 0.7.1
- Fix WITHOUT_ID3 build PR: ports/160821 Submitted by: Spil <spil.oss@googlemail.com> Submitted by: Anton Yuzhaninov <citrin@citrin.ru> (maintainer)
This commit is contained in:
parent
4e590d2cea
commit
4fe1a78c73
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294998
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= libmp3splt
|
||||
PORTVERSION= 0.7
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.7.1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= SF/mp3splt/${PORTNAME}/${PORTVERSION}
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (libmp3splt-0.7.tar.gz) = f73093de1bff2492d5f52b1fab2608b4fb5ecd027c8d62672efb92fde5f5db26
|
||||
SIZE (libmp3splt-0.7.tar.gz) = 628384
|
||||
SHA256 (libmp3splt-0.7.1.tar.gz) = c006436db293a21da2ebc65ceaecf775cbf694b82b20a8506b827e236d7e0e73
|
||||
SIZE (libmp3splt-0.7.1.tar.gz) = 638672
|
||||
|
@ -1,11 +1,11 @@
|
||||
--- src/oformat_parser.c.orig 2010-09-07 05:12:05.000000000 +0800
|
||||
+++ src/oformat_parser.c 2010-09-29 16:12:11.000000000 +0800
|
||||
@@ -760,7 +760,7 @@
|
||||
if (total_time > 0)
|
||||
--- src/oformat_parser.c.orig 2011-11-11 22:14:03.000000000 +0100
|
||||
+++ src/oformat_parser.c 2012-04-11 09:45:52.000000000 +0200
|
||||
@@ -301,7 +301,7 @@
|
||||
}
|
||||
|
||||
long minutes = total_time / 100 / 60;
|
||||
- int i = (int) (log10l((long double) minutes));
|
||||
+ int i = (int) (log10(minutes));
|
||||
char number_of_digits = (char) (i + '1');
|
||||
if (number_of_digits == '1')
|
||||
{
|
||||
long minutes = total_time / 100 / 60;
|
||||
- int i = (int) (log10l((long double) minutes));
|
||||
+ int i = (int) (log10(minutes));
|
||||
char number_of_digits = (char) (i + '1');
|
||||
if (number_of_digits == '1')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user