diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-07 19:02:56 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-12-07 19:02:56 +0000 |
commit | e4623b87630f0b7d457ba22f711c81bd26839ab5 (patch) | |
tree | 4d53c2e6974b524002090c6d5847383b16af01a5 /mail/evolution | |
parent | Catch up with the location of the distfile on the master site and (diff) |
Fix a bug in local timezone handling. Bump PORTREVISION.
Submitted by: Gary Geisbert <geisbert@code1200.nrl.navy.mil>
Notes
Notes:
svn path=/head/; revision=51185
Diffstat (limited to 'mail/evolution')
-rw-r--r-- | mail/evolution/Makefile | 2 | ||||
-rw-r--r-- | mail/evolution/files/patch-camel::camel-mime-message.c | 14 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index bd1e55fa867f..ed2e23a23b81 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -7,7 +7,7 @@ PORTNAME= evolution PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/evolution diff --git a/mail/evolution/files/patch-camel::camel-mime-message.c b/mail/evolution/files/patch-camel::camel-mime-message.c new file mode 100644 index 000000000000..2f19696c5b1e --- /dev/null +++ b/mail/evolution/files/patch-camel::camel-mime-message.c @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- camel/camel-mime-message.c 2001/12/07 18:58:45 1.1 ++++ camel/camel-mime-message.c 2001/12/07 18:59:18 +@@ -206,7 +206,7 @@ + #if defined(HAVE_TIMEZONE) + tz = timezone; + #elif defined(HAVE_TM_GMTOFF) +- tz = local->tm_gmtoff; ++ tz = -local->tm_gmtoff; + #endif + offset = -(((tz/60/60) * 100) + (tz/60 % 60)); + if (local->tm_isdst>0) |