- update to freexl-1.0.2

This commit is contained in:
jasper 2015-07-24 14:20:04 +00:00
parent 4b3cf31135
commit 0c52046197
3 changed files with 11 additions and 11 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.2 2014/08/26 19:02:27 landry Exp $
# $OpenBSD: Makefile,v 1.3 2015/07/24 14:20:04 jasper Exp $
COMMENT= extract valid data from within an Excel spreadsheet
PROJECT = freexl
DISTNAME= ${PROJECT}-1.0.0g
DISTNAME= ${PROJECT}-1.0.2
CATEGORIES= converters geo
SHARED_LIBS= freexl 0.0 #1.0
SHARED_LIBS= freexl 0.1 #2.0
WANTLIB= m
.include <bsd.port.mk>

View File

@ -1,2 +1,2 @@
SHA256 (freexl-1.0.0g.tar.gz) = zysRD1/HCJ+mHHQh9ZyqQSWxMIe0aG7YLbp6vt8uwmY=
SIZE (freexl-1.0.0g.tar.gz) = 928371
SHA256 (freexl-1.0.2.tar.gz) = s5pIFKD1P14JqRksQePlG9ZYhD93A5kCOpY+sGT2QJ0=
SIZE (freexl-1.0.2.tar.gz) = 939064

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_freexl_c,v 1.1.1.1 2013/03/20 21:55:28 landry Exp $
--- src/freexl.c.orig Sun Mar 10 15:06:33 2013
+++ src/freexl.c Sun Mar 10 15:08:00 2013
@@ -98,6 +98,7 @@ lround (double num)
$OpenBSD: patch-src_freexl_c,v 1.2 2015/07/24 14:20:05 jasper Exp $
--- src/freexl.c.orig Tue Jul 14 09:45:23 2015
+++ src/freexl.c Fri Jul 24 15:51:11 2015
@@ -108,6 +108,7 @@ lround (double num)
}
#endif
@ -9,7 +9,7 @@ $OpenBSD: patch-src_freexl_c,v 1.1.1.1 2013/03/20 21:55:28 landry Exp $
static void
swap16 (biff_word16 * word)
{
@@ -106,7 +107,9 @@ swap16 (biff_word16 * word)
@@ -116,7 +117,9 @@ swap16 (biff_word16 * word)
word->bytes[0] = word->bytes[1];
word->bytes[1] = save;
}
@ -19,7 +19,7 @@ $OpenBSD: patch-src_freexl_c,v 1.1.1.1 2013/03/20 21:55:28 landry Exp $
static void
swap32 (biff_word32 * word)
{
@@ -119,6 +122,7 @@ swap32 (biff_word32 * word)
@@ -129,6 +132,7 @@ swap32 (biff_word32 * word)
word->bytes[2] = save1;
word->bytes[3] = save0;
}