diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-30 18:36:20 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-30 18:36:20 +0000 |
commit | 7a6a355fab4b7411a9fb3b0224ef1614332f1f85 (patch) | |
tree | 0173d1023511ef6ebd7b7b49292aff8f1bf919e5 | |
parent | 240431db2b6b80fc21e6d7224c53ca34baa8cb64 (diff) | |
download | pkgsrc-7a6a355fab4b7411a9fb3b0224ef1614332f1f85.tar.gz |
Include sys/time.h for struct timeval on DragonFly.
-rw-r--r-- | math/gnumeric/distinfo | 4 | ||||
-rw-r--r-- | math/gnumeric/patches/patch-aa | 12 |
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 |