diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-07-17 18:25:43 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-07-17 18:25:43 +0000 |
commit | 69573b4a6481870635b4717f5e19388d47dc6c66 (patch) | |
tree | 43e726b06cce3a67ae749d287a99caf45a70b89e /mail/claws-mail-archiver | |
parent | a8604ad15fa0320012ea3ad2add23ee5a07183ab (diff) |
Add upstream patches fixing linking problems when affected plugins are
compiled WITHOUT_NLS=yes, this fixes:
/usr/local/lib/claws-mail/plugins/fancy.so: Undefined symbol "D_" problems
Notes
Notes:
svn path=/head/; revision=301022
Diffstat (limited to 'mail/claws-mail-archiver')
-rw-r--r-- | mail/claws-mail-archiver/Makefile | 1 | ||||
-rw-r--r-- | mail/claws-mail-archiver/files/patch-src-gettext.h | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/mail/claws-mail-archiver/Makefile b/mail/claws-mail-archiver/Makefile index 2c55ed505d2e..41fe83326fef 100644 --- a/mail/claws-mail-archiver/Makefile +++ b/mail/claws-mail-archiver/Makefile @@ -7,6 +7,7 @@ PORTNAME= archiver PORTVERSION= 0.6.12 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.claws-mail.org/downloads/plugins/ PKGNAMEPREFIX= claws-mail- diff --git a/mail/claws-mail-archiver/files/patch-src-gettext.h b/mail/claws-mail-archiver/files/patch-src-gettext.h new file mode 100644 index 000000000000..dbb219c8ff2e --- /dev/null +++ b/mail/claws-mail-archiver/files/patch-src-gettext.h @@ -0,0 +1,19 @@ +$FreeBSD$ + +Index: src/gettext.h +=================================================================== +RCS file: /home/claws-mail/plugins/archive/src/Attic/gettext.h,v +retrieving revision 1.1.2.2 +retrieving revision 1.1.2.3 +diff -u -r1.1.2.2 -r1.1.2.3 +--- src/gettext.h 6 Jan 2012 14:10:15 -0000 1.1.2.2 ++++ src/gettext.h 9 Jul 2012 05:06:19 -0000 1.1.2.3 +@@ -69,7 +69,7 @@ + # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset)) + + #define _(str) str +- ++#define D_(domain, str) (domain, str) + #endif + + /* A pseudo function call that serves as a marker for the automated |