updated unbound compile steps

This commit is contained in:
Glen Wiley 2014-02-03 17:02:53 -05:00
parent c80b24442b
commit f709199d5b
2 changed files with 4 additions and 4 deletions

View File

@ -64,9 +64,9 @@ Assuming that the getdns sources are in a diretory named getdns in your home dir
``` ```
# mkdir unbound # mkdir unbound
# cd unbound # cd unbound
# svn export -r 3023 http://unbound.nlnetlabs.nl/svn/trunk # svn export -r 3069 http://unbound.nlnetlabs.nl/svn/trunk
# cd trunk # cd trunk
# ./configure --with-libevent --with-libunbound-only # ./configure --with-libevent --with-libunbound-only --enable-event-api
### add --disable-gost --disable-ecdsa if elliptic curves are disabled for you. ### add --disable-gost --disable-ecdsa if elliptic curves are disabled for you.
# make # make
# make install # make install

View File

@ -190,8 +190,8 @@ main(int argc, char *argv[])
dispatch_return = event_base_dispatch(this_event_base); dispatch_return = event_base_dispatch(this_event_base);
UNUSED_PARAM(dispatch_return); if(dispatch_return < 0)
// TODO: check the return value above fprintf(stderr, "event_base_dispatch() failed, returned %d\n", dispatch_return);
} }
/* Clean up */ /* Clean up */