diff options
author | Sebastian Schmidt <sschmidt@interhyp.de> | 2013-08-18 12:42:11 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-18 12:59:57 +0200 |
commit | 0f686d436e5e18d6f40fecc01128d3f383439b35 (patch) | |
tree | 216818d27e1a65ad92c374dd0df7d9518161a913 /configure.in | |
parent | d5677d9b42562b429218dd9436efd5f0e79d7929 (diff) | |
download | monitoring-plugins-0f686d436e5e18d6f40fecc01128d3f383439b35.tar.gz |
check_procs: Get rid of HAVE_PROC_PID_EXE
Don't check for /proc/pid/exe at compile time, it could be gone in a
build chroot or the like. Checking at runtime (once) is sufficient.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 7efcb0f9..43fe4ade 100644 --- a/configure.in +++ b/configure.in @@ -1632,12 +1632,6 @@ if test -n "$ac_cv_proc_meminfo"; then EXTRAS="$EXTRAS check_swap" fi -AC_MSG_CHECKING([for /proc/pid/exe]) -if [readlink /proc/$$/exe > /dev/null 2>&1]; then - AC_MSG_RESULT([found]) - AC_DEFINE(HAVE_PROC_PID_EXE,1,[Define if we have /proc/pid/exe]) -fi - AC_PATH_PROG(PATH_TO_DIG,dig) AC_ARG_WITH(dig_command, ACX_HELP_STRING([--with-dig-command=PATH], |