diff options
-rw-r--r-- | package/Config.in | 3 | ||||
-rw-r--r-- | package/monit/Config.in | 10 | ||||
-rw-r--r-- | package/monit/monit.mk | 30 |
3 files changed, 43 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 2b69c575c..2b2c98050 100644 --- a/package/Config.in +++ b/package/Config.in @@ -647,6 +647,9 @@ source "package/htop/Config.in" source "package/kmod/Config.in" if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/module-init-tools/Config.in" +endif +source "package/monit/Config.in" +if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/procps/Config.in" source "package/psmisc/Config.in" source "package/rsyslog/Config.in" diff --git a/package/monit/Config.in b/package/monit/Config.in new file mode 100644 index 000000000..6933aafc8 --- /dev/null +++ b/package/monit/Config.in @@ -0,0 +1,10 @@ +config BR2_PACKAGE_MONIT + bool "monit" + help + Monit is a free open source utility for managing and + monitoring, processes, programs, files, directories and + filesystems on a UNIX system. Monit conducts automatic + maintenance and repair and can execute meaningful causal + actions in error situations. + + http://mmonit.com/monit/ diff --git a/package/monit/monit.mk b/package/monit/monit.mk new file mode 100644 index 000000000..958618dc3 --- /dev/null +++ b/package/monit/monit.mk @@ -0,0 +1,30 @@ +############################################################# +# +# monit +# +############################################################# + +MONIT_VERSION = 5.4 +MONIT_SITE = http://mmonit.com/monit/dist/ + +MONIT_CONF_ENV = \ + libmonit_cv_setjmp_available=yes \ + libmonit_cv_vsnprintf_c99_conformant=yes + +MONIT_CONF_OPT += \ + --without-pam + +ifeq ($(BR2_PACKAGE_OPENSSL),y) +MONIT_CONF_OPT += --with-ssl +MONIT_DEPENDENCIES += openssl +else +MONIT_CONF_OPT += --without-ssl +endif + +ifeq ($(BR2_LARGEFILE),y) +MONIT_CONF_OPT += --with-largefiles +else +MONIT_CONF_OPT += --without-largefiles +endif + +$(eval $(call AUTOTARGETS)) |