aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--tools/Makefile.am8
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 57e0ba3461..f3f0628e18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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\" \