mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
f93440c4b7
In Samba this is now called "tevent", and while we use the backwards
compatibility wrappers they don't offer EVENT_FD_AUTOCLOSE: that is now
a separate tevent_fd_set_auto_close() function.
This is based on Samba version 7f29f817fa
.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
(This used to be ctdb commit 85e5e760cc91eb3157d3a88996ce474491646726)
20 lines
448 B
Bash
Executable File
20 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f configure config.h.in ctdb.pc
|
|
|
|
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"
|
|
IPATHS="$IPATHS -I lib/tevent"
|
|
|
|
autoheader $IPATHS || exit 1
|
|
autoconf $IPATHS || exit 1
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
echo "Now run ./configure and then make."
|
|
exit 0
|
|
|