diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2009-06-04 01:24:38 +0800 |
---|---|---|
committer | Fridrich Strba <fridrich.strba@bluewin.ch> | 2009-06-04 01:26:24 +0800 |
commit | f1deed5a6c7c2ec1fa0cd455f4ce4329164016f7 (patch) | |
tree | 4f5f6de46c97c1f30317af87cf0a8f539c70c5b8 | |
parent | f7a7b0de15f238a0a9850c1194cbbbf3a89d64e5 (diff) | |
download | gsoc2013-evolution-f1deed5a6c7c2ec1fa0cd455f4ce4329164016f7.tar.gz gsoc2013-evolution-f1deed5a6c7c2ec1fa0cd455f4ce4329164016f7.tar.zst gsoc2013-evolution-f1deed5a6c7c2ec1fa0cd455f4ce4329164016f7.zip |
Don't declare x_mailer "extern" because it causes undefined symbols
while linking.
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index a75d330e93..6bb9e059a4 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -72,7 +72,7 @@ #define w(x) #define d(x) -extern const gchar *x_mailer; +const gchar *x_mailer; /* used for both just filtering a folder + uid's, and for filtering a whole folder */ /* used both for fetching mail, and for filtering mail */ |