evdispatch 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. data/History.txt +3 -0
  2. data/License.txt +20 -0
  3. data/Manifest.txt +96 -0
  4. data/README.txt +73 -0
  5. data/Rakefile +4 -0
  6. data/config/hoe.rb +70 -0
  7. data/config/requirements.rb +15 -0
  8. data/ext/revdispatch/extconf.rb +31 -0
  9. data/ext/revdispatch/libevdispatch/Changelog +0 -0
  10. data/ext/revdispatch/libevdispatch/LICENSE +0 -0
  11. data/ext/revdispatch/libevdispatch/Makefile.am +10 -0
  12. data/ext/revdispatch/libevdispatch/Makefile.in +637 -0
  13. data/ext/revdispatch/libevdispatch/README +3 -0
  14. data/ext/revdispatch/libevdispatch/TODO +5 -0
  15. data/ext/revdispatch/libevdispatch/aclocal.m4 +7459 -0
  16. data/ext/revdispatch/libevdispatch/autogen.sh +11 -0
  17. data/ext/revdispatch/libevdispatch/confdefs.h +32 -0
  18. data/ext/revdispatch/libevdispatch/config.guess +1516 -0
  19. data/ext/revdispatch/libevdispatch/config.h.in +112 -0
  20. data/ext/revdispatch/libevdispatch/config.sub +1626 -0
  21. data/ext/revdispatch/libevdispatch/configure +21949 -0
  22. data/ext/revdispatch/libevdispatch/configure.ac +40 -0
  23. data/ext/revdispatch/libevdispatch/depcomp +584 -0
  24. data/ext/revdispatch/libevdispatch/install-sh +507 -0
  25. data/ext/revdispatch/libevdispatch/libev/Changes +54 -0
  26. data/ext/revdispatch/libevdispatch/libev/LICENSE +25 -0
  27. data/ext/revdispatch/libevdispatch/libev/Makefile.am +18 -0
  28. data/ext/revdispatch/libevdispatch/libev/Makefile.in +677 -0
  29. data/ext/revdispatch/libevdispatch/libev/README +130 -0
  30. data/ext/revdispatch/libevdispatch/libev/aclocal.m4 +7430 -0
  31. data/ext/revdispatch/libevdispatch/libev/autogen.sh +7 -0
  32. data/ext/revdispatch/libevdispatch/libev/config.guess +1516 -0
  33. data/ext/revdispatch/libevdispatch/libev/config.h.in +106 -0
  34. data/ext/revdispatch/libevdispatch/libev/config.sub +1626 -0
  35. data/ext/revdispatch/libevdispatch/libev/configure +21636 -0
  36. data/ext/revdispatch/libevdispatch/libev/configure.ac +18 -0
  37. data/ext/revdispatch/libevdispatch/libev/ev++.h +779 -0
  38. data/ext/revdispatch/libevdispatch/libev/ev.3 +3276 -0
  39. data/ext/revdispatch/libevdispatch/libev/ev.c +2547 -0
  40. data/ext/revdispatch/libevdispatch/libev/ev.h +608 -0
  41. data/ext/revdispatch/libevdispatch/libev/ev.pod +3192 -0
  42. data/ext/revdispatch/libevdispatch/libev/ev_epoll.c +182 -0
  43. data/ext/revdispatch/libevdispatch/libev/ev_kqueue.c +194 -0
  44. data/ext/revdispatch/libevdispatch/libev/ev_poll.c +135 -0
  45. data/ext/revdispatch/libevdispatch/libev/ev_port.c +163 -0
  46. data/ext/revdispatch/libevdispatch/libev/ev_select.c +244 -0
  47. data/ext/revdispatch/libevdispatch/libev/ev_vars.h +157 -0
  48. data/ext/revdispatch/libevdispatch/libev/ev_win32.c +125 -0
  49. data/ext/revdispatch/libevdispatch/libev/ev_wrap.h +144 -0
  50. data/ext/revdispatch/libevdispatch/libev/event.c +404 -0
  51. data/ext/revdispatch/libevdispatch/libev/event.h +152 -0
  52. data/ext/revdispatch/libevdispatch/libev/install-sh +294 -0
  53. data/ext/revdispatch/libevdispatch/libev/libev.m4 +28 -0
  54. data/ext/revdispatch/libevdispatch/libev/ltmain.sh +6930 -0
  55. data/ext/revdispatch/libevdispatch/libev/missing +336 -0
  56. data/ext/revdispatch/libevdispatch/libev/mkinstalldirs +111 -0
  57. data/ext/revdispatch/libevdispatch/ltmain.sh +6930 -0
  58. data/ext/revdispatch/libevdispatch/missing +367 -0
  59. data/ext/revdispatch/libevdispatch/src/Makefile.am +11 -0
  60. data/ext/revdispatch/libevdispatch/src/Makefile.in +486 -0
  61. data/ext/revdispatch/libevdispatch/src/ev_dispatch.cc +264 -0
  62. data/ext/revdispatch/libevdispatch/src/ev_dispatch.h +300 -0
  63. data/ext/revdispatch/libevdispatch/src/ev_http.cc +238 -0
  64. data/ext/revdispatch/libevdispatch/src/ev_http.h +65 -0
  65. data/ext/revdispatch/libevdispatch/test/Makefile.am +16 -0
  66. data/ext/revdispatch/libevdispatch/test/Makefile.in +513 -0
  67. data/ext/revdispatch/libevdispatch/test/helper.rb +94 -0
  68. data/ext/revdispatch/libevdispatch/test/key_test.cc +52 -0
  69. data/ext/revdispatch/libevdispatch/test/next_test.cc +86 -0
  70. data/ext/revdispatch/libevdispatch/test/next_test.rb +8 -0
  71. data/ext/revdispatch/libevdispatch/test/server.rb +9 -0
  72. data/ext/revdispatch/revdispatch.cc +151 -0
  73. data/ext/revdispatch/server.rb +60 -0
  74. data/ext/revdispatch/test.rb +100 -0
  75. data/lib/evdispatch/loop.rb +16 -0
  76. data/lib/evdispatch/version.rb +9 -0
  77. data/lib/evdispatch.rb +8 -0
  78. data/log/debug.log +0 -0
  79. data/script/console +10 -0
  80. data/script/destroy +14 -0
  81. data/script/generate +14 -0
  82. data/script/txt2html +74 -0
  83. data/setup.rb +1585 -0
  84. data/tasks/deployment.rake +34 -0
  85. data/tasks/environment.rake +7 -0
  86. data/tasks/extconf/revdispatch.rake +43 -0
  87. data/tasks/extconf.rake +13 -0
  88. data/tasks/website.rake +17 -0
  89. data/test/test_evdispatch.rb +11 -0
  90. data/test/test_helper.rb +3 -0
  91. data/test/test_revdispatch_extn.rb +14 -0
  92. data/website/index.html +128 -0
  93. data/website/index.txt +55 -0
  94. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  95. data/website/stylesheets/screen.css +138 -0
  96. data/website/template.html.erb +49 -0
  97. metadata +157 -0
