diff options
-rw-r--r-- | plugins/external-editor/ChangeLog | 9 | ||||
-rw-r--r-- | plugins/external-editor/Makefile.am | 13 | ||||
-rw-r--r-- | plugins/external-editor/external-editor.c | 8 |
3 files changed, 28 insertions, 2 deletions
diff --git a/plugins/external-editor/ChangeLog b/plugins/external-editor/ChangeLog index 694cd53c64..3bf30a612f 100644 --- a/plugins/external-editor/ChangeLog +++ b/plugins/external-editor/ChangeLog @@ -1,3 +1,12 @@ +2009-01-28 Tor Lillqvist <tml@novell.com> + + Windows port by Fridrich Strba. + + * Makefile.am: Use -no-undefined and link with more libraries on + Windows. + + * external-editor.c: Check HAVE_SYS_WAIT_H. + 2008-08-27 Sankar P <psankar@novell.com> License Changes diff --git a/plugins/external-editor/Makefile.am b/plugins/external-editor/Makefile.am index 0c7c22ab8b..bae2c640a5 100644 --- a/plugins/external-editor/Makefile.am +++ b/plugins/external-editor/Makefile.am @@ -1,3 +1,11 @@ +if OS_WIN32 +NO_UNDEFINED_REQUIRED_LIBS = \ + $(EVOLUTION_MAIL_LIBS) \ + $(GNOME_PLATFORM_LIBS) \ + $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/mail/libevolution-mail.la +endif + INCLUDES = \ -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ -DEVOLUTION_TOOLSDIR=\""$(privlibexecdir)"\" \ @@ -25,7 +33,10 @@ plugin_LTLIBRARIES = liborg-gnome-external-editor.la liborg_gnome_external_editor_la_SOURCES = \ external-editor.c -liborg_gnome_external_editor_la_LDFLAGS = -module -avoid-version +liborg_gnome_external_editor_la_LDFLAGS = \ + -module -avoid-version $(NO_UNDEFINED) +liborg_gnome_external_editor_la_LIBADD = \ + $(NO_UNDEFINED_REQUIRED_LIBS) schemadir = $(GCONF_SCHEMA_FILE_DIR) schema_in_files = apps-evolution-external-editor.schemas.in diff --git a/plugins/external-editor/external-editor.c b/plugins/external-editor/external-editor.c index ecccbf8740..140eff1089 100644 --- a/plugins/external-editor/external-editor.c +++ b/plugins/external-editor/external-editor.c @@ -38,7 +38,9 @@ #include <glib/gstdio.h> #include <sys/stat.h> -#include <sys/wait.h> +#ifdef HAVE_SYS_WAIT_H +# include <sys/wait.h> +#endif #include <stdlib.h> #include <string.h> @@ -151,7 +153,11 @@ async_external_editor (GArray *array) return ; } +#ifdef HAVE_SYS_WAIT_H if (WEXITSTATUS (status) != 0) { +#else + if (status) { +#endif d(printf ("\n\nsome problem here with external editor\n\n")); return ; } else { |