aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 12:19:50 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2007-05-14 12:19:50 +0800
commit1c4ed07afe332e6b95d7578323f23086831f917b (patch)
treec158026dd7ecb583e6a98578ef3cdd9a84371b59 /configure.in
parent83ba9a2ff8531d3af7d60d98d530522b2ca7f3a0 (diff)
downloadgsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar.gz
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar.bz2
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar.lz
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar.xz
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.tar.zst
gsoc2013-evolution-1c4ed07afe332e6b95d7578323f23086831f917b.zip
** Fix for bug #380750
svn path=/trunk/; revision=33535
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index aa9ac8db41..479611a2de 100644
--- a/configure.in
+++ b/configure.in
@@ -1052,7 +1052,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