Browse Source

[master] fix for debian/freebsd unittest linker problem

Jelte Jansen 13 years ago
parent
commit
c24c42a5e2
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/lib/python/isc/__init__.py

+ 5 - 2
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