Home | History | Annotate | only in /external/chromium/third_party/libevent
Up to higher level directory
NameDateSize
aclocal.m415-Nov-2011263.1K
android/15-Nov-2011
Android.mk15-Nov-2011623
autogen.sh15-Nov-2011208
buffer.c15-Nov-20119.6K
ChangeLog15-Nov-201115.2K
chromium.patch15-Nov-20111.5K
compat/15-Nov-2011
config.guess15-Nov-201143.8K
config.h.in15-Nov-20116.8K
config.sub15-Nov-201132.6K
configure15-Nov-2011790.4K
configure.in15-Nov-20119.6K
devpoll.c15-Nov-20119.9K
epoll.c15-Nov-20118.8K
epoll_sub.c15-Nov-20111.9K
evbuffer.c15-Nov-201110.7K
evdns.315-Nov-201111.3K
evdns.c15-Nov-201184.4K
evdns.h15-Nov-201118.5K
event-config.h15-Nov-2011614
event-internal.h15-Nov-20113.4K
event.315-Nov-201117.3K
event.c15-Nov-201121.8K
event.h15-Nov-201136.9K
event_rpcgen.py15-Nov-201144.4K
event_tagging.c15-Nov-20119.5K
evhttp.h15-Nov-201111.3K
evport.c15-Nov-201112.6K
evrpc-internal.h15-Nov-20112.8K
evrpc.c15-Nov-201115.9K
evrpc.h15-Nov-201116K
evsignal.h15-Nov-20112.1K
evutil.c15-Nov-20116.8K
evutil.h15-Nov-20115.4K
http-internal.h15-Nov-20114.3K
http.c15-Nov-201166.2K
install-sh15-Nov-20114.7K
kqueue.c15-Nov-201110.8K
libevent.gyp15-Nov-20112.3K
LICENSE15-Nov-20111.4K
linux/15-Nov-2011
log.c15-Nov-20114.2K
log.h15-Nov-20112.1K
ltmain.sh15-Nov-2011195K
mac/15-Nov-2011
Makefile.am15-Nov-20113.9K
Makefile.in15-Nov-201132.8K
min_heap.h15-Nov-20115.4K
missing15-Nov-201110.4K
mkinstalldirs15-Nov-2011719
MODULE_LICENSE_BSD_LIKE15-Nov-20110
NOTICE15-Nov-20111.4K
poll.c15-Nov-20119K
README15-Nov-20111K
README.chromium15-Nov-2011538
sample/15-Nov-2011
select.c15-Nov-20118.9K
signal.c15-Nov-20119K
strlcpy-internal.h15-Nov-2011348
strlcpy.c15-Nov-20112.5K
test/15-Nov-2011
ThirdPartyProject.prop15-Nov-2011160

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