1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
dnl Copyright (C) 2009 Sun Microsystems, Inc.
dnl This file is free software; Sun Microsystems, Inc.
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
#--------------------------------------------------------------------
# Check for libevent
#--------------------------------------------------------------------
AC_DEFUN([_PANDORA_SEARCH_LIBEVENT],[
AC_REQUIRE([AC_LIB_PREFIX])
AC_LIB_HAVE_LINKFLAGS(event,,
[
#include <sys/types.h>
#include <sys/time.h>
#include <stdlib.h>
#include <event.h>
],[
struct bufferevent bev;
bufferevent_settimeout(&bev, 1, 1);
event_init();
event_loop(EVLOOP_ONCE);
])
AM_CONDITIONAL(HAVE_LIBEVENT, [test "x${ac_cv_libevent}" = "xyes"])
AS_IF([test "x${ac_cv_libevent}" = "xyes"],[
save_LIBS="${LIBS}"
LIBS="${LIBS} ${LTLIBEVENT}"
AC_CHECK_FUNCS(event_base_new)
AC_CHECK_FUNCS(event_base_free)
AC_CHECK_FUNCS(event_base_get_method)
LIBS="$save_LIBS"
])
])
AC_DEFUN([_PANDORA_HAVE_LIBEVENT],[
AC_ARG_ENABLE([libevent],
[AS_HELP_STRING([--disable-libevent],
[Build with libevent support @<:@default=on@:>@])],
[ac_enable_libevent="$enableval"],
[ac_enable_libevent="yes"])
_PANDORA_SEARCH_LIBEVENT
])
AC_DEFUN([PANDORA_HAVE_LIBEVENT],[
AC_REQUIRE([_PANDORA_HAVE_LIBEVENT])
])
AC_DEFUN([_PANDORA_REQUIRE_LIBEVENT],[
ac_enable_libevent="yes"
_PANDORA_SEARCH_LIBEVENT
AS_IF([test x$ac_cv_libevent = xno],[
AC_MSG_ERROR([libevent is required for ${PACKAGE}. On Debian this can be found in libevent-dev. On RedHat this can be found in libevent-devel.])
])
])
AC_DEFUN([PANDORA_REQUIRE_LIBEVENT],[
AC_REQUIRE([_PANDORA_REQUIRE_LIBEVENT])
])
|