Skip to content

Commit

Permalink
zabbix: add missing dependency
Browse files Browse the repository at this point in the history
fix "configure: error: Unable to use libevent (libevent check failed)"
  • Loading branch information
Coolkids authored Nov 3, 2023
1 parent 04dfbd0 commit 117ed45
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions admin/zabbix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ endef
define Package/zabbix-agentd
$(call Package/zabbix/Default)
TITLE+= agentd
DEPENDS+= +libevent2-pthreads
PROVIDES:=zabbix-agentd
VARIANT:=nossl
DEFAULT_VARIANT:=1
Expand All @@ -71,15 +72,15 @@ endef
define Package/zabbix-agentd-openssl
$(call Package/zabbix/Default)
TITLE+= agentd (with OpenSSL)
DEPENDS+= +libopenssl
DEPENDS+= +libopenssl +libevent2-pthreads
PROVIDES:=zabbix-agentd
VARIANT:=openssl
endef

define Package/zabbix-agentd-gnutls
$(call Package/zabbix/Default)
TITLE+= agentd (with GnuTLS)
DEPENDS+= +libgnutls
DEPENDS+= +libgnutls +libevent2-pthreads
PROVIDES:=zabbix-agentd
VARIANT:=gnutls
endef
Expand Down

0 comments on commit 117ed45

Please sign in to comment.