@@ -0,0 +1,637 @@
1
+ # Makefile.in generated by automake 1.10 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+ VPATH = @srcdir@
17
+ pkgdatadir = $(datadir)/@PACKAGE@
18
+ pkglibdir = $(libdir)/@PACKAGE@
19
+ pkgincludedir = $(includedir)/@PACKAGE@
20
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
21
+ install_sh_DATA = $(install_sh) -c -m 644
22
+ install_sh_PROGRAM = $(install_sh) -c
23
+ install_sh_SCRIPT = $(install_sh) -c
24
+ INSTALL_HEADER = $(INSTALL_DATA)
25
+ transform = $(program_transform_name)
26
+ NORMAL_INSTALL = :
27
+ PRE_INSTALL = :
28
+ POST_INSTALL = :
29
+ NORMAL_UNINSTALL = :
30
+ PRE_UNINSTALL = :
31
+ POST_UNINSTALL = :
32
+ build_triplet = @build@
33
+ host_triplet = @host@
34
+ subdir = .
35
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
36
+ $(srcdir)/Makefile.in $(srcdir)/config.h.in \
37
+ $(top_srcdir)/configure TODO config.guess config.sub depcomp \
38
+ install-sh ltmain.sh missing
39
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
40
+ am__aclocal_m4_deps = $(top_srcdir)/libev/libev.m4 \
41
+ $(top_srcdir)/configure.ac
42
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
43
+ $(ACLOCAL_M4)
44
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
45
+ configure.lineno config.status.lineno
46
+ mkinstalldirs = $(install_sh) -d
47
+ CONFIG_HEADER = config.h
48
+ CONFIG_CLEAN_FILES =
49
+ depcomp =
50
+ am__depfiles_maybe =
51
+ SOURCES =
52
+ DIST_SOURCES =
53
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
54
+ html-recursive info-recursive install-data-recursive \
55
+ install-dvi-recursive install-exec-recursive \
56
+ install-html-recursive install-info-recursive \
57
+ install-pdf-recursive install-ps-recursive install-recursive \
58
+ installcheck-recursive installdirs-recursive pdf-recursive \
59
+ ps-recursive uninstall-recursive
60
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
61
+ distclean-recursive maintainer-clean-recursive
62
+ ETAGS = etags
63
+ CTAGS = ctags
64
+ DIST_SUBDIRS = $(SUBDIRS)
65
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
66
+ distdir = $(PACKAGE)-$(VERSION)
67
+ top_distdir = $(distdir)
68
+ am__remove_distdir = \
69
+ { test ! -d $(distdir) \
70
+ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
71
+ && rm -fr $(distdir); }; }
72
+ DIST_ARCHIVES = $(distdir).tar.gz
73
+ GZIP_ENV = --best
74
+ distuninstallcheck_listfiles = find . -type f -print
75
+ distcleancheck_listfiles = find . -type f -print
76
+ ACLOCAL = @ACLOCAL@
77
+ AMTAR = @AMTAR@
78
+ AR = @AR@
79
+ AUTOCONF = @AUTOCONF@
80
+ AUTOHEADER = @AUTOHEADER@
81
+ AUTOMAKE = @AUTOMAKE@
82
+ AWK = @AWK@
83
+ CC = @CC@
84
+ CCDEPMODE = @CCDEPMODE@
85
+ CFLAGS = @CFLAGS@
86
+ CPP = @CPP@
87
+ CPPFLAGS = @CPPFLAGS@
88
+ CXX = @CXX@
89
+ CXXCPP = @CXXCPP@
90
+ CXXDEPMODE = @CXXDEPMODE@
91
+ CXXFLAGS = @CXXFLAGS@
92
+ CYGPATH_W = @CYGPATH_W@
93
+ DEFS = @DEFS@
94
+ DEPDIR = @DEPDIR@
95
+ ECHO = @ECHO@
96
+ ECHO_C = @ECHO_C@
97
+ ECHO_N = @ECHO_N@
98
+ ECHO_T = @ECHO_T@
99
+ EGREP = @EGREP@
100
+ EXEEXT = @EXEEXT@
101
+ F77 = @F77@
102
+ FFLAGS = @FFLAGS@
103
+ GREP = @GREP@
104
+ INSTALL = @INSTALL@
105
+ INSTALL_DATA = @INSTALL_DATA@
106
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
107
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
108
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
109
+ LDFLAGS = @LDFLAGS@
110
+ LIBEV_PATH = @LIBEV_PATH@
111
+ LIBOBJS = @LIBOBJS@
112
+ LIBS = @LIBS@
113
+ LIBTOOL = @LIBTOOL@
114
+ LN_S = @LN_S@
115
+ LTLIBOBJS = @LTLIBOBJS@
116
+ MAINT = @MAINT@
117
+ MAKEINFO = @MAKEINFO@
118
+ MKDIR_P = @MKDIR_P@
119
+ OBJEXT = @OBJEXT@
120
+ PACKAGE = @PACKAGE@
121
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
122
+ PACKAGE_NAME = @PACKAGE_NAME@
123
+ PACKAGE_STRING = @PACKAGE_STRING@
124
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
125
+ PACKAGE_VERSION = @PACKAGE_VERSION@
126
+ PATH_SEPARATOR = @PATH_SEPARATOR@
127
+ RANLIB = @RANLIB@
128
+ SED = @SED@
129
+ SET_MAKE = @SET_MAKE@
130
+ SHELL = @SHELL@
131
+ STRIP = @STRIP@
132
+ VERSION = @VERSION@
133
+ abs_builddir = @abs_builddir@
134
+ abs_srcdir = @abs_srcdir@
135
+ abs_top_builddir = @abs_top_builddir@
136
+ abs_top_srcdir = @abs_top_srcdir@
137
+ ac_ct_CC = @ac_ct_CC@
138
+ ac_ct_CXX = @ac_ct_CXX@
139
+ ac_ct_F77 = @ac_ct_F77@
140
+ am__include = @am__include@
141
+ am__leading_dot = @am__leading_dot@
142
+ am__quote = @am__quote@
143
+ am__tar = @am__tar@
144
+ am__untar = @am__untar@
145
+ bindir = @bindir@
146
+ build = @build@
147
+ build_alias = @build_alias@
148
+ build_cpu = @build_cpu@
149
+ build_os = @build_os@
150
+ build_vendor = @build_vendor@
151
+ builddir = @builddir@
152
+ datadir = @datadir@
153
+ datarootdir = @datarootdir@
154
+ docdir = @docdir@
155
+ dvidir = @dvidir@
156
+ exec_prefix = @exec_prefix@
157
+ host = @host@
158
+ host_alias = @host_alias@
159
+ host_cpu = @host_cpu@
160
+ host_os = @host_os@
161
+ host_vendor = @host_vendor@
162
+ htmldir = @htmldir@
163
+ includedir = @includedir@
164
+ infodir = @infodir@
165
+ install_sh = @install_sh@
166
+ libdir = @libdir@
167
+ libexecdir = @libexecdir@
168
+ localedir = @localedir@
169
+ localstatedir = @localstatedir@
170
+ mandir = @mandir@
171
+ mkdir_p = @mkdir_p@
172
+ oldincludedir = @oldincludedir@
173
+ pdfdir = @pdfdir@
174
+ prefix = @prefix@
175
+ program_transform_name = @program_transform_name@
176
+ psdir = @psdir@
177
+ sbindir = @sbindir@
178
+ sharedstatedir = @sharedstatedir@
179
+ srcdir = @srcdir@
180
+ sysconfdir = @sysconfdir@
181
+ target_alias = @target_alias@
182
+ top_builddir = @top_builddir@
183
+ top_srcdir = @top_srcdir@
184
+ AUTOMAKE_OPTIONS = foreign no-dependencies
185
+ VERSION_INFO = 0:1
186
+ EXTRA_DIST = LICENSE Changes autogen.sh \
187
+ src/ev_dispatch.h src/ev_dispatch.cc \
188
+ src/ev_http.h src/ev_http.cc \
189
+ test/next_test.cc test/key_test.cc
190
+
191
+ SUBDIRS = src test
192
+ all: config.h
193
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
194
+
195
+ .SUFFIXES:
196
+ am--refresh:
197
+ @:
198
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
199
+ @for dep in $?; do \
200
+ case '$(am__configure_deps)' in \
201
+ *$$dep*) \
202
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
203
+ cd $(srcdir) && $(AUTOMAKE) --foreign \
204
+ && exit 0; \
205
+ exit 1;; \
206
+ esac; \
207
+ done; \
208
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
209
+ cd $(top_srcdir) && \
210
+ $(AUTOMAKE) --foreign Makefile
211
+ .PRECIOUS: Makefile
212
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
213
+ @case '$?' in \
214
+ *config.status*) \
215
+ echo ' $(SHELL) ./config.status'; \
216
+ $(SHELL) ./config.status;; \
217
+ *) \
218
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
219
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
220
+ esac;
221
+
222
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
223
+ $(SHELL) ./config.status --recheck
224
+
225
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
226
+ cd $(srcdir) && $(AUTOCONF)
227
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
228
+ cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
229
+
230
+ config.h: stamp-h1
231
+ @if test ! -f $@; then \
232
+ rm -f stamp-h1; \
233
+ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
234
+ else :; fi
235
+
236
+ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
237
+ @rm -f stamp-h1
238
+ cd $(top_builddir) && $(SHELL) ./config.status config.h
239
+ $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
240
+ cd $(top_srcdir) && $(AUTOHEADER)
241
+ rm -f stamp-h1
242
+ touch $@
243
+
244
+ distclean-hdr:
245
+ -rm -f config.h stamp-h1
246
+
247
+ mostlyclean-libtool:
248
+ -rm -f *.lo
249
+
250
+ clean-libtool:
251
+ -rm -rf .libs _libs
252
+
253
+ distclean-libtool:
254
+ -rm -f libtool
255
+
256
+ # This directory's subdirectories are mostly independent; you can cd
257
+ # into them and run `make' without going through this Makefile.
258
+ # To change the values of `make' variables: instead of editing Makefiles,
259
+ # (1) if the variable is set in `config.status', edit `config.status'
260
+ # (which will cause the Makefiles to be regenerated when you run `make');
261
+ # (2) otherwise, pass the desired values on the `make' command line.
262
+ $(RECURSIVE_TARGETS):
263
+ @failcom='exit 1'; \
264
+ for f in x $$MAKEFLAGS; do \
265
+ case $$f in \
266
+ *=* | --[!k]*);; \
267
+ *k*) failcom='fail=yes';; \
268
+ esac; \
269
+ done; \
270
+ dot_seen=no; \
271
+ target=`echo $@ | sed s/-recursive//`; \
272
+ list='$(SUBDIRS)'; for subdir in $$list; do \
273
+ echo "Making $$target in $$subdir"; \
274
+ if test "$$subdir" = "."; then \
275
+ dot_seen=yes; \
276
+ local_target="$$target-am"; \
277
+ else \
278
+ local_target="$$target"; \
279
+ fi; \
280
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
281
+ || eval $$failcom; \
282
+ done; \
283
+ if test "$$dot_seen" = "no"; then \
284
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
285
+ fi; test -z "$$fail"
286
+
287
+ $(RECURSIVE_CLEAN_TARGETS):
288
+ @failcom='exit 1'; \
289
+ for f in x $$MAKEFLAGS; do \
290
+ case $$f in \
291
+ *=* | --[!k]*);; \
292
+ *k*) failcom='fail=yes';; \
293
+ esac; \
294
+ done; \
295
+ dot_seen=no; \
296
+ case "$@" in \
297
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
298
+ *) list='$(SUBDIRS)' ;; \
299
+ esac; \
300
+ rev=''; for subdir in $$list; do \
301
+ if test "$$subdir" = "."; then :; else \
302
+ rev="$$subdir $$rev"; \
303
+ fi; \
304
+ done; \
305
+ rev="$$rev ."; \
306
+ target=`echo $@ | sed s/-recursive//`; \
307
+ for subdir in $$rev; do \
308
+ echo "Making $$target in $$subdir"; \
309
+ if test "$$subdir" = "."; then \
310
+ local_target="$$target-am"; \
311
+ else \
312
+ local_target="$$target"; \
313
+ fi; \
314
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
315
+ || eval $$failcom; \
316
+ done && test -z "$$fail"
317
+ tags-recursive:
318
+ list='$(SUBDIRS)'; for subdir in $$list; do \
319
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
320
+ done
321
+ ctags-recursive:
322
+ list='$(SUBDIRS)'; for subdir in $$list; do \
323
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
324
+ done
325
+
326
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
327
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
328
+ unique=`for i in $$list; do \
329
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
330
+ done | \
331
+ $(AWK) ' { files[$$0] = 1; } \
332
+ END { for (i in files) print i; }'`; \
333
+ mkid -fID $$unique
334
+ tags: TAGS
335
+
336
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
337
+ $(TAGS_FILES) $(LISP)
338
+ tags=; \
339
+ here=`pwd`; \
340
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
341
+ include_option=--etags-include; \
342
+ empty_fix=.; \
343
+ else \
344
+ include_option=--include; \
345
+ empty_fix=; \
346
+ fi; \
347
+ list='$(SUBDIRS)'; for subdir in $$list; do \
348
+ if test "$$subdir" = .; then :; else \
349
+ test ! -f $$subdir/TAGS || \
350
+ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
351
+ fi; \
352
+ done; \
353
+ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
354
+ unique=`for i in $$list; do \
355
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
356
+ done | \
357
+ $(AWK) ' { files[$$0] = 1; } \
358
+ END { for (i in files) print i; }'`; \
359
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
360
+ test -n "$$unique" || unique=$$empty_fix; \
361
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
362
+ $$tags $$unique; \
363
+ fi
364
+ ctags: CTAGS
365
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
366
+ $(TAGS_FILES) $(LISP)
367
+ tags=; \
368
+ here=`pwd`; \
369
+ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
370
+ unique=`for i in $$list; do \
371
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
372
+ done | \
373
+ $(AWK) ' { files[$$0] = 1; } \
374
+ END { for (i in files) print i; }'`; \
375
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
376
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
377
+ $$tags $$unique
378
+
379
+ GTAGS:
380
+ here=`$(am__cd) $(top_builddir) && pwd` \
381
+ && cd $(top_srcdir) \
382
+ && gtags -i $(GTAGS_ARGS) $$here
383
+
384
+ distclean-tags:
385
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
386
+
387
+ distdir: $(DISTFILES)
388
+ $(am__remove_distdir)
389
+ test -d $(distdir) || mkdir $(distdir)
390
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
391
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
392
+ list='$(DISTFILES)'; \
393
+ dist_files=`for file in $$list; do echo $$file; done | \
394
+ sed -e "s|^$$srcdirstrip/||;t" \
395
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
396
+ case $$dist_files in \
397
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
398
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
399
+ sort -u` ;; \
400
+ esac; \
401
+ for file in $$dist_files; do \
402
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
403
+ if test -d $$d/$$file; then \
404
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
405
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
406
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
407
+ fi; \
408
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
409
+ else \
410
+ test -f $(distdir)/$$file \
411
+ || cp -p $$d/$$file $(distdir)/$$file \
412
+ || exit 1; \
413
+ fi; \
414
+ done
415
+ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
416
+ if test "$$subdir" = .; then :; else \
417
+ test -d "$(distdir)/$$subdir" \
418
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
419
+ || exit 1; \
420
+ distdir=`$(am__cd) $(distdir) && pwd`; \
421
+ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
422
+ (cd $$subdir && \
423
+ $(MAKE) $(AM_MAKEFLAGS) \
424
+ top_distdir="$$top_distdir" \
425
+ distdir="$$distdir/$$subdir" \
426
+ am__remove_distdir=: \
427
+ am__skip_length_check=: \
428
+ distdir) \
429
+ || exit 1; \
430
+ fi; \
431
+ done
432
+ -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
433
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
434
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
435
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
436
+ || chmod -R a+r $(distdir)
437
+ dist-gzip: distdir
438
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
439
+ $(am__remove_distdir)
440
+
441
+ dist-bzip2: distdir
442
+ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
443
+ $(am__remove_distdir)
444
+
445
+ dist-tarZ: distdir
446
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
447
+ $(am__remove_distdir)
448
+
449
+ dist-shar: distdir
450
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
451
+ $(am__remove_distdir)
452
+
453
+ dist-zip: distdir
454
+ -rm -f $(distdir).zip
455
+ zip -rq $(distdir).zip $(distdir)
456
+ $(am__remove_distdir)
457
+
458
+ dist dist-all: distdir
459
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
460
+ $(am__remove_distdir)
461
+
462
+ # This target untars the dist file and tries a VPATH configuration. Then
463
+ # it guarantees that the distribution is self-contained by making another
464
+ # tarfile.
465
+ distcheck: dist
466
+ case '$(DIST_ARCHIVES)' in \
467
+ *.tar.gz*) \
468
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
469
+ *.tar.bz2*) \
470
+ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
471
+ *.tar.Z*) \
472
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
473
+ *.shar.gz*) \
474
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
475
+ *.zip*) \
476
+ unzip $(distdir).zip ;;\
477
+ esac
478
+ chmod -R a-w $(distdir); chmod a+w $(distdir)
479
+ mkdir $(distdir)/_build
480
+ mkdir $(distdir)/_inst
481
+ chmod a-w $(distdir)
482
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
483
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
484
+ && cd $(distdir)/_build \
485
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
486
+ $(DISTCHECK_CONFIGURE_FLAGS) \
487
+ && $(MAKE) $(AM_MAKEFLAGS) \
488
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
489
+ && $(MAKE) $(AM_MAKEFLAGS) check \
490
+ && $(MAKE) $(AM_MAKEFLAGS) install \
491
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
492
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
493
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
494
+ distuninstallcheck \
495
+ && chmod -R a-w "$$dc_install_base" \
496
+ && ({ \
497
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
498
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
499
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
500
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
501
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
502
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
503
+ && rm -rf "$$dc_destdir" \
504
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
505
+ && rm -rf $(DIST_ARCHIVES) \
506
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
507
+ $(am__remove_distdir)
508
+ @(echo "$(distdir) archives ready for distribution: "; \
509
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
510
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
511
+ distuninstallcheck:
512
+ @cd $(distuninstallcheck_dir) \
513
+ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
514
+ || { echo "ERROR: files left after uninstall:" ; \
515
+ if test -n "$(DESTDIR)"; then \
516
+ echo " (check DESTDIR support)"; \
517
+ fi ; \
518
+ $(distuninstallcheck_listfiles) ; \
519
+ exit 1; } >&2
520
+ distcleancheck: distclean
521
+ @if test '$(srcdir)' = . ; then \
522
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
523
+ exit 1 ; \
524
+ fi
525
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
526
+ || { echo "ERROR: files left in build directory after distclean:" ; \
527
+ $(distcleancheck_listfiles) ; \
528
+ exit 1; } >&2
529
+ check-am: all-am
530
+ check: check-recursive
531
+ all-am: Makefile config.h
532
+ installdirs: installdirs-recursive
533
+ installdirs-am:
534
+ install: install-recursive
535
+ install-exec: install-exec-recursive
536
+ install-data: install-data-recursive
537
+ uninstall: uninstall-recursive
538
+
539
+ install-am: all-am
540
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
541
+
542
+ installcheck: installcheck-recursive
543
+ install-strip:
544
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
545
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
546
+ `test -z '$(STRIP)' || \
547
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
548
+ mostlyclean-generic:
549
+
550
+ clean-generic:
551
+
552
+ distclean-generic:
553
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
554
+
555
+ maintainer-clean-generic:
556
+ @echo "This command is intended for maintainers to use"
557
+ @echo "it deletes files that may require special tools to rebuild."
558
+ clean: clean-recursive
559
+
560
+ clean-am: clean-generic clean-libtool mostlyclean-am
561
+
562
+ distclean: distclean-recursive
563
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
564
+ -rm -f Makefile
565
+ distclean-am: clean-am distclean-generic distclean-hdr \
566
+ distclean-libtool distclean-tags
567
+
568
+ dvi: dvi-recursive
569
+
570
+ dvi-am:
571
+
572
+ html: html-recursive
573
+
574
+ info: info-recursive
575
+
576
+ info-am:
577
+
578
+ install-data-am:
579
+
580
+ install-dvi: install-dvi-recursive
581
+
582
+ install-exec-am:
583
+
584
+ install-html: install-html-recursive
585
+
586
+ install-info: install-info-recursive
587
+
588
+ install-man:
589
+
590
+ install-pdf: install-pdf-recursive
591
+
592
+ install-ps: install-ps-recursive
593
+
594
+ installcheck-am:
595
+
596
+ maintainer-clean: maintainer-clean-recursive
597
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
598
+ -rm -rf $(top_srcdir)/autom4te.cache
599
+ -rm -f Makefile
600
+ maintainer-clean-am: distclean-am maintainer-clean-generic
601
+
602
+ mostlyclean: mostlyclean-recursive
603
+
604
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
605
+
606
+ pdf: pdf-recursive
607
+
608
+ pdf-am:
609
+
610
+ ps: ps-recursive
611
+
612
+ ps-am:
613
+
614
+ uninstall-am:
615
+
616
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
617
+ install-strip
618
+
619
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
620
+ all all-am am--refresh check check-am clean clean-generic \
621
+ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \
622
+ dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \
623
+ distclean-generic distclean-hdr distclean-libtool \
624
+ distclean-tags distcleancheck distdir distuninstallcheck dvi \
625
+ dvi-am html html-am info info-am install install-am \
626
+ install-data install-data-am install-dvi install-dvi-am \
627
+ install-exec install-exec-am install-html install-html-am \
628
+ install-info install-info-am install-man install-pdf \
629
+ install-pdf-am install-ps install-ps-am install-strip \
630
+ installcheck installcheck-am installdirs installdirs-am \
631
+ maintainer-clean maintainer-clean-generic mostlyclean \
632
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
633
+ tags tags-recursive uninstall uninstall-am
634
+
635
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
636
+ # Otherwise a system limit (for SysV at least) may be exceeded.
637
+ .NOEXPORT:
@@ -0,0 +1,3 @@
1
+ A high performance event based network request library.
2
+ Send requests to a background thread running an event loop based on libev.
3
+ Designed to make multiple simultaneous requests while performing other forground tasks.
@@ -0,0 +1,5 @@
1
+ write gnu autoconf scripts
2
+ include test for curl_socket_t to detect valid curl library
3
+ write ruby interface
4
+ write test suite
5
+ write python interface