repo.or.cz
/
Samba
/
wip.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
s4:torture: avoid argv related const warnings
[Samba/wip.git]
/
lib
/
tdb_compat
/
wscript
blob
2eac1e92233bb872964b8cc6c96f379f85e6d8f6
1
#!/usr/bin/env python
2
3
import
Options
4
5
def
set_options
(
opt
):
6
opt
.
RECURSE
(
'lib/tdb'
)
7
8
def
configure
(
conf
):
9
conf
.
RECURSE
(
'lib/tdb'
)
10
11
def
build
(
bld
):
12
bld
.
RECURSE
(
'lib/tdb'
)
13
bld
.
SAMBA_LIBRARY
(
'tdb_compat'
,
14
source
=
'tdb_compat.c'
,
15
deps
=
'replace tdb'
,
16
private_library
=
True
)