diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 32 |
1 files changed, 9 insertions, 23 deletions
diff --git a/configure.in b/configure.in index b0d1c97..3b8db84 100644 --- a/configure.in +++ b/configure.in | |||
@@ -493,30 +493,16 @@ if test -n "$PS_COMMAND" && test -n "$PS_FORMAT" && test -n "$PS_COLS" && test - | |||
493 | ac_cv_ps_cols="$PS_COLS" | 493 | ac_cv_ps_cols="$PS_COLS" |
494 | AC_MSG_RESULT([(command-line) $ac_cv_ps_command]) | 494 | AC_MSG_RESULT([(command-line) $ac_cv_ps_command]) |
495 | 495 | ||
496 | dnl Now using the pst3/kmem hack for solaris systems to avoid truncation | 496 | dnl Using /usr/ucb/ps on Solaris systems, to avoid truncation |
497 | elif test "$ac_cv_uname_s" = "SunOS"; then | 497 | dnl Limitation that command name is not available |
498 | # | 498 | elif test "$ac_cv_uname_s" = "SunOS" && /usr/ucb/ps -alxwwn 2>/dev/null | \ |
499 | # this is a very, very ugly hack, to hardcode the location for plugins | 499 | egrep -i ["^ *F +UID +PID +PPID +%C +PRI +NI +SZ +RSS +WCHAN +S +TT +TIME +COMMAND"] > /dev/null |
500 | # | 500 | then |
501 | if test "$libexecdir" = '${exec_prefix}/libexec'; then | 501 | ac_cv_ps_varlist="[&procuid,&procpid,&procppid,&procpcpu,&procvsz,&procrss,procstat,&pos]" |
502 | if test "$exec_prefix" = "NONE"; then | 502 | ac_cv_ps_command="/usr/ucb/ps -alxwwn" |
503 | if test "$prefix" = "NONE"; then | 503 | ac_cv_ps_format=["%*s %d %d %d %d %*d %*d %d %d%*[ 0123456789abcdef]%[OSRZT]%*s %*s %n"] |
504 | pst3="$ac_default_prefix/libexec/pst3" | ||
505 | else | ||
506 | pst3="$prefix/libexec/pst3" | ||
507 | fi | ||
508 | else | ||
509 | pst3="$exec_prefix/libexec/pst3" | ||
510 | fi | ||
511 | else | ||
512 | pst3="$libexecdir/pst3" | ||
513 | fi | ||
514 | ac_cv_ps_command="$pst3" | ||
515 | ac_cv_ps_format="%s %d %d %d %d %f %s %n" | ||
516 | ac_cv_ps_varlist="[procstat,&procuid,&procppid,&procvsz,&procrss,&procpcpu,procprog,&pos]" | ||
517 | ac_cv_ps_cols=8 | 504 | ac_cv_ps_cols=8 |
518 | AC_MSG_RESULT([using nagios-plugins internal ps for solaris]) | 505 | AC_MSG_RESULT([$ac_cv_ps_command]) |
519 | EXTRAS_ROOT="$EXTRAS_ROOT pst3" | ||
520 | 506 | ||
521 | dnl Some gnu/linux systems (debian for one) don't like -axwo and need axwo. | 507 | dnl Some gnu/linux systems (debian for one) don't like -axwo and need axwo. |
522 | dnl so test for this first... | 508 | dnl so test for this first... |