evdispatch 0.2.6 → 0.3.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.
- data/History.txt +4 -0
- data/Manifest.txt +3 -0
- data/ext/revdispatch/extconf.rb +12 -18
- data/ext/revdispatch/libdispatch-0.1/Makefile.in +76 -62
- data/ext/revdispatch/libdispatch-0.1/aclocal.m4 +94 -82
- data/ext/revdispatch/libdispatch-0.1/configure +4065 -3519
- data/ext/revdispatch/libdispatch-0.1/configure.ac +5 -2
- data/ext/revdispatch/libdispatch-0.1/libev-3.31/Makefile.in +233 -172
- data/ext/revdispatch/libdispatch-0.1/libev-3.31/aclocal.m4 +6412 -6387
- data/ext/revdispatch/libdispatch-0.1/libev-3.31/configure +249 -134
- data/ext/revdispatch/libdispatch-0.1/src/Makefile.in +73 -60
- data/ext/revdispatch/libdispatch-0.1/src/ev_dispatch.cc +1 -1
- data/ext/revdispatch/libdispatch-0.1/src/ev_http.cc +1 -1
- data/ext/revdispatch/libdispatch-0.1/test/Makefile.in +114 -85
- data/ext/revdispatch/revdispatch.cc +136 -40
- data/ext/revdispatch/rhttp.cc +60 -0
- data/ext/revdispatch/rhttp.h +30 -0
- data/ext/revdispatch/stest.rb +47 -20
- data/ext/revdispatch/util.h +26 -0
- data/lib/evdispatch/version.rb +2 -2
- data/test/test_evdispatch.rb +30 -1
- data/website/index.html +8 -2
- data/website/index.txt +7 -1
- metadata +5 -2
@@ -1,8 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.10 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
-
# Free Software Foundation, Inc.
|
4
|
+
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
+
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
6
6
|
# This Makefile.in is free software; the Free Software Foundation
|
7
7
|
# gives unlimited permission to copy and/or distribute it,
|
8
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -14,16 +14,12 @@
|
|
14
14
|
|
15
15
|
@SET_MAKE@
|
16
16
|
|
17
|
-
|
18
|
-
top_srcdir = @top_srcdir@
|
17
|
+
|
19
18
|
VPATH = @srcdir@
|
20
19
|
pkgdatadir = $(datadir)/@PACKAGE@
|
21
20
|
pkglibdir = $(libdir)/@PACKAGE@
|
22
21
|
pkgincludedir = $(includedir)/@PACKAGE@
|
23
|
-
top_builddir = .
|
24
|
-
|
25
22
|
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
26
|
-
INSTALL = @INSTALL@
|
27
23
|
install_sh_DATA = $(install_sh) -c -m 644
|
28
24
|
install_sh_PROGRAM = $(install_sh) -c
|
29
25
|
install_sh_SCRIPT = $(install_sh) -c
|
@@ -35,10 +31,72 @@ POST_INSTALL = :
|
|
35
31
|
NORMAL_UNINSTALL = :
|
36
32
|
PRE_UNINSTALL = :
|
37
33
|
POST_UNINSTALL = :
|
34
|
+
build_triplet = @build@
|
38
35
|
host_triplet = @host@
|
36
|
+
subdir = .
|
37
|
+
DIST_COMMON = README $(am__configure_deps) $(include_HEADERS) \
|
38
|
+
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
39
|
+
$(srcdir)/config.h.in $(top_srcdir)/configure config.guess \
|
40
|
+
config.sub install-sh ltmain.sh missing mkinstalldirs
|
41
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
42
|
+
am__aclocal_m4_deps = $(top_srcdir)/libev.m4 \
|
43
|
+
$(top_srcdir)/configure.ac
|
44
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
45
|
+
$(ACLOCAL_M4)
|
46
|
+
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
47
|
+
configure.lineno config.status.lineno
|
48
|
+
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
49
|
+
CONFIG_HEADER = config.h
|
50
|
+
CONFIG_CLEAN_FILES =
|
51
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
52
|
+
am__vpath_adj = case $$p in \
|
53
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
54
|
+
*) f=$$p;; \
|
55
|
+
esac;
|
56
|
+
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
|
57
|
+
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man3dir)" \
|
58
|
+
"$(DESTDIR)$(includedir)"
|
59
|
+
libLTLIBRARIES_INSTALL = $(INSTALL)
|
60
|
+
LTLIBRARIES = $(lib_LTLIBRARIES)
|
61
|
+
libev_la_LIBADD =
|
62
|
+
am_libev_la_OBJECTS = ev.lo event.lo
|
63
|
+
libev_la_OBJECTS = $(am_libev_la_OBJECTS)
|
64
|
+
libev_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
65
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(libev_la_LDFLAGS) \
|
66
|
+
$(LDFLAGS) -o $@
|
67
|
+
DEFAULT_INCLUDES = -I.@am__isrc@
|
68
|
+
depcomp =
|
69
|
+
am__depfiles_maybe =
|
70
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
71
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
72
|
+
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
73
|
+
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
74
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
75
|
+
CCLD = $(CC)
|
76
|
+
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
77
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
78
|
+
$(LDFLAGS) -o $@
|
79
|
+
SOURCES = $(libev_la_SOURCES)
|
80
|
+
DIST_SOURCES = $(libev_la_SOURCES)
|
81
|
+
man3dir = $(mandir)/man3
|
82
|
+
NROFF = nroff
|
83
|
+
MANS = $(man_MANS)
|
84
|
+
includeHEADERS_INSTALL = $(INSTALL_HEADER)
|
85
|
+
HEADERS = $(include_HEADERS)
|
86
|
+
ETAGS = etags
|
87
|
+
CTAGS = ctags
|
88
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
89
|
+
distdir = $(PACKAGE)-$(VERSION)
|
90
|
+
top_distdir = $(distdir)
|
91
|
+
am__remove_distdir = \
|
92
|
+
{ test ! -d $(distdir) \
|
93
|
+
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
94
|
+
&& rm -fr $(distdir); }; }
|
95
|
+
DIST_ARCHIVES = $(distdir).tar.gz
|
96
|
+
GZIP_ENV = --best
|
97
|
+
distuninstallcheck_listfiles = find . -type f -print
|
98
|
+
distcleancheck_listfiles = find . -type f -print
|
39
99
|
ACLOCAL = @ACLOCAL@
|
40
|
-
AMDEP_FALSE = @AMDEP_FALSE@
|
41
|
-
AMDEP_TRUE = @AMDEP_TRUE@
|
42
100
|
AMTAR = @AMTAR@
|
43
101
|
AR = @AR@
|
44
102
|
AUTOCONF = @AUTOCONF@
|
@@ -66,6 +124,7 @@ EXEEXT = @EXEEXT@
|
|
66
124
|
F77 = @F77@
|
67
125
|
FFLAGS = @FFLAGS@
|
68
126
|
GREP = @GREP@
|
127
|
+
INSTALL = @INSTALL@
|
69
128
|
INSTALL_DATA = @INSTALL_DATA@
|
70
129
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
71
130
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
@@ -77,9 +136,8 @@ LIBTOOL = @LIBTOOL@
|
|
77
136
|
LN_S = @LN_S@
|
78
137
|
LTLIBOBJS = @LTLIBOBJS@
|
79
138
|
MAINT = @MAINT@
|
80
|
-
MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
|
81
|
-
MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
|
82
139
|
MAKEINFO = @MAKEINFO@
|
140
|
+
MKDIR_P = @MKDIR_P@
|
83
141
|
OBJEXT = @OBJEXT@
|
84
142
|
PACKAGE = @PACKAGE@
|
85
143
|
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
@@ -93,22 +151,25 @@ SET_MAKE = @SET_MAKE@
|
|
93
151
|
SHELL = @SHELL@
|
94
152
|
STRIP = @STRIP@
|
95
153
|
VERSION = @VERSION@
|
154
|
+
abs_builddir = @abs_builddir@
|
155
|
+
abs_srcdir = @abs_srcdir@
|
156
|
+
abs_top_builddir = @abs_top_builddir@
|
157
|
+
abs_top_srcdir = @abs_top_srcdir@
|
96
158
|
ac_ct_CC = @ac_ct_CC@
|
97
159
|
ac_ct_CXX = @ac_ct_CXX@
|
98
160
|
ac_ct_F77 = @ac_ct_F77@
|
99
|
-
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
100
|
-
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
101
|
-
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
102
|
-
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
|
103
161
|
am__include = @am__include@
|
104
162
|
am__leading_dot = @am__leading_dot@
|
105
163
|
am__quote = @am__quote@
|
164
|
+
am__tar = @am__tar@
|
165
|
+
am__untar = @am__untar@
|
106
166
|
bindir = @bindir@
|
107
167
|
build = @build@
|
108
168
|
build_alias = @build_alias@
|
109
169
|
build_cpu = @build_cpu@
|
110
170
|
build_os = @build_os@
|
111
171
|
build_vendor = @build_vendor@
|
172
|
+
builddir = @builddir@
|
112
173
|
datadir = @datadir@
|
113
174
|
datarootdir = @datarootdir@
|
114
175
|
docdir = @docdir@
|
@@ -128,6 +189,7 @@ libexecdir = @libexecdir@
|
|
128
189
|
localedir = @localedir@
|
129
190
|
localstatedir = @localstatedir@
|
130
191
|
mandir = @mandir@
|
192
|
+
mkdir_p = @mkdir_p@
|
131
193
|
oldincludedir = @oldincludedir@
|
132
194
|
pdfdir = @pdfdir@
|
133
195
|
prefix = @prefix@
|
@@ -135,142 +197,122 @@ program_transform_name = @program_transform_name@
|
|
135
197
|
psdir = @psdir@
|
136
198
|
sbindir = @sbindir@
|
137
199
|
sharedstatedir = @sharedstatedir@
|
200
|
+
srcdir = @srcdir@
|
138
201
|
sysconfdir = @sysconfdir@
|
139
202
|
target_alias = @target_alias@
|
203
|
+
top_builddir = @top_builddir@
|
204
|
+
top_srcdir = @top_srcdir@
|
140
205
|
AUTOMAKE_OPTIONS = foreign no-dependencies
|
141
|
-
|
142
206
|
VERSION_INFO = 3:0
|
143
|
-
|
144
207
|
EXTRA_DIST = LICENSE Changes libev.m4 autogen.sh \
|
145
208
|
ev_vars.h ev_wrap.h \
|
146
209
|
ev_epoll.c ev_select.c ev_poll.c ev_kqueue.c ev_port.c ev_win32.c \
|
147
210
|
ev.3 ev.pod
|
148
211
|
|
149
|
-
|
150
212
|
man_MANS = ev.3
|
151
|
-
|
152
213
|
include_HEADERS = ev.h ev++.h event.h
|
153
|
-
|
154
214
|
lib_LTLIBRARIES = libev.la
|
155
|
-
|
156
215
|
libev_la_SOURCES = ev.c event.c
|
157
216
|
libev_la_LDFLAGS = -version-info $(VERSION_INFO)
|
158
|
-
subdir = .
|
159
|
-
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
160
|
-
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
161
|
-
CONFIG_HEADER = config.h
|
162
|
-
CONFIG_CLEAN_FILES =
|
163
|
-
LTLIBRARIES = $(lib_LTLIBRARIES)
|
164
|
-
|
165
|
-
libev_la_LIBADD =
|
166
|
-
am_libev_la_OBJECTS = ev.lo event.lo
|
167
|
-
libev_la_OBJECTS = $(am_libev_la_OBJECTS)
|
168
|
-
|
169
|
-
DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
|
170
|
-
depcomp =
|
171
|
-
am__depfiles_maybe =
|
172
|
-
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
173
|
-
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
174
|
-
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
|
175
|
-
$(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
176
|
-
CCLD = $(CC)
|
177
|
-
LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
178
|
-
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
179
|
-
DIST_SOURCES = $(libev_la_SOURCES)
|
180
|
-
|
181
|
-
NROFF = nroff
|
182
|
-
MANS = $(man_MANS)
|
183
|
-
HEADERS = $(include_HEADERS)
|
184
|
-
|
185
|
-
DIST_COMMON = README $(include_HEADERS) $(srcdir)/Makefile.in \
|
186
|
-
$(srcdir)/configure Makefile.am aclocal.m4 config.guess \
|
187
|
-
config.h.in config.sub configure configure.ac install-sh \
|
188
|
-
ltmain.sh missing mkinstalldirs
|
189
|
-
SOURCES = $(libev_la_SOURCES)
|
190
|
-
|
191
217
|
all: config.h
|
192
218
|
$(MAKE) $(AM_MAKEFLAGS) all-am
|
193
219
|
|
194
220
|
.SUFFIXES:
|
195
221
|
.SUFFIXES: .c .lo .o .obj
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
222
|
+
am--refresh:
|
223
|
+
@:
|
224
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
225
|
+
@for dep in $?; do \
|
226
|
+
case '$(am__configure_deps)' in \
|
227
|
+
*$$dep*) \
|
228
|
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
|
229
|
+
cd $(srcdir) && $(AUTOMAKE) --foreign \
|
230
|
+
&& exit 0; \
|
231
|
+
exit 1;; \
|
232
|
+
esac; \
|
233
|
+
done; \
|
234
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
200
235
|
cd $(top_srcdir) && \
|
201
236
|
$(AUTOMAKE) --foreign Makefile
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
237
|
+
.PRECIOUS: Makefile
|
238
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
239
|
+
@case '$?' in \
|
240
|
+
*config.status*) \
|
241
|
+
echo ' $(SHELL) ./config.status'; \
|
242
|
+
$(SHELL) ./config.status;; \
|
243
|
+
*) \
|
244
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
245
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
246
|
+
esac;
|
247
|
+
|
248
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
206
249
|
$(SHELL) ./config.status --recheck
|
207
|
-
$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
208
|
-
cd $(srcdir) && $(AUTOCONF)
|
209
250
|
|
210
|
-
$(
|
251
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
252
|
+
cd $(srcdir) && $(AUTOCONF)
|
253
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
211
254
|
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
212
255
|
|
213
256
|
config.h: stamp-h1
|
214
257
|
@if test ! -f $@; then \
|
215
258
|
rm -f stamp-h1; \
|
216
|
-
$(MAKE) stamp-h1; \
|
259
|
+
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
|
217
260
|
else :; fi
|
218
261
|
|
219
262
|
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
220
263
|
@rm -f stamp-h1
|
221
264
|
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
222
|
-
|
223
|
-
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(top_srcdir)/configure.ac $(ACLOCAL_M4)
|
265
|
+
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
224
266
|
cd $(top_srcdir) && $(AUTOHEADER)
|
225
|
-
|
267
|
+
rm -f stamp-h1
|
268
|
+
touch $@
|
226
269
|
|
227
270
|
distclean-hdr:
|
228
271
|
-rm -f config.h stamp-h1
|
229
|
-
libLTLIBRARIES_INSTALL = $(INSTALL)
|
230
272
|
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
231
273
|
@$(NORMAL_INSTALL)
|
232
|
-
$(
|
274
|
+
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
233
275
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
234
276
|
if test -f $$p; then \
|
235
|
-
f
|
236
|
-
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \
|
237
|
-
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \
|
277
|
+
f=$(am__strip_dir) \
|
278
|
+
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
279
|
+
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
238
280
|
else :; fi; \
|
239
281
|
done
|
240
282
|
|
241
283
|
uninstall-libLTLIBRARIES:
|
242
284
|
@$(NORMAL_UNINSTALL)
|
243
285
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
244
|
-
|
245
|
-
echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \
|
246
|
-
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
|
286
|
+
p=$(am__strip_dir) \
|
287
|
+
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
288
|
+
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
247
289
|
done
|
248
290
|
|
249
291
|
clean-libLTLIBRARIES:
|
250
292
|
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
251
293
|
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
252
294
|
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
253
|
-
test "$$dir"
|
295
|
+
test "$$dir" != "$$p" || dir=.; \
|
254
296
|
echo "rm -f \"$${dir}/so_locations\""; \
|
255
297
|
rm -f "$${dir}/so_locations"; \
|
256
298
|
done
|
257
299
|
libev.la: $(libev_la_OBJECTS) $(libev_la_DEPENDENCIES)
|
258
|
-
$(
|
300
|
+
$(libev_la_LINK) -rpath $(libdir) $(libev_la_OBJECTS) $(libev_la_LIBADD) $(LIBS)
|
259
301
|
|
260
302
|
mostlyclean-compile:
|
261
|
-
-rm -f *.$(OBJEXT)
|
303
|
+
-rm -f *.$(OBJEXT)
|
262
304
|
|
263
305
|
distclean-compile:
|
264
306
|
-rm -f *.tab.c
|
265
307
|
|
266
308
|
.c.o:
|
267
|
-
$(COMPILE) -c
|
309
|
+
$(COMPILE) -c $<
|
268
310
|
|
269
311
|
.c.obj:
|
270
|
-
$(COMPILE) -c
|
312
|
+
$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
271
313
|
|
272
314
|
.c.lo:
|
273
|
-
$(LTCOMPILE) -c -o $@
|
315
|
+
$(LTCOMPILE) -c -o $@ $<
|
274
316
|
|
275
317
|
mostlyclean-libtool:
|
276
318
|
-rm -f *.lo
|
@@ -280,12 +322,9 @@ clean-libtool:
|
|
280
322
|
|
281
323
|
distclean-libtool:
|
282
324
|
-rm -f libtool
|
283
|
-
uninstall-info-am:
|
284
|
-
|
285
|
-
man3dir = $(mandir)/man3
|
286
325
|
install-man3: $(man3_MANS) $(man_MANS)
|
287
326
|
@$(NORMAL_INSTALL)
|
288
|
-
$(
|
327
|
+
test -z "$(man3dir)" || $(MKDIR_P) "$(DESTDIR)$(man3dir)"
|
289
328
|
@list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \
|
290
329
|
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
291
330
|
for i in $$l2; do \
|
@@ -304,8 +343,8 @@ install-man3: $(man3_MANS) $(man_MANS)
|
|
304
343
|
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
305
344
|
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
306
345
|
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
307
|
-
echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst"; \
|
308
|
-
$(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst; \
|
346
|
+
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
|
347
|
+
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst"; \
|
309
348
|
done
|
310
349
|
uninstall-man3:
|
311
350
|
@$(NORMAL_UNINSTALL)
|
@@ -325,36 +364,27 @@ uninstall-man3:
|
|
325
364
|
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
326
365
|
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
327
366
|
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
328
|
-
echo " rm -f $(DESTDIR)$(man3dir)/$$inst"; \
|
329
|
-
rm -f $(DESTDIR)$(man3dir)/$$inst; \
|
367
|
+
echo " rm -f '$(DESTDIR)$(man3dir)/$$inst'"; \
|
368
|
+
rm -f "$(DESTDIR)$(man3dir)/$$inst"; \
|
330
369
|
done
|
331
|
-
includeHEADERS_INSTALL = $(INSTALL_HEADER)
|
332
370
|
install-includeHEADERS: $(include_HEADERS)
|
333
371
|
@$(NORMAL_INSTALL)
|
334
|
-
$(
|
372
|
+
test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
|
335
373
|
@list='$(include_HEADERS)'; for p in $$list; do \
|
336
374
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
337
|
-
f
|
338
|
-
echo " $(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f"; \
|
339
|
-
$(includeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(includedir)/$$f; \
|
375
|
+
f=$(am__strip_dir) \
|
376
|
+
echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \
|
377
|
+
$(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \
|
340
378
|
done
|
341
379
|
|
342
380
|
uninstall-includeHEADERS:
|
343
381
|
@$(NORMAL_UNINSTALL)
|
344
382
|
@list='$(include_HEADERS)'; for p in $$list; do \
|
345
|
-
f
|
346
|
-
echo " rm -f $(DESTDIR)$(includedir)/$$f"; \
|
347
|
-
rm -f $(DESTDIR)$(includedir)/$$f; \
|
383
|
+
f=$(am__strip_dir) \
|
384
|
+
echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \
|
385
|
+
rm -f "$(DESTDIR)$(includedir)/$$f"; \
|
348
386
|
done
|
349
387
|
|
350
|
-
ETAGS = etags
|
351
|
-
ETAGSFLAGS =
|
352
|
-
|
353
|
-
CTAGS = ctags
|
354
|
-
CTAGSFLAGS =
|
355
|
-
|
356
|
-
tags: TAGS
|
357
|
-
|
358
388
|
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
359
389
|
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
360
390
|
unique=`for i in $$list; do \
|
@@ -363,6 +393,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
|
363
393
|
$(AWK) ' { files[$$0] = 1; } \
|
364
394
|
END { for (i in files) print i; }'`; \
|
365
395
|
mkid -fID $$unique
|
396
|
+
tags: TAGS
|
366
397
|
|
367
398
|
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
368
399
|
$(TAGS_FILES) $(LISP)
|
@@ -374,10 +405,11 @@ TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
374
405
|
done | \
|
375
406
|
$(AWK) ' { files[$$0] = 1; } \
|
376
407
|
END { for (i in files) print i; }'`; \
|
377
|
-
test -z "$(ETAGS_ARGS)$$tags$$unique" \
|
378
|
-
|
379
|
-
|
380
|
-
|
408
|
+
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
409
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
410
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
411
|
+
$$tags $$unique; \
|
412
|
+
fi
|
381
413
|
ctags: CTAGS
|
382
414
|
CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
383
415
|
$(TAGS_FILES) $(LISP)
|
@@ -400,39 +432,25 @@ GTAGS:
|
|
400
432
|
|
401
433
|
distclean-tags:
|
402
434
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
403
|
-
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
404
|
-
|
405
|
-
top_distdir = .
|
406
|
-
distdir = $(PACKAGE)-$(VERSION)
|
407
|
-
|
408
|
-
am__remove_distdir = \
|
409
|
-
{ test ! -d $(distdir) \
|
410
|
-
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
411
|
-
&& rm -fr $(distdir); }; }
|
412
|
-
|
413
|
-
GZIP_ENV = --best
|
414
|
-
distuninstallcheck_listfiles = find . -type f -print
|
415
|
-
distcleancheck_listfiles = find . -type f -print
|
416
435
|
|
417
436
|
distdir: $(DISTFILES)
|
418
437
|
$(am__remove_distdir)
|
419
|
-
mkdir $(distdir)
|
420
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's
|
421
|
-
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's
|
422
|
-
list='$(DISTFILES)';
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
438
|
+
test -d $(distdir) || mkdir $(distdir)
|
439
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
440
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
441
|
+
list='$(DISTFILES)'; \
|
442
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
443
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
444
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
445
|
+
case $$dist_files in \
|
446
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
447
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
448
|
+
sort -u` ;; \
|
449
|
+
esac; \
|
450
|
+
for file in $$dist_files; do \
|
427
451
|
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
428
|
-
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
429
|
-
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
430
|
-
dir="/$$dir"; \
|
431
|
-
$(mkinstalldirs) "$(distdir)$$dir"; \
|
432
|
-
else \
|
433
|
-
dir=''; \
|
434
|
-
fi; \
|
435
452
|
if test -d $$d/$$file; then \
|
453
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
436
454
|
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
437
455
|
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
438
456
|
fi; \
|
@@ -446,22 +464,49 @@ distdir: $(DISTFILES)
|
|
446
464
|
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
447
465
|
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
448
466
|
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
449
|
-
! -type d ! -perm -444 -exec $(
|
467
|
+
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
450
468
|
|| chmod -R a+r $(distdir)
|
451
469
|
dist-gzip: distdir
|
452
|
-
|
470
|
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
471
|
+
$(am__remove_distdir)
|
472
|
+
|
473
|
+
dist-bzip2: distdir
|
474
|
+
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
475
|
+
$(am__remove_distdir)
|
476
|
+
|
477
|
+
dist-tarZ: distdir
|
478
|
+
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
479
|
+
$(am__remove_distdir)
|
480
|
+
|
481
|
+
dist-shar: distdir
|
482
|
+
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
483
|
+
$(am__remove_distdir)
|
484
|
+
|
485
|
+
dist-zip: distdir
|
486
|
+
-rm -f $(distdir).zip
|
487
|
+
zip -rq $(distdir).zip $(distdir)
|
453
488
|
$(am__remove_distdir)
|
454
489
|
|
455
490
|
dist dist-all: distdir
|
456
|
-
|
491
|
+
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
457
492
|
$(am__remove_distdir)
|
458
493
|
|
459
494
|
# This target untars the dist file and tries a VPATH configuration. Then
|
460
495
|
# it guarantees that the distribution is self-contained by making another
|
461
496
|
# tarfile.
|
462
497
|
distcheck: dist
|
463
|
-
$(
|
464
|
-
|
498
|
+
case '$(DIST_ARCHIVES)' in \
|
499
|
+
*.tar.gz*) \
|
500
|
+
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
501
|
+
*.tar.bz2*) \
|
502
|
+
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
503
|
+
*.tar.Z*) \
|
504
|
+
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
505
|
+
*.shar.gz*) \
|
506
|
+
GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
507
|
+
*.zip*) \
|
508
|
+
unzip $(distdir).zip ;;\
|
509
|
+
esac
|
465
510
|
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
466
511
|
mkdir $(distdir)/_build
|
467
512
|
mkdir $(distdir)/_inst
|
@@ -481,19 +526,20 @@ distcheck: dist
|
|
481
526
|
distuninstallcheck \
|
482
527
|
&& chmod -R a-w "$$dc_install_base" \
|
483
528
|
&& ({ \
|
484
|
-
(cd ../.. &&
|
529
|
+
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
485
530
|
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
486
531
|
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
487
532
|
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
488
533
|
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
489
534
|
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
490
535
|
&& rm -rf "$$dc_destdir" \
|
491
|
-
&& $(MAKE) $(AM_MAKEFLAGS) dist
|
492
|
-
&& rm -
|
536
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
537
|
+
&& rm -rf $(DIST_ARCHIVES) \
|
493
538
|
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
494
539
|
$(am__remove_distdir)
|
495
|
-
@echo "$(distdir)
|
496
|
-
|
540
|
+
@(echo "$(distdir) archives ready for distribution: "; \
|
541
|
+
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
542
|
+
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
497
543
|
distuninstallcheck:
|
498
544
|
@cd $(distuninstallcheck_dir) \
|
499
545
|
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
@@ -515,9 +561,10 @@ distcleancheck: distclean
|
|
515
561
|
check-am: all-am
|
516
562
|
check: check-am
|
517
563
|
all-am: Makefile $(LTLIBRARIES) $(MANS) $(HEADERS) config.h
|
518
|
-
|
519
564
|
installdirs:
|
520
|
-
|
565
|
+
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(includedir)"; do \
|
566
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
567
|
+
done
|
521
568
|
install: install-am
|
522
569
|
install-exec: install-exec-am
|
523
570
|
install-data: install-data-am
|
@@ -537,7 +584,7 @@ mostlyclean-generic:
|
|
537
584
|
clean-generic:
|
538
585
|
|
539
586
|
distclean-generic:
|
540
|
-
-rm -f $(CONFIG_CLEAN_FILES)
|
587
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
541
588
|
|
542
589
|
maintainer-clean-generic:
|
543
590
|
@echo "This command is intended for maintainers to use"
|
@@ -550,25 +597,35 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
|
550
597
|
distclean: distclean-am
|
551
598
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
552
599
|
-rm -f Makefile
|
553
|
-
distclean-am: clean-am distclean-compile distclean-generic
|
554
|
-
distclean-libtool distclean-tags
|
600
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
601
|
+
distclean-hdr distclean-libtool distclean-tags
|
555
602
|
|
556
603
|
dvi: dvi-am
|
557
604
|
|
558
605
|
dvi-am:
|
559
606
|
|
607
|
+
html: html-am
|
608
|
+
|
560
609
|
info: info-am
|
561
610
|
|
562
611
|
info-am:
|
563
612
|
|
564
613
|
install-data-am: install-includeHEADERS install-man
|
565
614
|
|
615
|
+
install-dvi: install-dvi-am
|
616
|
+
|
566
617
|
install-exec-am: install-libLTLIBRARIES
|
567
618
|
|
619
|
+
install-html: install-html-am
|
620
|
+
|
568
621
|
install-info: install-info-am
|
569
622
|
|
570
623
|
install-man: install-man3
|
571
624
|
|
625
|
+
install-pdf: install-pdf-am
|
626
|
+
|
627
|
+
install-ps: install-ps-am
|
628
|
+
|
572
629
|
installcheck-am:
|
573
630
|
|
574
631
|
maintainer-clean: maintainer-clean-am
|
@@ -590,26 +647,30 @@ ps: ps-am
|
|
590
647
|
|
591
648
|
ps-am:
|
592
649
|
|
593
|
-
uninstall-am: uninstall-includeHEADERS uninstall-
|
594
|
-
uninstall-
|
650
|
+
uninstall-am: uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
651
|
+
uninstall-man
|
595
652
|
|
596
653
|
uninstall-man: uninstall-man3
|
597
654
|
|
598
|
-
.
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
655
|
+
.MAKE: install-am install-strip
|
656
|
+
|
657
|
+
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
|
658
|
+
clean-generic clean-libLTLIBRARIES clean-libtool ctags dist \
|
659
|
+
dist-all dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip \
|
660
|
+
distcheck distclean distclean-compile distclean-generic \
|
661
|
+
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
662
|
+
distdir distuninstallcheck dvi dvi-am html html-am info \
|
663
|
+
info-am install install-am install-data install-data-am \
|
664
|
+
install-dvi install-dvi-am install-exec install-exec-am \
|
665
|
+
install-html install-html-am install-includeHEADERS \
|
666
|
+
install-info install-info-am install-libLTLIBRARIES \
|
667
|
+
install-man install-man3 install-pdf install-pdf-am install-ps \
|
668
|
+
install-ps-am install-strip installcheck installcheck-am \
|
669
|
+
installdirs maintainer-clean maintainer-clean-generic \
|
670
|
+
mostlyclean mostlyclean-compile mostlyclean-generic \
|
671
|
+
mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
|
672
|
+
uninstall-am uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
673
|
+
uninstall-man uninstall-man3
|
613
674
|
|
614
675
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
615
676
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|