Home | History | Annotate | only in /external/chromium/third_party/libevent
Up to higher level directory
NameDateSize
aclocal.m420-Jun-2014263.1K
android/20-Jun-2014
Android.mk20-Jun-2014623
autogen.sh20-Jun-2014208
buffer.c20-Jun-20149.6K
ChangeLog20-Jun-201415.2K
chromium.patch20-Jun-20141.5K
compat/20-Jun-2014
config.guess20-Jun-201443.8K
config.h.in20-Jun-20146.8K
config.sub20-Jun-201432.6K
configure20-Jun-2014790.4K
configure.in20-Jun-20149.6K
devpoll.c20-Jun-20149.9K
epoll.c20-Jun-20148.8K
epoll_sub.c20-Jun-20141.9K
evbuffer.c20-Jun-201410.7K
evdns.320-Jun-201411.3K
evdns.c20-Jun-201484.4K
evdns.h20-Jun-201418.5K
event-config.h20-Jun-2014614
event-internal.h20-Jun-20143.4K
event.320-Jun-201417.3K
event.c20-Jun-201421.8K
event.h20-Jun-201436.9K
event_rpcgen.py20-Jun-201444.4K
event_tagging.c20-Jun-20149.5K
evhttp.h20-Jun-201411.3K
evport.c20-Jun-201412.6K
evrpc-internal.h20-Jun-20142.8K
evrpc.c20-Jun-201415.9K
evrpc.h20-Jun-201416K
evsignal.h20-Jun-20142.1K
evutil.c20-Jun-20146.8K
evutil.h20-Jun-20145.4K
http-internal.h20-Jun-20144.3K
http.c20-Jun-201466.2K
install-sh20-Jun-20144.7K
kqueue.c20-Jun-201410.8K
libevent.gyp20-Jun-20142.3K
LICENSE20-Jun-20141.4K
linux/20-Jun-2014
log.c20-Jun-20144.2K
log.h20-Jun-20142.1K
ltmain.sh20-Jun-2014195K
mac/20-Jun-2014
Makefile.am20-Jun-20143.9K
Makefile.in20-Jun-201432.8K
min_heap.h20-Jun-20145.4K
missing20-Jun-201410.4K
mkinstalldirs20-Jun-2014719
MODULE_LICENSE_BSD_LIKE20-Jun-20140
NOTICE20-Jun-20141.4K
poll.c20-Jun-20149K
README20-Jun-20141K
README.chromium20-Jun-2014538
sample/20-Jun-2014
select.c20-Jun-20148.9K
signal.c20-Jun-20149K
strlcpy-internal.h20-Jun-2014348
strlcpy.c20-Jun-20142.5K
test/20-Jun-2014
ThirdPartyProject.prop20-Jun-2014160

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 
      6 Local Modifications:
      7 Rather than use libevent's own build system, we just build a Chrome
      8 static library using GYP.
      9 
     10 1) Run configure and "make event-config.h" on a Linux, FreeBSD, and
     11    Mac box and copy config.h and event-config.h to linux/, freebsd/,
     12    and mac/ respectively.
     13 2) Add libevent.gyp.
     14 3) chromium.patch is applied to allow libevent to be used without
     15    being installed.
     16 4) The directories WIN32-Code and WIN32-Prj are not included.
     17