View | Details | Raw Unified | Return to bug 160821 | Differences between
and this patch

Collapse All | Expand All

(-)/home/citrin/libmp3splt/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	libmp3splt
8
PORTNAME=	libmp3splt
9
PORTVERSION=	0.7
9
PORTVERSION=	0.7.1
10
PORTREVISION=	1
11
CATEGORIES=	audio
10
CATEGORIES=	audio
12
MASTER_SITES=	SF/mp3splt/${PORTNAME}/${PORTVERSION}
11
MASTER_SITES=	SF/mp3splt/${PORTNAME}/${PORTVERSION}
13
12
(-)/home/citrin/libmp3splt/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (libmp3splt-0.7.tar.gz) = f73093de1bff2492d5f52b1fab2608b4fb5ecd027c8d62672efb92fde5f5db26
1
SHA256 (libmp3splt-0.7.1.tar.gz) = c006436db293a21da2ebc65ceaecf775cbf694b82b20a8506b827e236d7e0e73
2
SIZE (libmp3splt-0.7.tar.gz) = 628384
2
SIZE (libmp3splt-0.7.1.tar.gz) = 638672
(-)/home/citrin/libmp3splt/files/patch-src-oformat_parser.c (-10 / +10 lines)
Lines 1-11 Link Here
1
--- src/oformat_parser.c.orig	2010-09-07 05:12:05.000000000 +0800
1
--- src/oformat_parser.c.orig	2011-11-11 22:14:03.000000000 +0100
2
+++ src/oformat_parser.c	2010-09-29 16:12:11.000000000 +0800
2
+++ src/oformat_parser.c	2012-04-11 09:45:52.000000000 +0200
3
@@ -760,7 +760,7 @@
3
@@ -301,7 +301,7 @@
4
   if (total_time > 0)
4
   }
5
 
6
   long minutes = total_time / 100 / 60;
7
-  int i = (int) (log10l((long double) minutes));
8
+  int i = (int) (log10(minutes));
9
   char number_of_digits = (char) (i + '1');
10
   if (number_of_digits == '1')
5
   {
11
   {
6
     long minutes = total_time / 100 / 60;
7
-    int i = (int) (log10l((long double) minutes));
8
+    int i = (int) (log10(minutes));
9
     char number_of_digits = (char) (i + '1');
10
     if (number_of_digits == '1')
11
     {

Return to bug 160821