diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-03-17 12:24:32 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-03-17 12:24:32 +0800 |
commit | 91171e631e679e2d77e2930527d00b00700293b7 (patch) | |
tree | 40012d47738cf6c82ba4b92ec80739c9ee9ce198 /plugins/tnef-attachments/tnef-plugin.c | |
parent | fc20edb3e4b7225db03ee469843dba50aa25dbf7 (diff) | |
download | gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar.gz gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar.bz2 gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar.lz gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar.xz gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.tar.zst gsoc2013-evolution-91171e631e679e2d77e2930527d00b00700293b7.zip |
Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #519421 (Also allow <libytnef/ytnef.h> header while compiling the TNEF attachment decoder plugin)
svn path=/trunk/; revision=35206
Diffstat (limited to 'plugins/tnef-attachments/tnef-plugin.c')
-rw-r--r-- | plugins/tnef-attachments/tnef-plugin.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/tnef-attachments/tnef-plugin.c b/plugins/tnef-attachments/tnef-plugin.c index c96088baca..483ed35afd 100644 --- a/plugins/tnef-attachments/tnef-plugin.c +++ b/plugins/tnef-attachments/tnef-plugin.c @@ -17,7 +17,11 @@ #include <fcntl.h> #include <ctype.h> #include <stdlib.h> +#ifdef HAVE_YTNEF_H #include <ytnef.h> +#elif defined HAVE_LIBYTNEF_YTNEF_H +#include <libytnef/ytnef.h> +#endif #include <camel/camel-mime-part.h> #include <camel/camel-folder.h> |