diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-14 00:21:06 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-14 00:21:06 +0800 |
commit | 6d42278df8962b55fe632fad1d0cedb9cc3b4b45 (patch) | |
tree | ea349cbd4387660efc69ea394cff71cf9b400af8 | |
parent | d18b250a85f20ede915d89a6d95996c0862d994a (diff) | |
download | marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar.gz marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar.bz2 marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar.lz marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar.xz marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.tar.zst marcuscom-ports-6d42278df8962b55fe632fad1d0cedb9cc3b4b45.zip |
Fix pointer truncation on 64-bit platforms by adding some missing headers.
Submitted by: Yuri Pankov <yuri.pankov@gmail.com>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6434 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | mail/evolution/Makefile | 4 | ||||
-rw-r--r-- | mail/evolution/files/patch-mail_message-list.c | 16 |
2 files changed, 18 insertions, 2 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index 502b032fb..6ad924664 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -3,12 +3,12 @@ # Whom: Ade Lovett <ade@FreeBSD.org> # # $FreeBSD: ports/mail/evolution/Makefile,v 1.123 2006/04/30 00:46:56 marcus Exp $ -# $MCom: ports/mail/evolution/Makefile,v 1.104 2006/06/13 01:37:00 marcus Exp $ +# $MCom: ports/mail/evolution/Makefile,v 1.105 2006/06/13 04:30:26 marcus Exp $ # PORTNAME= evolution PORTVERSION= 2.7.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/mail/evolution/files/patch-mail_message-list.c b/mail/evolution/files/patch-mail_message-list.c new file mode 100644 index 000000000..f4c35aae7 --- /dev/null +++ b/mail/evolution/files/patch-mail_message-list.c @@ -0,0 +1,16 @@ +--- mail/message-list.c.orig Tue Jun 13 12:19:43 2006 ++++ mail/message-list.c Tue Jun 13 12:20:11 2006 +@@ -56,11 +56,13 @@ + #include "misc/e-gui-utils.h" + + #include "table/e-cell-checkbox.h" ++#include "table/e-cell-hbox.h" + #include "table/e-cell-date.h" + #include "table/e-cell-size.h" + #include "table/e-cell-text.h" + #include "table/e-cell-toggle.h" + #include "table/e-cell-tree.h" ++#include "table/e-cell-vbox.h" + #include "table/e-tree-memory-callbacks.h" + #include "table/e-tree-memory.h" + |