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