From 720a407b59cc2e2a346bddbe62e5de81df03617e Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 3 Sep 2008 23:24:59 +0200 Subject: [PATCH] nsc: Fix build problem if gtk config store is disabled gtk config store pulled in libdl.so for us, so things fail to link of the config store isn't enabled. This makes nsc pull in libdl itself when its enabled. --- src/internet-stack/wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/src/internet-stack/wscript b/src/internet-stack/wscript index fed2b8520..f932574c7 100644 --- a/src/internet-stack/wscript +++ b/src/internet-stack/wscript @@ -105,3 +105,4 @@ def build(bld): obj.source.append ('nsc-tcp-l4-protocol.cc') obj.source.append ('nsc-tcp-socket-factory-impl.cc') obj.source.append ('nsc-sysctl.cc') + obj.uselib = 'DL'