diff options
Diffstat (limited to 'misc/wmweather+/files/patch-moon.c')
-rw-r--r-- | misc/wmweather+/files/patch-moon.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/misc/wmweather+/files/patch-moon.c b/misc/wmweather+/files/patch-moon.c deleted file mode 100644 index 7d30a309cf47..000000000000 --- a/misc/wmweather+/files/patch-moon.c +++ /dev/null @@ -1,24 +0,0 @@ ---- moon.c.orig Fri May 14 04:55:39 2004 -+++ moon.c Fri Nov 5 21:28:09 2004 -@@ -20,6 +20,7 @@ - /* One-line algorithm from http://www.moonstick.com/moon_phase_emergency.htm - * It's a bit rough, but it works well enough */ - -+#include <sys/param.h> - #if TM_IN_SYS_TIME - # if TIME_WITH_SYS_TIME - # include <sys/time.h> -@@ -44,7 +45,12 @@ - #include "wmgeneral/wmgeneral-x11.h" - - static double fpart(double t){ -- return t-trunc(t); -+# if (__FreeBSD_version < 500000) -+ double integral; -+ return modf(t, &integral); -+# else -+ return t-trunc(t); -+# endif - } - - double calc_moon(int month, int day, int year, int hm){ |