summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2004-04-06 16:02:13 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2004-04-06 16:02:13 (GMT)
commitffa7482cb6de4e2ec2e8f99a832fc9a6425150b6 (patch)
treeab9e672600b6b1e8315bb675b6fc0bdde7d49c2c /configure.in
parent72d0789bb93484f3a2c5c7e58ee1c97f71431c2e (diff)
downloadmonitoring-plugins-ffa7482cb6de4e2ec2e8f99a832fc9a6425150b6.tar.gz
Fixed weird scanf bug on Solaris
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@864 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index f6c33dc..3173d6d 100644
--- a/configure.in
+++ b/configure.in
@@ -737,12 +737,15 @@ then
737 ac_cv_ps_cols=7 737 ac_cv_ps_cols=7
738 AC_MSG_RESULT([$ac_cv_ps_command - with no RSS]) 738 AC_MSG_RESULT([$ac_cv_ps_command - with no RSS])
739 739
740dnl Solaris 2.6
740elif ps -Ao 's comm vsz rss uid user ppid args' 2>/dev/null | \ 741elif ps -Ao 's comm vsz rss uid user ppid args' 2>/dev/null | \
741 egrep -i ["^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+"] >/dev/null 742 egrep -i ["^S[TAUES]* +C[OMDNA]+ +V[SIZE]+ +RSS +UID +USER +PPID +[RGSCOMDNA]+"] >/dev/null
742then 743then
743 ac_cv_ps_varlist="[procstat,&procuid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" 744 ac_cv_ps_varlist="[procstat,&procuid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]"
744 ac_cv_ps_command="$PATH_TO_PS -Ao 's uid ppid vsz rss pcpu comm args'" 745 ac_cv_ps_command="$PATH_TO_PS -Ao 's uid ppid vsz rss pcpu comm args'"
745 ac_cv_ps_format="%s %d %d %d %d %f %s %n" 746 # There must be no space between the %s and %n due to a wierd problem in sscanf where
747 # it will return %n as longer than the line length
748 ac_cv_ps_format="%s %d %d %d %d %f %s%n"
746 ac_cv_ps_cols=8 749 ac_cv_ps_cols=8
747 AC_MSG_RESULT([$ac_cv_ps_command]) 750 AC_MSG_RESULT([$ac_cv_ps_command])
748 751