evdispatch 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +3 -0
- data/License.txt +20 -0
- data/Manifest.txt +96 -0
- data/README.txt +73 -0
- data/Rakefile +4 -0
- data/config/hoe.rb +70 -0
- data/config/requirements.rb +15 -0
- data/ext/revdispatch/extconf.rb +31 -0
- data/ext/revdispatch/libevdispatch/Changelog +0 -0
- data/ext/revdispatch/libevdispatch/LICENSE +0 -0
- data/ext/revdispatch/libevdispatch/Makefile.am +10 -0
- data/ext/revdispatch/libevdispatch/Makefile.in +637 -0
- data/ext/revdispatch/libevdispatch/README +3 -0
- data/ext/revdispatch/libevdispatch/TODO +5 -0
- data/ext/revdispatch/libevdispatch/aclocal.m4 +7459 -0
- data/ext/revdispatch/libevdispatch/autogen.sh +11 -0
- data/ext/revdispatch/libevdispatch/confdefs.h +32 -0
- data/ext/revdispatch/libevdispatch/config.guess +1516 -0
- data/ext/revdispatch/libevdispatch/config.h.in +112 -0
- data/ext/revdispatch/libevdispatch/config.sub +1626 -0
- data/ext/revdispatch/libevdispatch/configure +21949 -0
- data/ext/revdispatch/libevdispatch/configure.ac +40 -0
- data/ext/revdispatch/libevdispatch/depcomp +584 -0
- data/ext/revdispatch/libevdispatch/install-sh +507 -0
- data/ext/revdispatch/libevdispatch/libev/Changes +54 -0
- data/ext/revdispatch/libevdispatch/libev/LICENSE +25 -0
- data/ext/revdispatch/libevdispatch/libev/Makefile.am +18 -0
- data/ext/revdispatch/libevdispatch/libev/Makefile.in +677 -0
- data/ext/revdispatch/libevdispatch/libev/README +130 -0
- data/ext/revdispatch/libevdispatch/libev/aclocal.m4 +7430 -0
- data/ext/revdispatch/libevdispatch/libev/autogen.sh +7 -0
- data/ext/revdispatch/libevdispatch/libev/config.guess +1516 -0
- data/ext/revdispatch/libevdispatch/libev/config.h.in +106 -0
- data/ext/revdispatch/libevdispatch/libev/config.sub +1626 -0
- data/ext/revdispatch/libevdispatch/libev/configure +21636 -0
- data/ext/revdispatch/libevdispatch/libev/configure.ac +18 -0
- data/ext/revdispatch/libevdispatch/libev/ev++.h +779 -0
- data/ext/revdispatch/libevdispatch/libev/ev.3 +3276 -0
- data/ext/revdispatch/libevdispatch/libev/ev.c +2547 -0
- data/ext/revdispatch/libevdispatch/libev/ev.h +608 -0
- data/ext/revdispatch/libevdispatch/libev/ev.pod +3192 -0
- data/ext/revdispatch/libevdispatch/libev/ev_epoll.c +182 -0
- data/ext/revdispatch/libevdispatch/libev/ev_kqueue.c +194 -0
- data/ext/revdispatch/libevdispatch/libev/ev_poll.c +135 -0
- data/ext/revdispatch/libevdispatch/libev/ev_port.c +163 -0
- data/ext/revdispatch/libevdispatch/libev/ev_select.c +244 -0
- data/ext/revdispatch/libevdispatch/libev/ev_vars.h +157 -0
- data/ext/revdispatch/libevdispatch/libev/ev_win32.c +125 -0
- data/ext/revdispatch/libevdispatch/libev/ev_wrap.h +144 -0
- data/ext/revdispatch/libevdispatch/libev/event.c +404 -0
- data/ext/revdispatch/libevdispatch/libev/event.h +152 -0
- data/ext/revdispatch/libevdispatch/libev/install-sh +294 -0
- data/ext/revdispatch/libevdispatch/libev/libev.m4 +28 -0
- data/ext/revdispatch/libevdispatch/libev/ltmain.sh +6930 -0
- data/ext/revdispatch/libevdispatch/libev/missing +336 -0
- data/ext/revdispatch/libevdispatch/libev/mkinstalldirs +111 -0
- data/ext/revdispatch/libevdispatch/ltmain.sh +6930 -0
- data/ext/revdispatch/libevdispatch/missing +367 -0
- data/ext/revdispatch/libevdispatch/src/Makefile.am +11 -0
- data/ext/revdispatch/libevdispatch/src/Makefile.in +486 -0
- data/ext/revdispatch/libevdispatch/src/ev_dispatch.cc +264 -0
- data/ext/revdispatch/libevdispatch/src/ev_dispatch.h +300 -0
- data/ext/revdispatch/libevdispatch/src/ev_http.cc +238 -0
- data/ext/revdispatch/libevdispatch/src/ev_http.h +65 -0
- data/ext/revdispatch/libevdispatch/test/Makefile.am +16 -0
- data/ext/revdispatch/libevdispatch/test/Makefile.in +513 -0
- data/ext/revdispatch/libevdispatch/test/helper.rb +94 -0
- data/ext/revdispatch/libevdispatch/test/key_test.cc +52 -0
- data/ext/revdispatch/libevdispatch/test/next_test.cc +86 -0
- data/ext/revdispatch/libevdispatch/test/next_test.rb +8 -0
- data/ext/revdispatch/libevdispatch/test/server.rb +9 -0
- data/ext/revdispatch/revdispatch.cc +151 -0
- data/ext/revdispatch/server.rb +60 -0
- data/ext/revdispatch/test.rb +100 -0
- data/lib/evdispatch/loop.rb +16 -0
- data/lib/evdispatch/version.rb +9 -0
- data/lib/evdispatch.rb +8 -0
- data/log/debug.log +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +74 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/extconf/revdispatch.rake +43 -0
- data/tasks/extconf.rake +13 -0
- data/tasks/website.rake +17 -0
- data/test/test_evdispatch.rb +11 -0
- data/test/test_helper.rb +3 -0
- data/test/test_revdispatch_extn.rb +14 -0
- data/website/index.html +128 -0
- data/website/index.txt +55 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +49 -0
- metadata +157 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
/* config.h.in. Generated from configure.ac by autoheader. */
|
2
|
+
|
3
|
+
/* Define to 1 if you have the `clock_gettime' function. */
|
4
|
+
#undef HAVE_CLOCK_GETTIME
|
5
|
+
|
6
|
+
/* Define to 1 if you have the <dlfcn.h> header file. */
|
7
|
+
#undef HAVE_DLFCN_H
|
8
|
+
|
9
|
+
/* Define to 1 if you have the `epoll_ctl' function. */
|
10
|
+
#undef HAVE_EPOLL_CTL
|
11
|
+
|
12
|
+
/* Define to 1 if you have the `inotify_init' function. */
|
13
|
+
#undef HAVE_INOTIFY_INIT
|
14
|
+
|
15
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
16
|
+
#undef HAVE_INTTYPES_H
|
17
|
+
|
18
|
+
/* Define to 1 if you have the `kqueue' function. */
|
19
|
+
#undef HAVE_KQUEUE
|
20
|
+
|
21
|
+
/* Define to 1 if you have the `m' library (-lm). */
|
22
|
+
#undef HAVE_LIBM
|
23
|
+
|
24
|
+
/* Define to 1 if you have the `rt' library (-lrt). */
|
25
|
+
#undef HAVE_LIBRT
|
26
|
+
|
27
|
+
/* Define to 1 if you have the <memory.h> header file. */
|
28
|
+
#undef HAVE_MEMORY_H
|
29
|
+
|
30
|
+
/* Define to 1 if you have the `nanosleep' function. */
|
31
|
+
#undef HAVE_NANOSLEEP
|
32
|
+
|
33
|
+
/* Define to 1 if you have the `poll' function. */
|
34
|
+
#undef HAVE_POLL
|
35
|
+
|
36
|
+
/* Define to 1 if you have the <poll.h> header file. */
|
37
|
+
#undef HAVE_POLL_H
|
38
|
+
|
39
|
+
/* Define to 1 if you have the `port_create' function. */
|
40
|
+
#undef HAVE_PORT_CREATE
|
41
|
+
|
42
|
+
/* Define to 1 if you have the <port.h> header file. */
|
43
|
+
#undef HAVE_PORT_H
|
44
|
+
|
45
|
+
/* Define to 1 if you have the `select' function. */
|
46
|
+
#undef HAVE_SELECT
|
47
|
+
|
48
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
49
|
+
#undef HAVE_STDINT_H
|
50
|
+
|
51
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
52
|
+
#undef HAVE_STDLIB_H
|
53
|
+
|
54
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
55
|
+
#undef HAVE_STRINGS_H
|
56
|
+
|
57
|
+
/* Define to 1 if you have the <string.h> header file. */
|
58
|
+
#undef HAVE_STRING_H
|
59
|
+
|
60
|
+
/* Define to 1 if you have the <sys/epoll.h> header file. */
|
61
|
+
#undef HAVE_SYS_EPOLL_H
|
62
|
+
|
63
|
+
/* Define to 1 if you have the <sys/event.h> header file. */
|
64
|
+
#undef HAVE_SYS_EVENT_H
|
65
|
+
|
66
|
+
/* Define to 1 if you have the <sys/inotify.h> header file. */
|
67
|
+
#undef HAVE_SYS_INOTIFY_H
|
68
|
+
|
69
|
+
/* Define to 1 if you have the <sys/queue.h> header file. */
|
70
|
+
#undef HAVE_SYS_QUEUE_H
|
71
|
+
|
72
|
+
/* Define to 1 if you have the <sys/select.h> header file. */
|
73
|
+
#undef HAVE_SYS_SELECT_H
|
74
|
+
|
75
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
76
|
+
#undef HAVE_SYS_STAT_H
|
77
|
+
|
78
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
79
|
+
#undef HAVE_SYS_TYPES_H
|
80
|
+
|
81
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
82
|
+
#undef HAVE_UNISTD_H
|
83
|
+
|
84
|
+
/* Name of package */
|
85
|
+
#undef PACKAGE
|
86
|
+
|
87
|
+
/* Define to the address where bug reports for this package should be sent. */
|
88
|
+
#undef PACKAGE_BUGREPORT
|
89
|
+
|
90
|
+
/* Define to the full name of this package. */
|
91
|
+
#undef PACKAGE_NAME
|
92
|
+
|
93
|
+
/* Define to the full name and version of this package. */
|
94
|
+
#undef PACKAGE_STRING
|
95
|
+
|
96
|
+
/* Define to the one symbol short name of this package. */
|
97
|
+
#undef PACKAGE_TARNAME
|
98
|
+
|
99
|
+
/* Define to the version of this package. */
|
100
|
+
#undef PACKAGE_VERSION
|
101
|
+
|
102
|
+
/* Define to 1 if you have the ANSI C header files. */
|
103
|
+
#undef STDC_HEADERS
|
104
|
+
|
105
|
+
/* Version number of package */
|
106
|
+
#undef VERSION
|