summaryrefslogtreecommitdiff
path: root/math/gnumeric
diff options
context:
space:
mode:
authorjoerg <joerg>2006-01-30 18:36:20 +0000
committerjoerg <joerg>2006-01-30 18:36:20 +0000
commit1bbdfbbc6ccea2a8b5fb10b4c6a117607550261c (patch)
tree0173d1023511ef6ebd7b7b49292aff8f1bf919e5 /math/gnumeric
parent229912cc92793309be6a40d672e464551bf8094c (diff)
downloadpkgsrc-1bbdfbbc6ccea2a8b5fb10b4c6a117607550261c.tar.gz
Include sys/time.h for struct timeval on DragonFly.
Diffstat (limited to 'math/gnumeric')
-rw-r--r--math/gnumeric/distinfo4
-rw-r--r--math/gnumeric/patches/patch-aa12
2 files changed, 12 insertions, 4 deletions
diff --git a/math/gnumeric/distinfo b/math/gnumeric/distinfo
index 99ad9fe6315..59b3eca11f3 100644
--- a/math/gnumeric/distinfo
+++ b/math/gnumeric/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.23 2005/12/17 20:49:45 wiz Exp $
+$NetBSD: distinfo,v 1.24 2006/01/30 18:36:20 joerg Exp $
SHA1 (gnumeric-1.6.1.tar.bz2) = 26d82fed4b94236079831f743fa89943b0c1ab9d
RMD160 (gnumeric-1.6.1.tar.bz2) = 708b8bced428426b67efa199c547aad67542cbf1
Size (gnumeric-1.6.1.tar.bz2) = 12529002 bytes
-SHA1 (patch-aa) = fb4e8f813ecd231aae6e1e1ff2fb800544454570
+SHA1 (patch-aa) = 1601ae861cdf1851d1939aa44666929d9ad4f1e7
diff --git a/math/gnumeric/patches/patch-aa b/math/gnumeric/patches/patch-aa
index e7938a9e3f2..57124109b03 100644
--- a/math/gnumeric/patches/patch-aa
+++ b/math/gnumeric/patches/patch-aa
@@ -1,8 +1,16 @@
-$NetBSD: patch-aa,v 1.18 2005/12/17 20:49:45 wiz Exp $
+$NetBSD: patch-aa,v 1.19 2006/01/30 18:36:21 joerg Exp $
--- src/tools/solver/lp_solve/lp_solve.c.orig 2005-08-25 19:28:28.000000000 +0200
+++ src/tools/solver/lp_solve/lp_solve.c
-@@ -15891,10 +15891,10 @@ static double timeNow(void)
+@@ -7,6 +7,7 @@
+ #include <stdlib.h>
+ #include <errno.h>
+ #include <time.h>
++#include <sys/time.h>
+ #include <sys/timeb.h>
+
+ #define LoadInverseLib FALSE
+@@ -15891,10 +15892,10 @@ static double timeNow(void)
#elif defined CLOCKTIME
return((double)clock()/CLOCKS_PER_SEC /* CLK_TCK */);
#else