NameDateSize

..11-Jun-201812 KiB

aclocal.m411-Jun-201835.6 KiB

Android.bp11-Jun-20181.9 KiB

arc4random.c11-Jun-201812.8 KiB

autogen.sh11-Jun-2018308

buffer.c11-Jun-201872.5 KiB

buffer_iocp.c11-Jun-20188.4 KiB

bufferevent-internal.h11-Jun-201815.4 KiB

bufferevent.c11-Jun-201822 KiB

bufferevent_async.c11-Jun-201817.8 KiB

bufferevent_filter.c11-Jun-201814.7 KiB

bufferevent_openssl.c11-Jun-201837.1 KiB

bufferevent_pair.c11-Jun-20188.6 KiB

bufferevent_ratelim.c11-Jun-201827.9 KiB

bufferevent_sock.c11-Jun-201817.4 KiB

changelist-internal.h11-Jun-20184.5 KiB

ChangeLog11-Jun-201889.5 KiB

CleanSpec.mk11-Jun-20182.2 KiB

compile11-Jun-20187.1 KiB

config.guess11-Jun-201843.8 KiB

config.h.in11-Jun-201811.8 KiB

config.sub11-Jun-201834.7 KiB

configure11-Jun-2018494.5 KiB

configure.ac11-Jun-201821.8 KiB

defer-internal.h11-Jun-20183.6 KiB

depcomp11-Jun-201820.4 KiB

devpoll.c11-Jun-20187.6 KiB

Doxyfile11-Jun-201810 KiB

epoll.c11-Jun-201812.8 KiB

epoll_sub.c11-Jun-20182.3 KiB

evbuffer-internal.h11-Jun-201810.6 KiB

evdns.c11-Jun-2018125 KiB

evdns.h11-Jun-20181.9 KiB

event-internal.h11-Jun-201812.4 KiB

event.c11-Jun-201873.8 KiB

event.h11-Jun-20182.7 KiB

event_iocp.c11-Jun-20187.5 KiB

event_rpcgen.py11-Jun-201854.2 KiB

event_tagging.c11-Jun-201814.1 KiB

evhttp.h11-Jun-20181.9 KiB

evmap-internal.h11-Jun-20183.9 KiB

evmap.c11-Jun-201820.9 KiB

evport.c11-Jun-201811.8 KiB

evrpc-internal.h11-Jun-20185.5 KiB

evrpc.c11-Jun-201828.7 KiB

evrpc.h11-Jun-20181.9 KiB

evsignal-internal.h11-Jun-20182.5 KiB

evthread-internal.h11-Jun-201813.5 KiB

evthread.c11-Jun-201811.8 KiB

evthread_pthread.c11-Jun-20184.8 KiB

evthread_win32.c11-Jun-20188.3 KiB

evutil.c11-Jun-201857.5 KiB

evutil.h11-Jun-20181.7 KiB

evutil_rand.c11-Jun-20184.8 KiB

ht-internal.h11-Jun-201828.5 KiB

http-internal.h11-Jun-20185.2 KiB

http.c11-Jun-2018108.7 KiB

include/11-Jun-20184 KiB

install-sh11-Jun-201813.7 KiB

iocp-internal.h11-Jun-20187.5 KiB

ipv6-internal.h11-Jun-20182.4 KiB

kqueue.c11-Jun-201811.9 KiB

libevent.pc.in11-Jun-2018317

libevent_openssl.pc.in11-Jun-2018357

libevent_pthreads.pc.in11-Jun-2018384

LICENSE11-Jun-20183.2 KiB

listener.c11-Jun-201820.6 KiB

log-internal.h11-Jun-20182.5 KiB

log.c11-Jun-20185 KiB

ltmain.sh11-Jun-2018276.8 KiB

make-event-config.sed11-Jun-2018542

Makefile.am11-Jun-20187.4 KiB

Makefile.in11-Jun-201850.5 KiB

