~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pool_of_threads/plugin.ac

Merged up with trunk properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_LIB_HAVE_LINKFLAGS(event,,
 
2
  [
 
3
  #include <sys/types.h>
 
4
  #include <sys/time.h>
 
5
  #include <stdlib.h>
 
6
  #include <event.h>
 
7
  ],[
 
8
    struct bufferevent bev;
 
9
    bufferevent_settimeout(&bev, 1, 1);
 
10
    event_init();
 
11
    event_loop(EVLOOP_ONCE);
 
12
  ])