]> git.ipfire.org Git - thirdparty/samba.git/blame - configure
smbd: Use direct struct initialization in smbXsrv_client
[thirdparty/samba.git] / configure
CommitLineData
72e1a39e
AT
1#!/bin/sh
2
a9eebca9 3PREVPATH=$(dirname $0)
72e1a39e
AT
4
5WAF=./buildtools/bin/waf
6
7# using JOBS=1 gives maximum compatibility with
8# systems like AIX which have broken threading in python
9JOBS=1
10export JOBS
11
644e53d6
AS
12# Make sure we don't have any library preloaded.
13unset LD_PRELOAD
14
22c46d9f
SM
15# Make sure we get stable hashes
16PYTHONHASHSEED=1
17export PYTHONHASHSEED
18
72e1a39e 19cd . || exit 1
e608dcd2 20$PYTHON $WAF configure "$@" || exit 1
72e1a39e 21cd $PREVPATH