Home | History | Annotate | only in /external/chromium_org/third_party/libevent
Up to higher level directory
NameDateSize
aclocal.m411-Dec-2013263.1K
android/11-Dec-2013
autogen.sh11-Dec-2013208
buffer.c11-Dec-20139.6K
ChangeLog11-Dec-201315.2K
chromium.patch11-Dec-20132.2K
compat/11-Dec-2013
config.guess11-Dec-201343.8K
config.h.in11-Dec-20136.8K
config.sub11-Dec-201332.6K
configure11-Dec-2013790.4K
configure.in11-Dec-20139.6K
devpoll.c11-Dec-20139.9K
epoll.c11-Dec-20138.8K
epoll_sub.c11-Dec-20131.9K
evbuffer.c11-Dec-201310.7K
evdns.311-Dec-201311.3K
evdns.c11-Dec-201384.4K
evdns.h11-Dec-201318.5K
event-config.h11-Dec-2013627
event-internal.h11-Dec-20133.4K
event.311-Dec-201317.3K
event.c11-Dec-201321.8K
event.h11-Dec-201336.9K
event_rpcgen.py11-Dec-201344.4K
event_tagging.c11-Dec-20139.5K
evhttp.h11-Dec-201311.3K
evport.c11-Dec-201312.6K
evrpc-internal.h11-Dec-20132.8K
evrpc.c11-Dec-201315.9K
evrpc.h11-Dec-201316K
evsignal.h11-Dec-20132.1K
evutil.c11-Dec-20136.8K
evutil.h11-Dec-20135.4K
freebsd/11-Dec-2013
http-internal.h11-Dec-20134.3K
http.c11-Dec-201366.2K
install-sh11-Dec-20134.7K
kqueue.c11-Dec-201310.8K
libevent.gyp11-Dec-20131.9K
libevent.target.darwin-arm.mk11-Dec-20136.1K
libevent.target.darwin-mips.mk11-Dec-20136K
libevent.target.darwin-x86.mk11-Dec-20136.1K
libevent.target.linux-arm.mk11-Dec-20136.1K
libevent.target.linux-mips.mk11-Dec-20136K
libevent.target.linux-x86.mk11-Dec-20136.1K
LICENSE11-Dec-20131.4K
linux/11-Dec-2013
log.c11-Dec-20134.2K
log.h11-Dec-20132.1K
ltmain.sh11-Dec-2013195K
mac/11-Dec-2013
Makefile.am11-Dec-20133.9K
Makefile.in11-Dec-201332.8K
min_heap.h11-Dec-20135.4K
missing11-Dec-201310.4K
mkinstalldirs11-Dec-2013719
poll.c11-Dec-20139K
README11-Dec-20131K
README.chromium11-Dec-2013736
sample/11-Dec-2013
select.c11-Dec-20138.9K
signal.c11-Dec-20139K
solaris/11-Dec-2013
strlcpy-internal.h11-Dec-2013348
strlcpy.c11-Dec-20132.5K
test/11-Dec-2013

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.
     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