• Home
  • History
  • Annotate
  • only in /external/chromium_org/third_party/libevent/
NameDateSize

..02-Jul-20154 KiB

aclocal.m402-Jul-2015263.1 KiB

android/02-Jul-20154 KiB

autogen.sh02-Jul-2015208

buffer.c02-Jul-20159.6 KiB

BUILD.gn02-Jul-2015859

ChangeLog02-Jul-201515.2 KiB

chromium.patch02-Jul-20154 KiB

compat/02-Jul-20154 KiB

config.guess02-Jul-201543.8 KiB

config.h.in02-Jul-20156.8 KiB

config.sub02-Jul-201532.6 KiB

configure02-Jul-2015790.4 KiB

configure.in02-Jul-20159.6 KiB

devpoll.c02-Jul-20159.9 KiB

epoll.c02-Jul-20158.8 KiB

epoll_sub.c02-Jul-20151.9 KiB

evbuffer.c02-Jul-201510.7 KiB

evdns.302-Jul-201511.3 KiB

evdns.c02-Jul-201584.4 KiB

evdns.h02-Jul-201518.5 KiB

event-config.h02-Jul-2015627

event-internal.h02-Jul-20153.4 KiB

event.302-Jul-201517.3 KiB

event.c02-Jul-201521.6 KiB

event.h02-Jul-201536.9 KiB

event_rpcgen.py02-Jul-201544.4 KiB

event_tagging.c02-Jul-20159.5 KiB

evhttp.h02-Jul-201511.3 KiB

evport.c02-Jul-201512.6 KiB

evrpc-internal.h02-Jul-20152.8 KiB

evrpc.c02-Jul-201515.9 KiB

evrpc.h02-Jul-201516 KiB

evsignal.h02-Jul-20152.1 KiB

evutil.c02-Jul-20156.8 KiB

evutil.h02-Jul-20155.4 KiB

freebsd/02-Jul-20154 KiB

http-internal.h02-Jul-20154.3 KiB

http.c02-Jul-201566.2 KiB

install-sh02-Jul-20154.7 KiB

kqueue.c02-Jul-201510.8 KiB

libevent.gyp02-Jul-20151.7 KiB

libevent.target.darwin-arm.mk02-Jul-20157 KiB

libevent.target.darwin-arm64.mk02-Jul-20156.5 KiB

libevent.target.darwin-mips.mk02-Jul-20156.7 KiB

libevent.target.darwin-mips64.mk02-Jul-20156.7 KiB

libevent.target.darwin-x86.mk02-Jul-20156.7 KiB

libevent.target.darwin-x86_64.mk02-Jul-20156.7 KiB

libevent.target.linux-arm.mk02-Jul-20157 KiB

libevent.target.linux-arm64.mk02-Jul-20156.5 KiB

libevent.target.linux-mips.mk02-Jul-20156.7 KiB

libevent.target.linux-mips64.mk02-Jul-20156.7 KiB

libevent.target.linux-x86.mk02-Jul-20156.7 KiB

libevent.target.linux-x86_64.mk02-Jul-20156.7 KiB

LICENSE02-Jul-20151.4 KiB

linux/02-Jul-20154 KiB

log.c02-Jul-20154.2 KiB

log.h02-Jul-20152.1 KiB

ltmain.sh02-Jul-2015195 KiB

mac/02-Jul-20154 KiB

Makefile.am02-Jul-20153.9 KiB

Makefile.in02-Jul-201532.8 KiB

min_heap.h02-Jul-20155.4 KiB

missing02-Jul-201510.4 KiB

mkinstalldirs02-Jul-2015719

poll.c02-Jul-20159 KiB

README02-Jul-20151 KiB

README.chromium02-Jul-2015764

sample/02-Jul-20154 KiB

select.c02-Jul-20158.9 KiB

signal.c02-Jul-20159 KiB

solaris/02-Jul-20154 KiB

strlcpy-internal.h02-Jul-2015348

strlcpy.c02-Jul-20152.5 KiB

test/02-Jul-20154 KiB

README

1To build libevent, type
2
3$ ./configure && make
4
5     (If you got libevent from the subversion repository, you will
6      first need to run the included "autogen.sh" script in order to
7      generate the configure script.)
8
9Install as root via
10
11# make install
12
13You can run the regression tests by
14
15$ make verify
16
17Before, reporting any problems, please run the regression tests.
18
19To enable the low-level tracing build the library as:
20
21CFLAGS=-DUSE_DEBUG ./configure [...]
22
23Acknowledgements:
24-----------------
25
26The following people have helped with suggestions, ideas, code or
27fixing bugs:
28
29  Alejo
30  Weston Andros Adamson
31  William Ahern
32  Stas Bekman
33  Andrew Danforth
34  Mike Davis
35  Shie Erlich
36  Alexander von Gernler
37  Artur Grabowski
38  Aaron Hopkins
39  Claudio Jeker
40  Scott Lamb
41  Adam Langley
42  Philip Lewis
43  David Libenzi
44  Nick Mathewson
45  Andrey Matveev
46  Richard Nyberg
47  Jon Oberheide
48  Phil Oleson
49  Dave Pacheco
50  Tassilo von Parseval
51  Pierre Phaneuf
52  Jon Poland
53  Bert JW Regeer
54  Dug Song
55  Taral
56
57If I have forgotten your name, please contact me.
58

README.chromium

1Name: libevent
2URL: http://www.monkey.org/~provos/libevent/
3Version: 1.4.13
4License: BSD
5Security Critical: yes
6
7Local Modifications:
8Rather than use libevent's own build system, we just build a Chrome
9static library using GYP.
10
111) Run configure and "make event-config.h" on Linux, FreeBSD, Solaris,
12   and Mac and copy config.h and event-config.h to linux/, freebsd/,
13   solaris/, and mac/ respectively.
142) Add libevent.gyp.
153) chromium.patch is applied to allow libevent to be used without
16   being installed and to fix a race condition.
174) The directories WIN32-Code and WIN32-Prj are not included.
185) Apply r87338.
196) The configs for android were copied from Linux's which were very close to
20   android one with the exception of HAVE_FD_MASK and HAVE_STRLCPY.
21