From 723d1d911ff717ac43c24738960e76fca11c4cbd Mon Sep 17 00:00:00 2001 From: Matthias Fischer Date: Fri, 21 Apr 2017 19:00:21 +0200 Subject: [PATCH] unbound 1.6.1: Linking against libevent2 Hi, this was triggered by unbound-users@unbound.net - it seems that the 'configure'-option '--with-libevent-support' is not enough: ***SNIP*** ... When building unbound with --with-libevent support, the make install phase should also call make unbound-event-install or else unbound-event.h does not get installed and the header file for using the unbound event functionality is not available. ... This install is triggered by the option --enable-event-api. Just enabling --with-libevent does not trigger the install by itself. Best regards, Wouter ... ***SNAP*** I built 'unbound' this way - its running without any problems so far. Best, Matthias Signed-off-by: Matthias Fischer Signed-off-by: Michael Tremer --- config/rootfiles/common/unbound | 1 + lfs/unbound | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/rootfiles/common/unbound b/config/rootfiles/common/unbound index a94ea25643..824567e1fa 100644 --- a/config/rootfiles/common/unbound +++ b/config/rootfiles/common/unbound @@ -6,6 +6,7 @@ etc/unbound/icannbundle.pem etc/unbound/local.d etc/unbound/root.hints etc/unbound/unbound.conf +#usr/include/unbound-event.h #usr/include/unbound.h #usr/lib/libunbound.la #usr/lib/libunbound.so diff --git a/lfs/unbound b/lfs/unbound index f361f24f02..d78bd95095 100644 --- a/lfs/unbound +++ b/lfs/unbound @@ -78,7 +78,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --with-pidfile=/var/run/unbound.pid \ --with-rootkey-file=/var/lib/unbound/root.key \ --disable-static \ - --with-libevent + --with-libevent \ + --enable-event-api + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install -- 2.39.2