Makefile.nmake11-Jun-20181.4 KiB

minheap-internal.h11-Jun-20185.6 KiB

missing11-Jun-20189.9 KiB

mm-internal.h11-Jun-20182.5 KiB

MODULE_LICENSE_BSD_LIKE11-Jun-20180

NOTICE11-Jun-20183.2 KiB

poll.c11-Jun-20187.8 KiB

ratelim-internal.h11-Jun-20184 KiB

README11-Jun-20184 KiB

README.android11-Jun-20181.2 KiB

select.c11-Jun-20188.2 KiB

signal.c11-Jun-201811.8 KiB

strlcpy-internal.h11-Jun-2018320

strlcpy.c11-Jun-20182.5 KiB

util-internal.h11-Jun-201810.4 KiB

whatsnew-2.0.txt11-Jun-201825.7 KiB

win32select.c11-Jun-201810 KiB

README

10. BUILDING AND INSTALLATION (Briefly)
2
3$ ./configure
4$ make
5$ make verify   # (optional)
6$ sudo make install
7
81. BUILDING AND INSTALLATION (In Depth)
9
10To build libevent, type
11
12$ ./configure && make
13
14     (If you got libevent from the git repository, you will
15      first need to run the included "autogen.sh" script in order to
16      generate the configure script.)
17
18You can run the regression tests by running
19
20$ make verify
21
22Install as root via
23
24# make install
25
26Before, reporting any problems, please run the regression tests.
27
28To enable the low-level tracing build the library as:
29
30   CFLAGS=-DUSE_DEBUG ./configure [...]
31
32Standard configure flags should work.  In particular, see:
33
34   --disable-shared          Only build static libraries
35   --prefix                  Install all files relative to this directory.
36
37
38The configure script also supports the following flags:
39
40   --enable-gcc-warnings     Enable extra compiler checking with GCC.
41   --disable-malloc-replacement
42                             Don't let applications replace our memory
43                             management functions
44   --disable-openssl         Disable support for OpenSSL encryption.
45   --disable-thread-support  Don't support multithreaded environments.
46
472. USEFUL LINKS:
48
49For the latest released version of Libevent, see the official website at
50http://libevent.org/ .
51
52There's a pretty good work-in-progress manual up at
53   http://www.wangafu.net/~nickm/libevent-book/ .
54
55For the latest development versions of Libevent, access our Git repository
56via
57   "git clone git://levent.git.sourceforge.net/gitroot/levent/libevent"
58
59You can browse the git repository online at
60http://levent.git.sourceforge.net/git/gitweb-index.cgi .
61
62To report bugs, request features, or submit patches to Libevent,
63use the Sourceforge trackers at
64https://sourceforge.net/tracker/?group_id=50884 .
65
66There's also a libevent-users mailing list for talking about Libevent
67use and development: http://archives.seul.org/libevent/users/
68
693. ACKNOWLEDGMENTS
70
71The following people have helped with suggestions, ideas, code or
72fixing bugs:
73
74  Arno Bakker
75  Alejo
76  Weston Andros Adamson
77  William Ahern
78  Ivan Andropov
79  Sergey Avseyev
80  Avi Bab
81  Gilad Benjamini
82  Stas Bekman
83  Joachim Bauch
84  Denis Bilenko
85  Julien Blache
86  Kevin Bowling
87  Tomash Brechko
88  Kelly Brock
89  Ralph Castain
90  Adrian Chadd
91  Lawnstein Chan
92  Shuo Chen
93  Ka-Hing Cheung
94  Andrew Cox
95  George Danchev
96  Andrew Danforth
97  Antony Dovgal
98  Ed Day
99  Christopher Davis
100  Mike Davis
101  Mihai Draghicioiu
102  Mark Ellzey
103  Shie Erlich
104  Leonid Evdokimov
105  Juan Pablo Fernandez
106  Christophe Fillot
107  Mike Frysinger
108  Remi Gacogne
109  Alexander von Gernler
110  Artur Grabowski
111  Sebastian Hahn
112  Dave Hart
113  Greg Hazel
114  Michael Herf
115  Savg He
116  Mark Heily
117  Greg Hewgill
118  Andrew Hochhaus
119  Aaron Hopkins
120  Tani Hosokawa
121  Jamie Iles
122  Claudio Jeker
123  Evan Jones
124  George Kadianakis
125  Phua Keat
126  Kevin Ko
127  Brian Koehmstedt
128  Marko Kreen
129  Valery Kyholodov
130  Ross Lagerwall
131  Scott Lamb
132  Christopher Layne
133  Adam Langley
134  Philip Lewis
135  Zhou Li
136  David Libenzi
137  Yan Lin
138  Moshe Litvin
139  Simon Liu
140  Mitchell Livingston
141  Hagne Mahre
142  Lubomir Marinov
143  Abilio Marques
144  Nick Mathewson
145  James Mansion
146  Nicholas Marriott
147  Andrey Matveev
148  Caitlin Mercer
149  Dagobert Michelsen
150  Mansour Moufid
151  Felix Nawothnig
152  Trond Norbye
153  Linus Nordberg
154  Richard Nyberg
155  Jon Oberheide
156  Phil Oleson
157  Dave Pacheco
158  Tassilo von Parseval
159  Catalin Patulea
160  Patrick Pelletier
161  Simon Perreault
162  Pierre Phaneuf
163  Ryan Phillips
164  Dimitre Piskyulev
165  Pavel Plesov
166  Jon Poland
167  Nate R
168  Robert Ransom
169  Bert JW Regeer
170  Peter Rosin
171  Maseeb Abdul Qadir
172  Wang Qin
173  Alex S
174  Hanna Schroeter
175  Ralf Schmitt
176  Mike Smellie
177  Kevin Springborn
178  Harlan Stenn
179  Steve Snyder
180  Dug Song
181  Dongsheng Song
182  Hannes Sowa
183  Ferenc Szalai
184  Brodie Thiesfield
185  Jason Toffaletti
186  Gisle Vanem
187  Bas Verhoeven
188  Constantine Verutin
189  Colin Watt
190  Zack Weinberg
191  Jardel Weyrich
192  Alex
193  Taral
194  propanbutan
195  mmadia
196
197
198If we have forgotten your name, please contact us.
199

