From 172d47b6da6259a0fae249afb64fbf15fea1df3d Mon Sep 17 00:00:00 2001 From: Wilco Baan Hofman Date: Sat, 4 Aug 2012 22:26:07 +0200 Subject: [PATCH] Fix double linking in waf, add TODO item. --- siahsd.c | 1 + wscript | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/siahsd.c b/siahsd.c index d12a855..4e6da14 100644 --- a/siahsd.c +++ b/siahsd.c @@ -22,6 +22,7 @@ /* TODO: + * - Move this interface file to pidl generated interface * - Add event connection to jsonbot * - Keep PROM state and monitor keepalives * - Make a load balancer that balances REGISTRATION REQUESTS to the proper port diff --git a/wscript b/wscript index 0cd3bf9..6f91dc0 100644 --- a/wscript +++ b/wscript @@ -94,12 +94,12 @@ def build(bld): bld.stlib(source="sia.c", target="sia", use='glib-2.0') bld.program( - source = 'config.c status.c sia.c siahsd.c', + source = 'siahsd.c', target = 'siahsd', use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0' ]) bld.program( - source = 'secip.idl config.c status.c sia.c secipd.c crc16.c', + source = 'secip.idl secipd.c crc16.c', target = 'secipd', use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0', 'nettle', 'ndr' ]) pass