Last change
on this file was 745, checked in by Silvan Scherrer, 13 years ago |
Samba Server: updated trunk to 3.6.0
|
File size:
403 bytes
|
Line | |
---|
1 | #!/usr/bin/env python
|
---|
2 |
|
---|
3 | import Options
|
---|
4 |
|
---|
5 | def configure(conf):
|
---|
6 | if conf.CHECK_BUNDLED_SYSTEM('subunit', checkfunctions='subunit_test_start', headers='subunit/child.h'):
|
---|
7 | conf.define('USING_SYSTEM_SUBUNIT', 1)
|
---|
8 |
|
---|
9 | def build(bld):
|
---|
10 | if bld.CONFIG_SET('USING_SYSTEM_SUBUNIT'):
|
---|
11 | return
|
---|
12 |
|
---|
13 | bld.SAMBA_LIBRARY('subunit',
|
---|
14 | source='lib/child.c',
|
---|
15 | private_library=True,
|
---|
16 | includes='include')
|
---|
Note:
See
TracBrowser
for help on using the repository browser.