Home | History | Annotate | only in /external/chromium_org/third_party/libevent
Up to higher level directory
NameDateSize
aclocal.m403-Dec-2014263.1K
android/03-Dec-2014
autogen.sh03-Dec-2014208
buffer.c03-Dec-20149.6K
BUILD.gn03-Dec-2014859
ChangeLog03-Dec-201415.2K
chromium.patch03-Dec-20144K
compat/03-Dec-2014
config.guess03-Dec-201443.8K
config.h.in03-Dec-20146.8K
config.sub03-Dec-201432.6K
configure03-Dec-2014790.4K
configure.in03-Dec-20149.6K
devpoll.c03-Dec-20149.9K
epoll.c03-Dec-20148.8K
epoll_sub.c03-Dec-20141.9K
evbuffer.c03-Dec-201410.7K
evdns.303-Dec-201411.3K
evdns.c03-Dec-201484.4K
evdns.h03-Dec-201418.5K
event-config.h03-Dec-2014627
event-internal.h03-Dec-20143.4K
event.303-Dec-201417.3K
event.c03-Dec-201421.6K
event.h03-Dec-201436.9K
event_rpcgen.py03-Dec-201444.4K
event_tagging.c03-Dec-20149.5K
evhttp.h03-Dec-201411.3K
evport.c03-Dec-201412.6K
evrpc-internal.h03-Dec-20142.8K
evrpc.c03-Dec-201415.9K
evrpc.h03-Dec-201416K
evsignal.h03-Dec-20142.1K
evutil.c03-Dec-20146.8K
evutil.h03-Dec-20145.4K
freebsd/03-Dec-2014
http-internal.h03-Dec-20144.3K
http.c03-Dec-201466.2K
install-sh03-Dec-20144.7K
kqueue.c03-Dec-201410.8K
libevent.gyp03-Dec-20141.7K
libevent.target.darwin-arm.mk03-Dec-20147.7K
libevent.target.darwin-arm64.mk03-Dec-20147K
libevent.target.darwin-mips.mk03-Dec-20147.3K
libevent.target.darwin-x86.mk03-Dec-20147.3K
libevent.target.darwin-x86_64.mk03-Dec-20147.3K
libevent.target.linux-arm.mk03-Dec-20147.7K
libevent.target.linux-arm64.mk03-Dec-20147K
libevent.target.linux-mips.mk03-Dec-20147.3K
libevent.target.linux-x86.mk03-Dec-20147.3K
libevent.target.linux-x86_64.mk03-Dec-20147.3K
LICENSE03-Dec-20141.4K
linux/03-Dec-2014
log.c03-Dec-20144.2K
log.h03-Dec-20142.1K
ltmain.sh03-Dec-2014195K
mac/03-Dec-2014
Makefile.am03-Dec-20143.9K
Makefile.in03-Dec-201432.8K
min_heap.h03-Dec-20145.4K
missing03-Dec-201410.4K
mkinstalldirs03-Dec-2014719
poll.c03-Dec-20149K
README03-Dec-20141K
README.chromium03-Dec-2014764
sample/03-Dec-2014
select.c03-Dec-20148.9K
signal.c03-Dec-20149K
solaris/03-Dec-2014
strlcpy-internal.h03-Dec-2014348
strlcpy.c03-Dec-20142.5K
test/03-Dec-2014

README

      1 To 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 
      9 Install as root via
     10 
     11 # make install
     12 
     13 You can run the regression tests by
     14 
     15 $ make verify
     16 
     17 Before, reporting any problems, please run the regression tests.
     18 
     19 To enable the low-level tracing build the library as:
     20 
     21 CFLAGS=-DUSE_DEBUG ./configure [...]
     22 
     23 Acknowledgements:
     24 -----------------
     25 
     26 The following people have helped with suggestions, ideas, code or
     27 fixing 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 
     57 If I have forgotten your name, please contact me.
     58 

README.chromium

      1 Name: libevent
      2 URL: http://www.monkey.org/~provos/libevent/
      3 Version: 1.4.13
      4 License: BSD
      5 Security Critical: yes
      6 
      7 Local Modifications:
      8 Rather than use libevent's own build system, we just build a Chrome
      9 static library using GYP.
     10 
     11 1) 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.
     14 2) Add libevent.gyp.
     15 3) chromium.patch is applied to allow libevent to be used without
     16    being installed and to fix a race condition.
     17 4) The directories WIN32-Code and WIN32-Prj are not included.
     18 5) Apply r87338.
     19 6) 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