diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | tools/Makefile.am | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-08-10 Tor Lillqvist <tml@novell.com> + + * tools/Makefile.am: Don't try to build killev on Win32. + 2005-08-09 Theppitak Karoonboonyanan <thep@linux.thai.net> * configure.in: Added "th" (Thai) to ALL_LINGUAS. diff --git a/tools/Makefile.am b/tools/Makefile.am index 3cdfc5c7dd..e6fd5ac4f9 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,5 +1,11 @@ -privlibexec_PROGRAMS = \ +if OS_WIN32 +else +PLATFORM_DEP_TOOLS = \ killev +endif + +privlibexec_PROGRAMS = \ + $(PLATFORM_DEP_TOOLS) INCLUDES = \ -DG_LOG_DOMAIN=\"evolution-tools\" \ |