repo.or.cz
/
Samba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
autobuild: Do not consider IDL.pm and Expr.pm changes to make a build bad
[Samba.git]
/
third_party
/
zlib
/
wscript
blob
b221288e6c1927270e5f60c35c13be3035837c1a
1
#!/usr/bin/env python
2
3
def
configure
(
conf
):
4
if
conf
.
CHECK_ZLIB
():
5
conf
.
define
(
'USING_SYSTEM_ZLIB'
,
1
)
6
7
def
build
(
bld
):
8
if
bld
.
CONFIG_SET
(
'USING_SYSTEM_ZLIB'
):
9
return
10
11
bld
.
SAMBA_LIBRARY
(
'z'
,
12
private_library
=
True
,
13
deps
=
'replace'
,
14
allow_warnings
=
True
,
15
source
=
'''adler32.c compress.c crc32.c gzio.c
16
uncompr.c deflate.c trees.c zutil.c
17
inflate.c infback.c inftrees.c inffast.c'''
)