mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
libesmtp: not available for static builds
This package requires libltdl and checks for it in the configure phase. If it's not present, then the build process is stopped. Fixes: http://autobuild.buildroot.net/results/5cf/5cf145d3f9c78bef1f66fe9b1831723de8b4969f/ [Peter: dependency should only apply to COLLECTD_NOTIFY_EMAIL suboption] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
c5cb5c3605
commit
5dc0e606b5
@ -58,12 +58,16 @@ config BR2_PACKAGE_COLLECTD_LOGFILE
|
|||||||
|
|
||||||
config BR2_PACKAGE_COLLECTD_NOTIFY_EMAIL
|
config BR2_PACKAGE_COLLECTD_NOTIFY_EMAIL
|
||||||
bool "notify_email"
|
bool "notify_email"
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # libesmtp
|
||||||
select BR2_PACKAGE_LIBESMTP
|
select BR2_PACKAGE_LIBESMTP
|
||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_OPENSSL
|
||||||
help
|
help
|
||||||
Send an E-mail with the notification message to the
|
Send an E-mail with the notification message to the
|
||||||
configured recipients.
|
configured recipients.
|
||||||
|
|
||||||
|
comment "notify_email needs a toolchain w/ dynamic library"
|
||||||
|
depends on BR2_PREFER_STATIC_LIB
|
||||||
|
|
||||||
config BR2_PACKAGE_COLLECTD_SYSLOG
|
config BR2_PACKAGE_COLLECTD_SYSLOG
|
||||||
bool "syslog"
|
bool "syslog"
|
||||||
default y
|
default y
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
config BR2_PACKAGE_LIBESMTP
|
config BR2_PACKAGE_LIBESMTP
|
||||||
bool "libesmtp"
|
bool "libesmtp"
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB
|
||||||
help
|
help
|
||||||
Library for sending emails through SMTP.
|
Library for sending emails through SMTP.
|
||||||
|
|
||||||
http://www.stafford.uklinux.net/libesmtp
|
http://www.stafford.uklinux.net/libesmtp
|
||||||
|
|
||||||
|
comment "libesmtp needs a toolchain w/ dynamic library"
|
||||||
|
depends on BR2_PREFER_STATIC_LIB
|
||||||
|
Loading…
x
Reference in New Issue
Block a user