BIND 10 master, updated. c24c42a5e29444313efee6528f172ad66452050d [master] fix for debian/freebsd unittest linker problem
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Sep 28 14:45:29 UTC 2011
The branch, master has been updated
via c24c42a5e29444313efee6528f172ad66452050d (commit)
from 05eaa177051b212669c2a7b9e2194c3e9ba47f14 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c24c42a5e29444313efee6528f172ad66452050d
Author: Jelte Jansen <jelte at isc.org>
Date: Wed Sep 28 14:14:48 2011 +0000
[master] fix for debian/freebsd unittest linker problem
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/__init__.py | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/__init__.py b/src/lib/python/isc/__init__.py
index 8fcbf42..ba5ebb0 100644
--- a/src/lib/python/isc/__init__.py
+++ b/src/lib/python/isc/__init__.py
@@ -1,4 +1,7 @@
-import isc.datasrc
+# On some systems, it appears the dynamic linker gets
+# confused if the order is not right here
+# There is probably a solution for this, but for now:
+# order is imporant here!
import isc.cc
import isc.config
-#import isc.dns
+import isc.datasrc
More information about the bind10-changes
mailing list