diff options
author | Tor Lillqvist <tml@novell.com> | 2005-08-10 18:38:36 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-08-10 18:38:36 +0800 |
commit | dcb5bcea6faef1370a05132356a432a222e16e5a (patch) | |
tree | 745e80f2ec276d6a65e99ec17f352d94a742f7dc /tools | |
parent | c03e685846f21347e5a0e9943870e99162b0bae8 (diff) | |
download | gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar.gz gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar.bz2 gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar.lz gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar.xz gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.tar.zst gsoc2013-evolution-dcb5bcea6faef1370a05132356a432a222e16e5a.zip |
Don't try to build killev on Win32.
2005-08-10 Tor Lillqvist <tml@novell.com>
* tools/Makefile.am: Don't try to build killev on Win32.
svn path=/trunk/; revision=30076
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
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\" \ |