1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

ldb: make ldb a top level library for Samba 4.0

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Andrew Bartlett 2011-07-05 10:01:32 +10:00
parent c9a6dd56e4
commit 8420a36dc7
156 changed files with 16 additions and 16 deletions

View File

@ -62,7 +62,7 @@ policy:
pass. Larger commits require discussion on samba-technical
list and review by the maintainer
files: lib/tevent/py*, lib/talloc/py*, source4/lib/ldb/py*, lib/tdb/py*
files: lib/tevent/py*, lib/talloc/py*, lib/ldb/py*, lib/tdb/py*
maintainers:
Jelmer Vernooij <jelmer@samba.org>
policy:

View File

@ -11,7 +11,7 @@ PREFIX=$HOME/testprefix
if [ $# -gt 0 ]; then
tests="$*"
else
tests="lib/replace lib/talloc lib/tevent lib/tdb source4/lib/ldb"
tests="lib/replace lib/talloc lib/tevent lib/tdb lib/ldb"
fi
echo "testing in dirs $tests"
@ -27,7 +27,7 @@ for d in $tests; do
make install
make distcheck
case $d in
"source4/lib/ldb")
"lib/ldb")
ldd bin/ldbadd
;;
"lib/replace")

View File

@ -1,6 +1,6 @@
# simple makefile wrapper to run waf
WAF=WAF_MAKE=1 PATH=buildtools/bin:../../../buildtools/bin:$$PATH waf
WAF=WAF_MAKE=1 PATH=buildtools/bin:../../buildtools/bin:$$PATH waf
all:
$(WAF) build

View File

@ -2,8 +2,8 @@
PREVPATH=`dirname $0`
if [ -f $PREVPATH/../../../buildtools/bin/waf ]; then
WAF=../../../buildtools/bin/waf
if [ -f $PREVPATH/../../buildtools/bin/waf ]; then
WAF=../../buildtools/bin/waf
elif [ -f $PREVPATH/buildtools/bin/waf ]; then
WAF=./buildtools/bin/waf
else

Some files were not shown because too many files have changed in this diff Show More