1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Update to 0.7.

This commit is contained in:
Adam Weinberger 2004-11-21 22:46:10 +00:00
parent 83028dd384
commit ac9683b5c5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122108
4 changed files with 13 additions and 18 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= wmfuzzy
PORTVERSION= 0.6
PORTVERSION= 0.7
CATEGORIES= x11-clocks windowmaker
MASTER_SITES= http://www.manicai.net/comp/wmfuzzy/
EXTRACT_SUFX= .tgz

View File

@ -1,2 +1,2 @@
MD5 (wmfuzzy-0.6.tgz) = 24235d7845697247ef7b75da012c45ae
SIZE (wmfuzzy-0.6.tgz) = 19735
MD5 (wmfuzzy-0.7.tgz) = acac592e04a091b4f4203a8e28722815
SIZE (wmfuzzy-0.7.tgz) = 21075

View File

@ -1,15 +0,0 @@
--- wmfuzzy.c.orig Wed Mar 17 16:58:40 2004
+++ wmfuzzy.c Sat Mar 27 22:15:00 2004
@@ -55,10 +55,10 @@
}
void display_time(const struct tm* tm) {
+ const ApproximateTime approximation = approximate(tm, gGranularity);
+
static char text[30];
memset(text, 0, ARRAY_SIZE(text));
-
- const ApproximateTime approximation = approximate(tm, gGranularity);
if (approximation.minutes == 0)
{

View File

@ -0,0 +1,10 @@
--- xdisplay.h.orig Sun Nov 21 17:40:24 2004
+++ xdisplay.h Sun Nov 21 17:42:34 2004
@@ -11,6 +11,7 @@
* functions in display.h.
*/
#include <ctype.h>
+#include <stddef.h>
/* Set up code. Must be called prior to x_main_loop. */
void display_initialise(int argc, char* argv[]);