repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 83c699d5a559acecc9b62767e4ffcf8fb50dfbb5:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 83c699d5a559acecc9b62767e4ffcf8fb50dfbb5
Author: Alexander Barton 
Date:   Wed Dec 3 16:49:17 2008 +0100

    Make testsuite (getpid.sh) work on OpenSolaris (i386/pc/solaris2.11).

diff --git a/src/testsuite/getpid.sh b/src/testsuite/getpid.sh
index 0d9451920d938200583d3edd9a20e52e906e8c41..
index ..5e169175295d53d9d02549937827151a4225983d 100755
--- a/src/testsuite/getpid.sh
+++ b/src/testsuite/getpid.sh
@@ -7,12 +7,14 @@

 # detect flags for "ps" and "head"
 UNAME=`uname`
-if [ $UNAME = "FreeBSD" -o $UNAME = "SunOS" ]; then
+if [ $UNAME = "FreeBSD" ]; then
   PS_FLAGS="-a"; PS_PIDCOL="1"; HEAD_FLAGS="-n 1"
 elif [ $UNAME = "A/UX" ]; then
   PS_FLAGS="-ae"; PS_PIDCOL="1"; HEAD_FLAGS="-1"
 elif [ $UNAME = "GNU" ]; then
   PS_FLAGS="-ax"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1"
+elif [ $UNAME = "SunOS" ]; then
+  PS_FLAGS="-af"; PS_PIDCOL=2; HEAD_FLAGS="-n 1"
 else
   PS_FLAGS="-f"; PS_PIDCOL="2"; HEAD_FLAGS="-n 1"
   ps $PS_FLAGS > /dev/null 2>&1

-----END OF PAGE-----