• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..22-Apr-201633

aclocal.m4H A D27-Nov-201537.5 KiB

arc4random.cH A D27-Nov-201512.4 KiB

autogen.shH A D27-Nov-2015308

buffer.cH A D27-Nov-201570.7 KiB

buffer_iocp.cH A D27-Nov-20158.4 KiB

bufferevent-internal.hH A D27-Nov-201515.4 KiB

bufferevent.cH A D27-Nov-201522 KiB

bufferevent_async.cH A D27-Nov-201517.8 KiB

bufferevent_filter.cH A D27-Nov-201514.7 KiB

bufferevent_openssl.cH A D27-Nov-201536 KiB

bufferevent_pair.cH A D27-Nov-20158.6 KiB

bufferevent_ratelim.cH A D27-Nov-201527.9 KiB

bufferevent_sock.cH A D27-Nov-201517.1 KiB

changelist-internal.hH A D27-Nov-20154.5 KiB

ChangeLogH A D27-Nov-201581.7 KiB

compat/H27-Nov-20153

config.h.inH A D27-Nov-201511.6 KiB

configureH A D27-Nov-2015488.8 KiB

configure.inH A D27-Nov-201521.1 KiB

defer-internal.hH A D27-Nov-20153.6 KiB

devpoll.cH A D27-Nov-20157.6 KiB

DoxyfileH A D27-Nov-201510 KiB

epoll.cH A D27-Nov-201512.8 KiB

epoll_sub.cH A D27-Nov-20152 KiB

evbuffer-internal.hH A D27-Nov-201510.3 KiB

evdns.cH A D27-Nov-2015123.7 KiB

evdns.hH A D27-Nov-20151.9 KiB

event-internal.hH A D27-Nov-201512.3 KiB

event.cH A D27-Nov-201572.3 KiB

event.hH A D27-Nov-20152.7 KiB

event_iocp.cH A D27-Nov-20157.4 KiB

event_rpcgen.pyH A D27-Nov-201554.2 KiB

event_tagging.cH A D27-Nov-201514 KiB

evhttp.hH A D27-Nov-20151.9 KiB

evmap-internal.hH A D27-Nov-20153.9 KiB

evmap.cH A D27-Nov-201520.9 KiB

evport.cH A D27-Nov-201511.8 KiB

evrpc-internal.hH A D27-Nov-20155.5 KiB

evrpc.cH A D27-Nov-201528.7 KiB

evrpc.hH A D27-Nov-20151.9 KiB

evsignal-internal.hH A D27-Nov-20152.5 KiB

evthread-internal.hH A D27-Nov-201513.5 KiB

evthread.cH A D27-Nov-201511.8 KiB

evthread_pthread.cH A D27-Nov-20154.8 KiB

evthread_win32.cH A D27-Nov-20158.3 KiB

evutil.cH A D27-Nov-201557.1 KiB

evutil.hH A D27-Nov-20151.7 KiB

evutil_rand.cH A D27-Nov-20154 KiB

ht-internal.hH A D27-Nov-201528.5 KiB

http-internal.hH A D27-Nov-20155.2 KiB

http.cH A D27-Nov-2015108.3 KiB

include/H22-Apr-20165

iocp-internal.hH A D27-Nov-20157.5 KiB

ipv6-internal.hH A D27-Nov-20152.4 KiB

kqueue.cH A D27-Nov-201511.9 KiB

libevent.pc.inH A D27-Nov-2015317

libevent_openssl.pc.inH A D27-Nov-2015357

libevent_pthreads.pc.inH A D27-Nov-2015384

LICENSEH A D27-Nov-20153.2 KiB

listener.cH A D27-Nov-201520.4 KiB

log-internal.hH A D27-Nov-20152.5 KiB

log.cH A D27-Nov-20155 KiB

m4/H27-Nov-20158

Makefile.amH A D27-Nov-20157.4 KiB

Makefile.inH A D27-Nov-201550.6 KiB

Makefile.nmakeH A D27-Nov-20151.4 KiB

minheap-internal.hH A D27-Nov-20155.6 KiB

mm-internal.hH A D27-Nov-20152.5 KiB

poll.cH A D27-Nov-20157.8 KiB

ratelim-internal.hH A D27-Nov-20154 KiB

READMEH A D27-Nov-20153.9 KiB

sample/H22-Apr-201611

select.cH A D27-Nov-20158.2 KiB

signal.cH A D27-Nov-201511.8 KiB

strlcpy-internal.hH A D27-Nov-2015320

strlcpy.cH A D27-Nov-20152.5 KiB

test/H22-Apr-201642

util-internal.hH A D27-Nov-201510.2 KiB

whatsnew-2.0.txtH A D27-Nov-201525.7 KiB

WIN32-Code/H27-Nov-20154

win32select.cH A D27-Nov-201510 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://monkey.org/~provos/libevent/ .
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 Danforth
95  Ed Day
96  Christopher Davis
97  Mike Davis
98  Mihai Draghicioiu
99  Mark Ellzey
100  Shie Erlich
101  Leonid Evdokimov
102  Christophe Fillot
103  Mike Frysinger
104  Remi Gacogne
105  Alexander von Gernler
106  Artur Grabowski
107  Dave Hart
108  Greg Hazel
109  Michael Herf
110  Sebastian Hahn
111  Mark Heily
112  Greg Hewgill
113  Aaron Hopkins
114  Tani Hosokawa
115  Jamie Iles
116  Claudio Jeker
117  Evan Jones
118  George Kadianakis
119  Phua Keat
120  Kevin Ko
121  Brian Koehmstedt
122  Marko Kreen
123  Valery Kyholodov
124  Ross Lagerwall
125  Scott Lamb
126  Christopher Layne
127  Adam Langley
128  Philip Lewis
129  Zhou Li
130  David Libenzi
131  Yan Lin
132  Moshe Litvin
133  Mitchell Livingston
134  Hagne Mahre
135  Lubomir Marinov
136  Abilio Marques
137  Nick Mathewson
138  James Mansion
139  Nicholas Marriott
140  Andrey Matveev
141  Caitlin Mercer
142  Dagobert Michelsen
143  Mansour Moufid
144  Felix Nawothnig
145  Trond Norbye
146  Linus Nordberg
147  Richard Nyberg
148  Jon Oberheide
149  Phil Oleson
150  Dave Pacheco
151  Tassilo von Parseval
152  Catalin Patulea
153  Simon Perreault
154  Pierre Phaneuf
155  Ryan Phillips
156  Dimitre Piskyulev
157  Pavel Plesov
158  Jon Poland
159  Nate R
160  Robert Ransom
161  Bert JW Regeer
162  Peter Rosin
163  Maseeb Abdul Qadir
164  Wang Qin
165  Hanna Schroeter
166  Ralf Schmitt
167  Mike Smellie
168  Kevin Springborn
169  Harlan Stenn
170  Steve Snyder
171  Dug Song
172  Dongsheng Song
173  Hannes Sowa
174  Ferenc Szalai
175  Brodie Thiesfield
176  Jason Toffaletti
177  Gisle Vanem
178  Bas Verhoeven
179  Constantine Verutin
180  Colin Watt
181  Zack Weinberg
182  Jardel Weyrich
183  Alex
184  Taral
185  propanbutan
186  mmadia
187
188If we have forgotten your name, please contact us.
189