summaryrefslogtreecommitdiff
path: root/lib/tevent
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-05-22 12:23:20 +1000
committerAndrew Bartlett <abartlet@samba.org>2013-05-28 12:17:10 +1000
commitcd4b413cb0574c459c1c24cf07f8d6b44f5fc077 (patch)
tree692104ce22e21cb0e8320b5c7aa9c4c2102eafc0 /lib/tevent
parent97cceb5f8b9fc68cb8942092e92fde2b965883e4 (diff)
downloadsamba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.gz
samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.tar.bz2
samba-cd4b413cb0574c459c1c24cf07f8d6b44f5fc077.zip
build: Remove autoconf build system
We are now confident that that waf build system meets enough of our needs that we will work to improve it, rather than maintain two build systems. Andrew Bartlett Reviewed-by: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'lib/tevent')
-rw-r--r--lib/tevent/libtevent.m475
1 files changed, 0 insertions, 75 deletions
diff --git a/lib/tevent/libtevent.m4 b/lib/tevent/libtevent.m4
deleted file mode 100644
index 4d4fd2bd77..0000000000
--- a/lib/tevent/libtevent.m4
+++ /dev/null
@@ -1,75 +0,0 @@
-dnl find the tevent sources. This is meant to work both for
-dnl standalone builds, and builds of packages using libtevent
-
-AC_SUBST(teventdir)
-
-if test x"$teventdir" = "x"; then
- teventdir=""
- teventpaths="$srcdir $srcdir/../lib/tevent $srcdir/tevent $srcdir/../tevent"
- for d in $teventpaths; do
- if test -f "$d/tevent.c"; then
- teventdir="$d"
- break;
- fi
- done
- if test x"$teventdir" = "x"; then
- AC_MSG_ERROR([cannot find libtevent source in $teventpaths])
- fi
-fi
-
-TEVENT_OBJ=""
-TEVENT_CFLAGS=""
-TEVENT_LIBS=""
-AC_SUBST(TEVENT_OBJ)
-AC_SUBST(TEVENT_CFLAGS)
-AC_SUBST(TEVENT_LIBS)
-
-TEVENT_CFLAGS="-I$teventdir"
-
-TEVENT_OBJ="tevent.o tevent_debug.o tevent_util.o"
-TEVENT_OBJ="$TEVENT_OBJ tevent_fd.o tevent_timed.o tevent_immediate.o tevent_signal.o"
-TEVENT_OBJ="$TEVENT_OBJ tevent_req.o tevent_wakeup.o tevent_queue.o"
-TEVENT_OBJ="$TEVENT_OBJ tevent_standard.o tevent_select.o"
-TEVENT_OBJ="$TEVENT_OBJ tevent_poll.o"
-
-AC_CHECK_HEADERS(sys/epoll.h)
-AC_CHECK_FUNCS(epoll_create)
-if test x"$ac_cv_header_sys_epoll_h" = x"yes" -a x"$ac_cv_func_epoll_create" = x"yes"; then
- TEVENT_OBJ="$TEVENT_OBJ tevent_epoll.o"
- AC_DEFINE(HAVE_EPOLL, 1, [Whether epoll available])
-fi
-
-tevent_num_signals_includes="$ac_includes_default
-#include <signal.h>
-"
-tevent_num_signals=64
-AC_CHECK_VALUEOF(NSIG, [$tevent_num_signals_includes])
-v=$ac_cv_valueof_NSIG
-test -n "$v" && test "$v" -gt "$tevent_num_signals" && {
- tevent_num_signals=$v
-}
-AC_CHECK_VALUEOF(_NSIG, [$tevent_num_signals_includes])
-v=$ac_cv_valueof__NSIG
-test -n "$v" && test "$v" -gt "$tevent_num_signals" && {
- tevent_num_signals=$v
-}
-AC_CHECK_VALUEOF(SIGRTMAX, [$tevent_num_signals_includes])
-v=$ac_cv_valueof_SIGRTMAX
-test -n "$v" && test "$v" -gt "$tevent_num_signals" && {
- tevent_num_signals=$v
-}
-AC_CHECK_VALUEOF(SIGRTMIN, [$tevent_num_signals_includes])
-v=$ac_cv_valueof_SIGRTMIN
-test -n "$v" && {
- v=`expr $v + $v`
-}
-test -n "$v" && test "$v" -gt "$tevent_num_signals" && {
- tevent_num_signals=$v
-}
-AC_DEFINE_UNQUOTED(TEVENT_NUM_SIGNALS, $tevent_num_signals, [Max signal number value])
-
-if test x"$VERSIONSCRIPT" != "x"; then
- EXPORTSFILE=tevent.exports
- AC_SUBST(EXPORTSFILE)
-fi
-