README.android

1This is libevent-2.0.22-stable from http://libevent.org/.
2
3No changes were made apart from the following:
4
5* copied LICENSE to NOTICE
6* added empty MODULE_LICENSE_BSD_LIKE
7* Removed directories:
8  - WIN32-Code
9  - compat
10  - m4
11  - sample
12  - test
13* added Android.mk
14* added CleanSpec.mk
15* added missing include of event-internal.h to buffer.c
16* added custom include/event2/event-config.h
17
18
19To uprev this project, you'll likely need to reverse engineer the autotools
20generated makefiles again.  This is the recipe I used:
21
22BRANCH_ROOT=/usr/local/google/home/wiley/mnc-dev
23PATH="${BRANCH_ROOT}/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/bin:${PATH}"
24NDK_ROOT="${BRANCH_ROOT}/prebuilts/ndk/current/platforms/android-21/arch-arm64/usr"
25
26./configure --host=arm --build=`./config.guess` \
27  CC=arm-eabi-gcc \
28  CPPFLAGS="-I${NDK_ROOT}/usr/include" \
29  CFLAGS="-nostdlib
30          -Wl,-rpath-link=${BRANCH_ROOT}/out/target/product/hammerhead/obj/lib
31          -L${BRANCH_ROOT}/out/target/product/hammerhead/obj/lib
32          -I${BRANCH_ROOT}/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include" \
33  LIBS="-lc "
34
35Note that I built hammerhead first and used prebuilts from the most recent NDK.
36