48decda0b0
- explicitly disable some stuff - enable base plugins "no objections here" martynas@ note, there is are some issues left, but this will be fixed shortly.
38 lines
978 B
Plaintext
38 lines
978 B
Plaintext
$OpenBSD: patch-widgets_e-timezone-dialog_e-timezone-dialog_c,v 1.3 2007/11/21 16:18:15 jasper Exp $
|
|
--- widgets/e-timezone-dialog/e-timezone-dialog.c.orig Fri Oct 12 09:03:43 2007
|
|
+++ widgets/e-timezone-dialog/e-timezone-dialog.c Wed Oct 31 23:03:38 2007
|
|
@@ -82,7 +82,9 @@ struct _ETimezoneDialogPrivate {
|
|
|
|
#ifndef G_OS_WIN32 /* Declared properly in time.h already */
|
|
extern char *tzname[2];
|
|
+#ifndef __BSD_VISIBLE
|
|
extern long timezone;
|
|
+#endif
|
|
extern int daylight;
|
|
#endif
|
|
|
|
@@ -326,9 +328,22 @@ static const icaltimezone*
|
|
get_local_timezone()
|
|
{
|
|
icaltimezone *zone;
|
|
+ long offset;
|
|
+
|
|
+#ifdef __BSD_VISIBLE
|
|
+ time_t tt;
|
|
+ struct tm tm;
|
|
+#endif /* __BSD_VISIBLE__ */
|
|
|
|
tzset();
|
|
- zone = icaltimezone_get_builtin_timezone_from_offset (-timezone, tzname[0]);
|
|
+
|
|
+#ifdef __BSD_VISIBLE
|
|
+ localtime_r (&tt, &tm);
|
|
+ offset = tm.tm_gmtoff;
|
|
+#else
|
|
+ offset = -timezone;
|
|
+#endif
|
|
+ zone = icaltimezone_get_builtin_timezone_from_offset (offset, tzname[0]);
|
|
|
|
return zone;
|
|
}
|