mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
#664: libunbound-Python: libldns is not used anymore.
git-svn-id: file:///svn/unbound/trunk@3402 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
f5442e9c5b
commit
da612901d7
2 changed files with 3 additions and 5 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
- Fix bug#664: libunbound python3 related fixes (from Tomas Hozza)
|
- Fix bug#664: libunbound python3 related fixes (from Tomas Hozza)
|
||||||
Use print_function also for Python2.
|
Use print_function also for Python2.
|
||||||
libunbound examples: produce sorted output.
|
libunbound examples: produce sorted output.
|
||||||
|
libunbound-Python: libldns is not used anymore.
|
||||||
|
|
||||||
10 April 2015: Wouter
|
10 April 2015: Wouter
|
||||||
- unbound-control ratelimit_list lists high rate domains.
|
- unbound-control ratelimit_list lists high rate domains.
|
||||||
|
|
|
||||||
|
|
@ -48,17 +48,14 @@ help:
|
||||||
#../../.libs/libunbound.so.0: ../../Makefile
|
#../../.libs/libunbound.so.0: ../../Makefile
|
||||||
#$(MAKE) -C ../..
|
#$(MAKE) -C ../..
|
||||||
|
|
||||||
#../../ldns-src/lib/libldns.so: ../../ldns-src/Makefile
|
|
||||||
#$(MAKE) -C ../../ldns-src
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rdf examples/unbound
|
rm -rdf examples/unbound
|
||||||
rm -f _unbound.so libunbound_wrap.o
|
rm -f _unbound.so libunbound_wrap.o
|
||||||
$(MAKE) -C ../.. clean
|
$(MAKE) -C ../.. clean
|
||||||
|
|
||||||
testenv: ../../.libs/libunbound.so.2 ../../ldns-src/lib/libldns.so ../../.libs/_unbound.so
|
testenv: ../../.libs/libunbound.so.2 ../../.libs/_unbound.so
|
||||||
rm -rdf examples/unbound
|
rm -rdf examples/unbound
|
||||||
cd examples && mkdir unbound && ln -s ../../unbound.py unbound/__init__.py && ln -s ../../_unbound.so unbound/_unbound.so && ln -s ../../../../.libs/libunbound.so.2 unbound/libunbound.so.2 && ln -s ../../../../ldns-src/lib/libldns.so.1 unbound/libldns.so.1 && ls -la
|
cd examples && mkdir unbound && ln -s ../../unbound.py unbound/__init__.py && ln -s ../../_unbound.so unbound/_unbound.so && ln -s ../../../../.libs/libunbound.so.2 unbound/libunbound.so.2 && ls -la
|
||||||
cd examples && if test -f ../../../.libs/_unbound.so; then cp ../../../.libs/_unbound.so . ; fi
|
cd examples && if test -f ../../../.libs/_unbound.so; then cp ../../../.libs/_unbound.so . ; fi
|
||||||
@echo "Run a script by typing ./script_name.py"
|
@echo "Run a script by typing ./script_name.py"
|
||||||
cd examples && LD_LIBRARY_PATH=unbound bash
|
cd examples && LD_LIBRARY_PATH=unbound bash
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue