diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-21 10:37:55 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-21 10:37:55 +0000 |
commit | 3cd2c9d5abed23fd06de527c4e9854915415d0fa (patch) | |
tree | 51edc8aed492f109fd5f080f9acce02e71f9c41a /x11-clocks/wmcalclock/files/patch-ab | |
parent | Looks like this ports needs perl5 to build (diff) |
Fix on sparc64 by using a time_t instead of a long, and bump PORTREVISION.
Diffstat (limited to '')
-rw-r--r-- | x11-clocks/wmcalclock/files/patch-ab | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-clocks/wmcalclock/files/patch-ab b/x11-clocks/wmcalclock/files/patch-ab new file mode 100644 index 000000000000..227ac30c0ff4 --- /dev/null +++ b/x11-clocks/wmcalclock/files/patch-ab @@ -0,0 +1,11 @@ +--- wmCalClock.c.orig Wed May 21 03:34:04 2003 ++++ wmCalClock.c Wed May 21 03:34:07 2003 +@@ -299,7 +299,7 @@ + int i, n, wid, extrady, extradx; + int Year, Month, DayOfWeek, DayOfMonth, OldDayOfMonth; + int Hours, Mins, Secs, OldSecs, digit, xoff, D[10], xsize; +- long CurrentLocalTime; ++ time_t CurrentLocalTime; + double UT, TU, TU2, TU3, T0, gmst, jd(), hour24(); + + |