mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-09 00:32:05 -04:00
Enable extra-opts by default
This commit is contained in:
parent
0fbee4deb2
commit
49ae05ff1c
2 changed files with 2 additions and 1 deletions
1
NEWS
1
NEWS
|
|
@ -3,6 +3,7 @@ This file documents the major additions and syntax changes between releases.
|
|||
1.6 ...
|
||||
ENHANCEMENTS
|
||||
check_ide_smart now defaults to plugin output, original output appended with -v
|
||||
Extra-Opts are now enabled by default
|
||||
|
||||
FIXES
|
||||
Don't let e.g. check_http's -C option reset SSL version if e.g. -S 1 -C 5 is specified
|
||||
|
|
|
|||
|
|
@ -192,7 +192,7 @@ AC_ARG_ENABLE(extra-opts,
|
|||
AC_HELP_STRING([--enable-extra-opts],
|
||||
[Enables parsing of plugins ini config files for extra options (default: no)]),
|
||||
[enable_extra_opts=$enableval],
|
||||
[enable_extra_opts=no])
|
||||
[enable_extra_opts=yes])
|
||||
AM_CONDITIONAL([USE_PARSE_INI],[test "$enable_extra_opts" = "yes"])
|
||||
if test "$enable_extra_opts" = "yes" ; then
|
||||
AC_DEFINE(NP_EXTRA_OPTS,[1],[Enable INI file parsing.])
|
||||
|
|
|
|||
Loading…
Reference in a new issue