From e1903b4e1883c5aba2427634dac2da6dcc90dc1d Mon Sep 17 00:00:00 2001 From: Wheeze_NL Date: Thu, 3 Feb 2022 00:01:58 +0100 Subject: [PATCH] Update wscript --- wscript | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wscript b/wscript index c662692..c543104 100644 --- a/wscript +++ b/wscript @@ -99,9 +99,8 @@ def configure(conf): def build(bld): bld.stlib(source="database.c", target="database", use='glib-2.0') bld.stlib(source="status.c", target="status", use='glib-2.0') - bld.stlib(source="spacestate.c", target="spacestate", use='glib-2.0') bld.stlib(source="hook_script.c", target="hook_script", use='glib-2.0') - bld.stlib(source="config.c", target="config", use='glib-2.0 database jsonbot spacestate') + bld.stlib(source="config.c", target="config", use='glib-2.0 database jsonbot hook_script') bld.stlib(source="sia.c", target="sia", use='glib-2.0') bld.stlib(source="siahs.c", target="siahs", use='glib-2.0') bld.stlib(source="jsonbot.c", target="jsonbot", use='glib-2.0') @@ -109,12 +108,12 @@ def build(bld): bld.program( source = 'siahsd.c', target = 'siahsd', - use = [ 'database', 'config', 'status', 'sia', 'siahs', 'jsonbot', 'spacestate', 'dbi', 'talloc', 'glib-2.0', 'nettle' ]) + use = [ 'database', 'config', 'status', 'sia', 'siahs', 'jsonbot', 'hook_script', 'dbi', 'talloc', 'glib-2.0', 'nettle' ]) bld.program( source = 'secip.idl secipd.c crc16.c', target = 'secipd', - use = [ 'database', 'config', 'status', 'sia', 'siahs', 'jsonbot', 'spacestate', 'dbi', 'samba', 'glib-2.0', 'nettle', 'ndr' ]) + use = [ 'database', 'config', 'status', 'sia', 'siahs', 'jsonbot', 'hook_script', 'dbi', 'samba', 'glib-2.0', 'nettle', 'ndr' ]) bld.program( source = 'chiron.idl chirond.c', target = 'chirond',