summaryrefslogtreecommitdiffstats
path: root/lasso/extract_symbols.py
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2005-03-18 20:58:34 +0000
committerFrederic Peters <fpeters@entrouvert.com>2005-03-18 20:58:34 +0000
commit5ef972b27e434990cb0c3b7e242a917ab0830b57 (patch)
treec1c8c7f8e83650f6a53b12632c890b43a3d692b4 /lasso/extract_symbols.py
parent612285913d660ef627e52fdd27e6517f8c39de39 (diff)
downloadlasso-5ef972b27e434990cb0c3b7e242a917ab0830b57.tar.gz
lasso-5ef972b27e434990cb0c3b7e242a917ab0830b57.tar.xz
lasso-5ef972b27e434990cb0c3b7e242a917ab0830b57.zip
don't compile id-wsf files when wsf is disabled; this cuts down build
time by a nice margin.
Diffstat (limited to 'lasso/extract_symbols.py')
-rw-r--r--lasso/extract_symbols.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lasso/extract_symbols.py b/lasso/extract_symbols.py
index 5c3ff8ca..2239f9a7 100644
--- a/lasso/extract_symbols.py
+++ b/lasso/extract_symbols.py
@@ -20,8 +20,9 @@ symbols = []
for header_file in glob.glob('%s/*/*.h' % srcdir) + glob.glob('%s/*.h' % srcdir):
symbols.extend(regex.findall(file(header_file).read().replace('\\\n', '')))
-wsf = ['lasso_disco', 'lasso_dst', 'lasso_is', 'lasso_profile_service',
- 'lasso_discovery', 'lasso_wsf', 'lasso_interaction', 'lasso_utility' ]
+wsf = ['lasso_disco_', 'lasso_dst_', 'lasso_is_', 'lasso_profile_service',
+ 'lasso_discovery', 'lasso_wsf', 'lasso_interaction', 'lasso_utility',
+ 'lasso_sa_', 'lasso_soap_', 'lasso_authentication' ]
if enable_wsf:
wsf = []