Fix double linking in waf, add TODO item.

This commit is contained in:
Wilco Baan Hofman 2012-08-04 22:26:07 +02:00
parent 9fd10dec9c
commit 172d47b6da
2 changed files with 3 additions and 2 deletions

View file

@ -22,6 +22,7 @@
/* TODO: /* TODO:
* - Move this interface file to pidl generated interface
* - Add event connection to jsonbot * - Add event connection to jsonbot
* - Keep PROM state and monitor keepalives * - Keep PROM state and monitor keepalives
* - Make a load balancer that balances REGISTRATION REQUESTS to the proper port * - Make a load balancer that balances REGISTRATION REQUESTS to the proper port

View file

@ -94,12 +94,12 @@ def build(bld):
bld.stlib(source="sia.c", target="sia", use='glib-2.0') bld.stlib(source="sia.c", target="sia", use='glib-2.0')
bld.program( bld.program(
source = 'config.c status.c sia.c siahsd.c', source = 'siahsd.c',
target = 'siahsd', target = 'siahsd',
use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0' ]) use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0' ])
bld.program( bld.program(
source = 'secip.idl config.c status.c sia.c secipd.c crc16.c', source = 'secip.idl secipd.c crc16.c',
target = 'secipd', target = 'secipd',
use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0', 'nettle', 'ndr' ]) use = [ 'database', 'config', 'status', 'sia', 'dbi', 'talloc','glib-2.0', 'nettle', 'ndr' ])
pass pass