diff options
author | Wang Xin <jedy.wang@sun.com> | 2007-05-14 16:23:18 +0800 |
---|---|---|
committer | Jedy Jedy Wang <jedywang@src.gnome.org> | 2007-05-14 16:23:18 +0800 |
commit | 75037037e300ff8dbaf73405cf424702067a912a (patch) | |
tree | 2c6e0853d0494daa56f7443bcb3a0762728ac6ba | |
parent | 39a2a52f9790d3a9cbc87af2ed0e1ef41ff97620 (diff) | |
download | gsoc2013-evolution-75037037e300ff8dbaf73405cf424702067a912a.tar.gz gsoc2013-evolution-75037037e300ff8dbaf73405cf424702067a912a.tar.zst gsoc2013-evolution-75037037e300ff8dbaf73405cf424702067a912a.zip |
Fixes 380750, do not use killall on Solaris.
2007-05-14 Wang Xin <jedy.wang@sun.com>
* configure.in: Fixes 380750, do not use killall on Solaris.
svn path=/branches/gnome-2-18/; revision=33543
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 12 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2007-05-14 Wang Xin <jedy.wang@sun.com> + + * configure.in: Fixes 380750, do not use killall on Solaris. + 2007-04-23 Karsten Bräckelmann <guenther@rudersport.de> * configure.in: Fix configure for LDFLAGS=-Wl,--as-needed. Fixes diff --git a/configure.in b/configure.in index e2aeba68dd..5f1b50afad 100644 --- a/configure.in +++ b/configure.in @@ -1049,7 +1049,14 @@ dnl ***************** dnl killall or pkill? dnl ***************** -AC_PATH_PROGS(KILL_PROCESS_CMD, killall pkill) +case "$host" in +*solaris*) + AC_PATH_PROGS(KILL_PROCESS_CMD, pkill) + ;; +*) + AC_PATH_PROGS(KILL_PROCESS_CMD, killall pkill) + ;; +esac if test -z "$KILL_PROCESS_CMD"; then AC_MSG_WARN([Could not find a command to kill a process by name]) else |