mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
3e2c696e45
code. Yay! This first commit copies lib/ldb/ from Samba4. A huge congratulations should go to Simo on this - he has put an enormous amount of work into ldb, and it's great to see it go into the Samba3 tree. (This used to be commit bbedf2e34315f5c420a3a05dfe22b1d5cf79f042)
18 lines
408 B
Bash
Executable File
18 lines
408 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f configure config.h.in
|
|
|
|
IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
|
|
IPATHS="$IPATHS -I lib/talloc -I talloc -I ../talloc"
|
|
IPATHS="$IPATHS -I lib/tdb -I tdb -I ../tdb"
|
|
IPATHS="$IPATHS -I lib/popt -I popt -I ../popt"
|
|
autoheader $IPATHS || exit 1
|
|
autoconf $IPATHS || exit 1
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|
|
|