Fix double linking in waf, add TODO item.
This commit is contained in:
parent
9fd10dec9c
commit
172d47b6da
2 changed files with 3 additions and 2 deletions
1
siahsd.c
1
siahsd.c
|
@ -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
|
||||||
|
|
4
wscript
4
wscript
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue