passenger 5.0.30 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +30 -1
- data/CONTRIBUTING.md +1 -1
- data/CONTRIBUTORS +2 -0
- data/bin/passenger-install-nginx-module +18 -13
- data/build/agent.rb +1 -0
- data/build/basics.rb +1 -0
- data/build/cxx_tests.rb +6 -1
- data/build/misc.rb +3 -0
- data/build/packaging.rb +5 -17
- data/build/support/cxx_dependency_map.rb +100 -0
- data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/builder.rb +4 -1
- data/build/test_basics.rb +12 -2
- data/dev/ci/run_travis.sh +6 -2
- data/doc/Users guide Apache.html +7 -2
- data/doc/Users guide Apache.txt +4 -0
- data/resources/templates/error_layout.css +70 -84
- data/resources/templates/error_layout.html.template +84 -93
- data/resources/templates/standalone/http.erb +17 -13
- data/resources/templates/standalone/server.erb +2 -1
- data/resources/templates/undisclosed_error.html.template +52 -51
- data/resources/update_check_client_cert.p12 +0 -0
- data/resources/update_check_client_cert.pem +89 -0
- data/resources/update_check_server_pubkey.pem +14 -0
- data/src/agent/Core/ApplicationPool/ErrorRenderer.h +15 -1
- data/src/agent/Core/Controller.h +3 -2
- data/src/agent/Core/Controller/CheckoutSession.cpp +5 -4
- data/src/agent/Core/Controller/ForwardResponse.cpp +1 -1
- data/src/agent/Core/Controller/InitRequest.cpp +2 -0
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +1 -0
- data/src/agent/Core/Controller/Request.h +1 -0
- data/src/agent/Core/CoreMain.cpp +99 -2
- data/src/agent/Core/OptionParser.h +18 -1
- data/src/agent/Core/SecurityUpdateChecker.h +559 -0
- data/src/agent/Shared/Base.cpp +6 -1
- data/src/agent/TempDirToucher/TempDirToucherMain.cpp +52 -0
- data/src/agent/Watchdog/InstanceDirToucher.cpp +1 -2
- data/src/agent/Watchdog/WatchdogMain.cpp +31 -40
- data/src/apache2_module/Configuration.cpp +12 -0
- data/src/apache2_module/Configuration.hpp +5 -0
- data/src/apache2_module/ConfigurationCommands.cpp +19 -19
- data/src/apache2_module/ConfigurationCommands.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigurationFields.hpp +19 -19
- data/src/apache2_module/ConfigurationFields.hpp.cxxcodebuilder +2 -2
- data/src/apache2_module/ConfigurationSetters.cpp +19 -19
- data/src/apache2_module/ConfigurationSetters.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/CreateDirConfig.cpp +19 -19
- data/src/apache2_module/CreateDirConfig.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/Hooks.cpp +10 -1
- data/src/apache2_module/MergeDirConfig.cpp +19 -19
- data/src/apache2_module/MergeDirConfig.cpp.cxxcodebuilder +2 -2
- data/src/apache2_module/SetHeaders.cpp +19 -19
- data/src/apache2_module/SetHeaders.cpp.cxxcodebuilder +2 -2
- data/src/cxx_supportlib/Constants.h +22 -22
- data/src/cxx_supportlib/Constants.h.cxxcodebuilder +4 -1
- data/src/cxx_supportlib/Crypto.cpp +977 -0
- data/src/cxx_supportlib/Crypto.h +147 -0
- data/src/cxx_supportlib/InstanceDirectory.h +55 -2
- data/src/cxx_supportlib/Utils/Curl.h +24 -10
- data/src/cxx_supportlib/Utils/JsonUtils.h +1 -1
- data/src/cxx_supportlib/oxt/detail/spin_lock_darwin.hpp +2 -0
- data/src/cxx_supportlib/vendor-modified/boost/system/error_code.hpp +3 -3
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json-forwards.h +167 -92
- data/src/cxx_supportlib/vendor-modified/jsoncpp/json.h +1827 -1542
- data/src/cxx_supportlib/vendor-modified/jsoncpp/jsoncpp.cpp +4705 -3652
- data/src/cxx_supportlib/vendor-modified/libev/Changes +46 -15
- data/src/cxx_supportlib/vendor-modified/libev/LICENSE +1 -1
- data/src/cxx_supportlib/vendor-modified/libev/Makefile.in +215 -128
- data/src/cxx_supportlib/vendor-modified/libev/aclocal.m4 +466 -275
- data/src/cxx_supportlib/vendor-modified/libev/config.guess +312 -418
- data/src/cxx_supportlib/vendor-modified/libev/config.sub +246 -105
- data/src/cxx_supportlib/vendor-modified/libev/configure +276 -72
- data/src/cxx_supportlib/vendor-modified/libev/configure.ac +2 -1
- data/src/cxx_supportlib/vendor-modified/libev/depcomp +346 -185
- data/src/cxx_supportlib/vendor-modified/libev/ev++.h +1 -1
- data/src/cxx_supportlib/vendor-modified/libev/ev.c +530 -190
- data/src/cxx_supportlib/vendor-modified/libev/ev.h +23 -14
- data/src/cxx_supportlib/vendor-modified/libev/ev_epoll.c +12 -6
- data/src/cxx_supportlib/vendor-modified/libev/ev_kqueue.c +9 -5
- data/src/cxx_supportlib/vendor-modified/libev/ev_poll.c +6 -3
- data/src/cxx_supportlib/vendor-modified/libev/ev_port.c +8 -4
- data/src/cxx_supportlib/vendor-modified/libev/ev_select.c +4 -2
- data/src/cxx_supportlib/vendor-modified/libev/ev_vars.h +3 -2
- data/src/cxx_supportlib/vendor-modified/libev/ev_win32.c +3 -4
- data/src/cxx_supportlib/vendor-modified/libev/install-sh +433 -219
- data/src/cxx_supportlib/vendor-modified/libev/libev.m4 +6 -6
- data/src/cxx_supportlib/vendor-modified/libev/ltmain.sh +2 -2
- data/src/cxx_supportlib/vendor-modified/libev/missing +167 -288
- data/src/cxx_supportlib/vendor-modified/libev/mkinstalldirs +72 -21
- data/src/cxx_supportlib/vendor-modified/modp_b64.cpp +4 -106
- data/src/cxx_supportlib/vendor-modified/modp_b64_data.h +37 -1
- data/src/cxx_supportlib/vendor-modified/modp_b64_strict_aliasing.cpp +119 -0
- data/src/helper-scripts/node-loader.js +72 -1
- data/src/nginx_module/CacheLocationConfig.c +52 -19
- data/src/nginx_module/CacheLocationConfig.c.cxxcodebuilder +2 -2
- data/src/nginx_module/Configuration.c +26 -1
- data/src/nginx_module/Configuration.h +2 -0
- data/src/nginx_module/ConfigurationCommands.c +35 -19
- data/src/nginx_module/ConfigurationCommands.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ContentHandler.c +1 -1
- data/src/nginx_module/CreateLocationConfig.c +22 -19
- data/src/nginx_module/CreateLocationConfig.c.cxxcodebuilder +2 -2
- data/src/nginx_module/LocationConfig.h +21 -19
- data/src/nginx_module/LocationConfig.h.cxxcodebuilder +2 -2
- data/src/nginx_module/MergeLocationConfig.c +25 -19
- data/src/nginx_module/MergeLocationConfig.c.cxxcodebuilder +2 -2
- data/src/nginx_module/ngx_http_passenger_module.c +8 -4
- data/src/ruby_supportlib/phusion_passenger.rb +9 -4
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance_registry.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +13 -0
- data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +5 -2
- data/src/ruby_supportlib/phusion_passenger/constants.rb +1 -1
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +15 -3
- data/src/ruby_supportlib/phusion_passenger/platform_info/crypto.rb +51 -0
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/apache2.rb +7 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +17 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +4 -2
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +4 -0
- data/src/ruby_supportlib/phusion_passenger/standalone/start_command/nginx_engine.rb +5 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/app.rb +19 -10
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/base.rb +25 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/gdb_controller.rb +38 -103
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/lldb_controller.rb +178 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/utils.rb +94 -0
- data/src/ruby_supportlib/phusion_passenger/vendor/crash_watch/version.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +2 -2
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis +5 -3
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis-with-sudo +9 -7
- metadata +14 -4
@@ -1,17 +1,48 @@
|
|
1
1
|
Revision history for libev, a high-performance and full-featured event loop.
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
3
|
+
4.23 Wed Nov 16 18:23:41 CET 2016
|
4
|
+
- move some declarations at the beginning to help certain retarded
|
5
|
+
microsoft compilers, even though their documentation claims
|
6
|
+
otherwise (reported by Ruslan Osmanov).
|
7
|
+
|
8
|
+
4.22 Sun Dec 20 22:11:50 CET 2015
|
9
|
+
- when epoll detects unremovable fds in the fd set, rebuild
|
10
|
+
only the epoll descriptor, not the signal pipe, to avoid
|
11
|
+
SIGPIPE in ev_async_send. This doesn't solve it on fork,
|
12
|
+
so document what needs to be done in ev_loop_fork
|
13
|
+
(analyzed by Benjamin Mahler).
|
14
|
+
- remove superfluous sys/timeb.h include on win32
|
15
|
+
(analyzed by Jason Madden).
|
16
|
+
- updated libecb.
|
17
|
+
|
18
|
+
4.20 Sat Jun 20 13:01:43 CEST 2015
|
19
|
+
- prefer noexcept over throw () with C++ 11.
|
20
|
+
- update ecb.h due to incompatibilities with c11.
|
21
|
+
- fix a potential aliasing issue when reading and writing
|
22
|
+
watcher callbacks.
|
23
|
+
|
24
|
+
4.19 Thu Sep 25 08:18:25 CEST 2014
|
25
|
+
- ev.h wasn't valid C++ anymore, which tripped compilers other than
|
26
|
+
clang, msvc or gcc (analyzed by Raphael 'kena' Poss). Unfortunately,
|
27
|
+
C++ doesn't support typedefs for function pointers fully, so the affected
|
28
|
+
declarations have to spell out the types each time.
|
29
|
+
- when not using autoconf, tighten the check for clock_gettime and related
|
30
|
+
functionality.
|
31
|
+
|
32
|
+
4.18 Fri Sep 5 17:55:26 CEST 2014
|
33
|
+
- events on files were not always generated properly with the
|
34
|
+
epoll backend (testcase by Assaf Inbal).
|
35
|
+
- mark event pipe fd as cloexec after a fork (analyzed by Sami Farin).
|
36
|
+
- (ecb) support m68k, m88k and sh (patch by Miod Vallat).
|
37
|
+
- use a reasonable fallback for EV_NSIG instead of erroring out
|
38
|
+
when we can't detect the signal set size.
|
39
|
+
- in the absence of autoconf, do not use the clock syscall
|
40
|
+
on glibc >= 2.17 (avoids the syscall AND -lrt on systems
|
41
|
+
doing clock_gettime in userspace).
|
42
|
+
- ensure extern "C" function pointers are used for externally-visible
|
43
|
+
loop callbacks (not watcher callbacks yet).
|
44
|
+
- (ecb) work around memory barriers and volatile apparently both being
|
45
|
+
broken in visual studio 2008 and later (analysed and patch by Nicolas Noble).
|
15
46
|
|
16
47
|
4.15 Fri Mar 1 12:04:50 CET 2013
|
17
48
|
- destroying a non-default loop would stop the global waitpid
|
@@ -41,7 +72,7 @@ TODO: document portbaility requirements for atomic pointer access
|
|
41
72
|
- include sys/syscall.h instead of plain syscall.h.
|
42
73
|
- check for io watcher loops in ev_verify, check for the most
|
43
74
|
common reported usage bug in ev_io_start.
|
44
|
-
-
|
75
|
+
- choose socket vs. WSASocket at compiletime using EV_USE_WSASOCKET.
|
45
76
|
- always use WSASend/WSARecv directly on windows, hoping that this
|
46
77
|
works in all cases (unlike read/write/send/recv...).
|
47
78
|
- try to detect signals around a fork faster (test program by
|
@@ -50,7 +81,7 @@ TODO: document portbaility requirements for atomic pointer access
|
|
50
81
|
- rename ev::embed::set to ev::embed::set_embed to avoid clashing
|
51
82
|
the watcher base set (loop) method.
|
52
83
|
- rewrite the async/signal pipe logic to always keep a valid fd, which
|
53
|
-
simplifies (and
|
84
|
+
simplifies (and hopefully correctifies :) the race checking
|
54
85
|
on fork, at the cost of one extra fd.
|
55
86
|
- add fat, msdos, jffs2, ramfs, ntfs and btrfs to the list of
|
56
87
|
inotify-supporting filesystems.
|
@@ -252,7 +283,7 @@ TODO: document portbaility requirements for atomic pointer access
|
|
252
283
|
- implement ev_suspend and ev_resume.
|
253
284
|
- new EV_CUSTOM revents flag for use by applications.
|
254
285
|
- add documentation section about priorities.
|
255
|
-
- add a glossary to the
|
286
|
+
- add a glossary to the documentation.
|
256
287
|
- extend the ev_fork description slightly.
|
257
288
|
- optimize a jump out of call_pending.
|
258
289
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
All files in libev are
|
2
|
-
Copyright (c)2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann.
|
2
|
+
Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann.
|
3
3
|
|
4
4
|
Redistribution and use in source and binary forms, with or without
|
5
5
|
modification, are permitted provided that the following conditions are
|
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.15 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
6
|
-
# Foundation, Inc.
|
4
|
+
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
|
5
|
+
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -17,23 +16,61 @@
|
|
17
16
|
|
18
17
|
|
19
18
|
VPATH = @srcdir@
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
am__is_gnu_make = { \
|
20
|
+
if test -z '$(MAKELEVEL)'; then \
|
21
|
+
false; \
|
22
|
+
elif test -n '$(MAKE_HOST)'; then \
|
23
|
+
true; \
|
24
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
25
|
+
true; \
|
26
|
+
else \
|
27
|
+
false; \
|
28
|
+
fi; \
|
29
|
+
}
|
30
|
+
am__make_running_with_option = \
|
31
|
+
case $${target_option-} in \
|
32
|
+
?) ;; \
|
33
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
34
|
+
"target option '$${target_option-}' specified" >&2; \
|
35
|
+
exit 1;; \
|
36
|
+
esac; \
|
37
|
+
has_opt=no; \
|
38
|
+
sane_makeflags=$$MAKEFLAGS; \
|
39
|
+
if $(am__is_gnu_make); then \
|
40
|
+
sane_makeflags=$$MFLAGS; \
|
41
|
+
else \
|
23
42
|
case $$MAKEFLAGS in \
|
24
43
|
*\\[\ \ ]*) \
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
for am__flg in $$MAKEFLAGS; do \
|
29
|
-
case $$am__flg in \
|
30
|
-
*=*|--*) ;; \
|
31
|
-
*n*) am__dry=yes; break;; \
|
32
|
-
esac; \
|
33
|
-
done;; \
|
44
|
+
bs=\\; \
|
45
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
46
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
34
47
|
esac; \
|
35
|
-
|
36
|
-
|
48
|
+
fi; \
|
49
|
+
skip_next=no; \
|
50
|
+
strip_trailopt () \
|
51
|
+
{ \
|
52
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
53
|
+
}; \
|
54
|
+
for flg in $$sane_makeflags; do \
|
55
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
56
|
+
case $$flg in \
|
57
|
+
*=*|--*) continue;; \
|
58
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
59
|
+
-*I?*) strip_trailopt 'I';; \
|
60
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
61
|
+
-*O?*) strip_trailopt 'O';; \
|
62
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
63
|
+
-*l?*) strip_trailopt 'l';; \
|
64
|
+
-[dEDm]) skip_next=yes;; \
|
65
|
+
-[JT]) skip_next=yes;; \
|
66
|
+
esac; \
|
67
|
+
case $$flg in \
|
68
|
+
*$$target_option*) has_opt=yes; break;; \
|
69
|
+
esac; \
|
70
|
+
done; \
|
71
|
+
test $$has_opt = yes
|
72
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
73
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
37
74
|
pkgdatadir = $(datadir)/@PACKAGE@
|
38
75
|
pkgincludedir = $(includedir)/@PACKAGE@
|
39
76
|
pkglibdir = $(libdir)/@PACKAGE@
|
@@ -53,15 +90,13 @@ POST_UNINSTALL = :
|
|
53
90
|
build_triplet = @build@
|
54
91
|
host_triplet = @host@
|
55
92
|
subdir = .
|
56
|
-
DIST_COMMON = README $(am__configure_deps) $(include_HEADERS) \
|
57
|
-
$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
58
|
-
$(srcdir)/config.h.in $(top_srcdir)/configure config.guess \
|
59
|
-
config.sub depcomp install-sh ltmain.sh missing mkinstalldirs
|
60
93
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
61
94
|
am__aclocal_m4_deps = $(top_srcdir)/libev.m4 \
|
62
95
|
$(top_srcdir)/configure.ac
|
63
96
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
64
97
|
$(ACLOCAL_M4)
|
98
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
99
|
+
$(am__configure_deps) $(include_HEADERS) $(am__DIST_COMMON)
|
65
100
|
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
66
101
|
configure.lineno config.status.lineno
|
67
102
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
@@ -101,22 +136,47 @@ LTLIBRARIES = $(lib_LTLIBRARIES)
|
|
101
136
|
libev_la_LIBADD =
|
102
137
|
am_libev_la_OBJECTS = ev.lo event.lo
|
103
138
|
libev_la_OBJECTS = $(am_libev_la_OBJECTS)
|
104
|
-
|
105
|
-
|
106
|
-
|
139
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
140
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
141
|
+
am__v_lt_0 = --silent
|
142
|
+
am__v_lt_1 =
|
143
|
+
libev_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
144
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
145
|
+
$(libev_la_LDFLAGS) $(LDFLAGS) -o $@
|
146
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
147
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
148
|
+
am__v_P_0 = false
|
149
|
+
am__v_P_1 = :
|
150
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
151
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
152
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
153
|
+
am__v_GEN_1 =
|
154
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
155
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
156
|
+
am__v_at_0 = @
|
157
|
+
am__v_at_1 =
|
107
158
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
108
159
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
109
160
|
am__depfiles_maybe = depfiles
|
110
161
|
am__mv = mv -f
|
111
162
|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
112
163
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
113
|
-
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS)
|
114
|
-
--mode=compile $(CC) $(DEFS)
|
115
|
-
$(
|
164
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
165
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
166
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
167
|
+
$(AM_CFLAGS) $(CFLAGS)
|
168
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
169
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
170
|
+
am__v_CC_0 = @echo " CC " $@;
|
171
|
+
am__v_CC_1 =
|
116
172
|
CCLD = $(CC)
|
117
|
-
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS)
|
118
|
-
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS)
|
119
|
-
$(LDFLAGS) -o $@
|
173
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
174
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
175
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
176
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
177
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
178
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
179
|
+
am__v_CCLD_1 =
|
120
180
|
SOURCES = $(libev_la_SOURCES)
|
121
181
|
DIST_SOURCES = $(libev_la_SOURCES)
|
122
182
|
am__can_run_installinfo = \
|
@@ -128,8 +188,31 @@ man3dir = $(mandir)/man3
|
|
128
188
|
NROFF = nroff
|
129
189
|
MANS = $(man_MANS)
|
130
190
|
HEADERS = $(include_HEADERS)
|
191
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
192
|
+
$(LISP)config.h.in
|
193
|
+
# Read a list of newline-separated strings from the standard input,
|
194
|
+
# and print each of them once, without duplicates. Input order is
|
195
|
+
# *not* preserved.
|
196
|
+
am__uniquify_input = $(AWK) '\
|
197
|
+
BEGIN { nonempty = 0; } \
|
198
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
199
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
200
|
+
'
|
201
|
+
# Make sure the list of sources is unique. This is necessary because,
|
202
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
203
|
+
# for different programs/libraries.
|
204
|
+
am__define_uniq_tagged_files = \
|
205
|
+
list='$(am__tagged_files)'; \
|
206
|
+
unique=`for i in $$list; do \
|
207
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
208
|
+
done | $(am__uniquify_input)`
|
131
209
|
ETAGS = etags
|
132
210
|
CTAGS = ctags
|
211
|
+
CSCOPE = cscope
|
212
|
+
AM_RECURSIVE_TARGETS = cscope
|
213
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in README \
|
214
|
+
TODO compile config.guess config.sub depcomp install-sh \
|
215
|
+
ltmain.sh missing mkinstalldirs
|
133
216
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
134
217
|
distdir = $(PACKAGE)-$(VERSION)
|
135
218
|
top_distdir = $(distdir)
|
@@ -139,14 +222,17 @@ am__remove_distdir = \
|
|
139
222
|
&& rm -rf "$(distdir)" \
|
140
223
|
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
141
224
|
else :; fi
|
225
|
+
am__post_remove_distdir = $(am__remove_distdir)
|
142
226
|
DIST_ARCHIVES = $(distdir).tar.gz
|
143
227
|
GZIP_ENV = --best
|
228
|
+
DIST_TARGETS = dist-gzip
|
144
229
|
distuninstallcheck_listfiles = find . -type f -print
|
145
230
|
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
146
231
|
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
147
232
|
distcleancheck_listfiles = find . -type f -print
|
148
233
|
ACLOCAL = @ACLOCAL@
|
149
234
|
AMTAR = @AMTAR@
|
235
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
150
236
|
AR = @AR@
|
151
237
|
AUTOCONF = @AUTOCONF@
|
152
238
|
AUTOHEADER = @AUTOHEADER@
|
@@ -251,6 +337,7 @@ pdfdir = @pdfdir@
|
|
251
337
|
prefix = @prefix@
|
252
338
|
program_transform_name = @program_transform_name@
|
253
339
|
psdir = @psdir@
|
340
|
+
runstatedir = @runstatedir@
|
254
341
|
sbindir = @sbindir@
|
255
342
|
sharedstatedir = @sharedstatedir@
|
256
343
|
srcdir = @srcdir@
|
@@ -291,7 +378,6 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
|
|
291
378
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
292
379
|
$(am__cd) $(top_srcdir) && \
|
293
380
|
$(AUTOMAKE) --foreign Makefile
|
294
|
-
.PRECIOUS: Makefile
|
295
381
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
296
382
|
@case '$?' in \
|
297
383
|
*config.status*) \
|
@@ -312,8 +398,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
312
398
|
$(am__aclocal_m4_deps):
|
313
399
|
|
314
400
|
config.h: stamp-h1
|
315
|
-
@
|
316
|
-
@
|
401
|
+
@test -f $@ || rm -f stamp-h1
|
402
|
+
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
317
403
|
|
318
404
|
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
319
405
|
@rm -f stamp-h1
|
@@ -325,6 +411,7 @@ $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
325
411
|
|
326
412
|
distclean-hdr:
|
327
413
|
-rm -f config.h stamp-h1
|
414
|
+
|
328
415
|
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
329
416
|
@$(NORMAL_INSTALL)
|
330
417
|
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
@@ -351,14 +438,17 @@ uninstall-libLTLIBRARIES:
|
|
351
438
|
|
352
439
|
clean-libLTLIBRARIES:
|
353
440
|
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
354
|
-
@list='$(lib_LTLIBRARIES)';
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
441
|
+
@list='$(lib_LTLIBRARIES)'; \
|
442
|
+
locs=`for p in $$list; do echo $$p; done | \
|
443
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
444
|
+
sort -u`; \
|
445
|
+
test -z "$$locs" || { \
|
446
|
+
echo rm -f $${locs}; \
|
447
|
+
rm -f $${locs}; \
|
448
|
+
}
|
449
|
+
|
360
450
|
libev.la: $(libev_la_OBJECTS) $(libev_la_DEPENDENCIES) $(EXTRA_libev_la_DEPENDENCIES)
|
361
|
-
$(libev_la_LINK) -rpath $(libdir) $(libev_la_OBJECTS) $(libev_la_LIBADD) $(LIBS)
|
451
|
+
$(AM_V_CCLD)$(libev_la_LINK) -rpath $(libdir) $(libev_la_OBJECTS) $(libev_la_LIBADD) $(LIBS)
|
362
452
|
|
363
453
|
mostlyclean-compile:
|
364
454
|
-rm -f *.$(OBJEXT)
|
@@ -370,25 +460,25 @@ distclean-compile:
|
|
370
460
|
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Plo@am__quote@
|
371
461
|
|
372
462
|
.c.o:
|
373
|
-
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
374
|
-
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
375
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
463
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
464
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
465
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
376
466
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
377
|
-
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
467
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
378
468
|
|
379
469
|
.c.obj:
|
380
|
-
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
381
|
-
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
382
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
470
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
471
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
472
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
383
473
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
384
|
-
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
474
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
385
475
|
|
386
476
|
.c.lo:
|
387
|
-
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
388
|
-
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
389
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
477
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
478
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
479
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
390
480
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
391
|
-
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
481
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
392
482
|
|
393
483
|
mostlyclean-libtool:
|
394
484
|
-rm -f *.lo
|
@@ -463,26 +553,15 @@ uninstall-includeHEADERS:
|
|
463
553
|
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
464
554
|
dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
|
465
555
|
|
466
|
-
ID: $(
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
473
|
-
mkid -fID $$unique
|
474
|
-
tags: TAGS
|
475
|
-
|
476
|
-
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
477
|
-
$(TAGS_FILES) $(LISP)
|
556
|
+
ID: $(am__tagged_files)
|
557
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
558
|
+
tags: tags-am
|
559
|
+
TAGS: tags
|
560
|
+
|
561
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
478
562
|
set x; \
|
479
563
|
here=`pwd`; \
|
480
|
-
|
481
|
-
unique=`for i in $$list; do \
|
482
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
483
|
-
done | \
|
484
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
485
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
564
|
+
$(am__define_uniq_tagged_files); \
|
486
565
|
shift; \
|
487
566
|
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
488
567
|
test -n "$$unique" || unique=$$empty_fix; \
|
@@ -494,15 +573,11 @@ TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
|
494
573
|
$$unique; \
|
495
574
|
fi; \
|
496
575
|
fi
|
497
|
-
ctags:
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
503
|
-
done | \
|
504
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
505
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
576
|
+
ctags: ctags-am
|
577
|
+
|
578
|
+
CTAGS: ctags
|
579
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
580
|
+
$(am__define_uniq_tagged_files); \
|
506
581
|
test -z "$(CTAGS_ARGS)$$unique" \
|
507
582
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
508
583
|
$$unique
|
@@ -511,24 +586,33 @@ GTAGS:
|
|
511
586
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
512
587
|
&& $(am__cd) $(top_srcdir) \
|
513
588
|
&& gtags -i $(GTAGS_ARGS) "$$here"
|
589
|
+
cscope: cscope.files
|
590
|
+
test ! -s cscope.files \
|
591
|
+
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
592
|
+
clean-cscope:
|
593
|
+
-rm -f cscope.files
|
594
|
+
cscope.files: clean-cscope cscopelist
|
595
|
+
cscopelist: cscopelist-am
|
596
|
+
|
597
|
+
cscopelist-am: $(am__tagged_files)
|
598
|
+
list='$(am__tagged_files)'; \
|
599
|
+
case "$(srcdir)" in \
|
600
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
601
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
602
|
+
esac; \
|
603
|
+
for i in $$list; do \
|
604
|
+
if test -f "$$i"; then \
|
605
|
+
echo "$(subdir)/$$i"; \
|
606
|
+
else \
|
607
|
+
echo "$$sdir/$$i"; \
|
608
|
+
fi; \
|
609
|
+
done >> $(top_builddir)/cscope.files
|
514
610
|
|
515
611
|
distclean-tags:
|
516
612
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
613
|
+
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
517
614
|
|
518
615
|
distdir: $(DISTFILES)
|
519
|
-
@list='$(MANS)'; if test -n "$$list"; then \
|
520
|
-
list=`for p in $$list; do \
|
521
|
-
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
522
|
-
if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
|
523
|
-
if test -n "$$list" && \
|
524
|
-
grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
|
525
|
-
echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
|
526
|
-
grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
|
527
|
-
echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
|
528
|
-
echo " typically \`make maintainer-clean' will remove them" >&2; \
|
529
|
-
exit 1; \
|
530
|
-
else :; fi; \
|
531
|
-
else :; fi
|
532
616
|
$(am__remove_distdir)
|
533
617
|
test -d "$(distdir)" || mkdir "$(distdir)"
|
534
618
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@@ -569,40 +653,42 @@ distdir: $(DISTFILES)
|
|
569
653
|
|| chmod -R a+r "$(distdir)"
|
570
654
|
dist-gzip: distdir
|
571
655
|
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
572
|
-
$(
|
656
|
+
$(am__post_remove_distdir)
|
573
657
|
|
574
658
|
dist-bzip2: distdir
|
575
659
|
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
576
|
-
$(
|
660
|
+
$(am__post_remove_distdir)
|
577
661
|
|
578
662
|
dist-lzip: distdir
|
579
663
|
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
580
|
-
$(
|
581
|
-
|
582
|
-
dist-lzma: distdir
|
583
|
-
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
|
584
|
-
$(am__remove_distdir)
|
664
|
+
$(am__post_remove_distdir)
|
585
665
|
|
586
666
|
dist-xz: distdir
|
587
667
|
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
588
|
-
$(
|
668
|
+
$(am__post_remove_distdir)
|
589
669
|
|
590
670
|
dist-tarZ: distdir
|
671
|
+
@echo WARNING: "Support for distribution archives compressed with" \
|
672
|
+
"legacy program 'compress' is deprecated." >&2
|
673
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
591
674
|
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
592
|
-
$(
|
675
|
+
$(am__post_remove_distdir)
|
593
676
|
|
594
677
|
dist-shar: distdir
|
678
|
+
@echo WARNING: "Support for shar distribution archives is" \
|
679
|
+
"deprecated." >&2
|
680
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
595
681
|
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
596
|
-
$(
|
682
|
+
$(am__post_remove_distdir)
|
597
683
|
|
598
684
|
dist-zip: distdir
|
599
685
|
-rm -f $(distdir).zip
|
600
686
|
zip -rq $(distdir).zip $(distdir)
|
601
|
-
$(
|
687
|
+
$(am__post_remove_distdir)
|
602
688
|
|
603
|
-
dist dist-all:
|
604
|
-
|
605
|
-
$(
|
689
|
+
dist dist-all:
|
690
|
+
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
691
|
+
$(am__post_remove_distdir)
|
606
692
|
|
607
693
|
# This target untars the dist file and tries a VPATH configuration. Then
|
608
694
|
# it guarantees that the distribution is self-contained by making another
|
@@ -613,8 +699,6 @@ distcheck: dist
|
|
613
699
|
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
|
614
700
|
*.tar.bz2*) \
|
615
701
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
616
|
-
*.tar.lzma*) \
|
617
|
-
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
|
618
702
|
*.tar.lz*) \
|
619
703
|
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
620
704
|
*.tar.xz*) \
|
@@ -626,18 +710,19 @@ distcheck: dist
|
|
626
710
|
*.zip*) \
|
627
711
|
unzip $(distdir).zip ;;\
|
628
712
|
esac
|
629
|
-
chmod -R a-w $(distdir)
|
630
|
-
|
631
|
-
mkdir $(distdir)/_inst
|
713
|
+
chmod -R a-w $(distdir)
|
714
|
+
chmod u+w $(distdir)
|
715
|
+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
632
716
|
chmod a-w $(distdir)
|
633
717
|
test -d $(distdir)/_build || exit 0; \
|
634
718
|
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
635
719
|
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
636
720
|
&& am__cwd=`pwd` \
|
637
|
-
&& $(am__cd) $(distdir)/_build \
|
638
|
-
&&
|
721
|
+
&& $(am__cd) $(distdir)/_build/sub \
|
722
|
+
&& ../../configure \
|
639
723
|
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
640
724
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
725
|
+
--srcdir=../.. --prefix="$$dc_install_base" \
|
641
726
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
642
727
|
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
643
728
|
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
@@ -660,7 +745,7 @@ distcheck: dist
|
|
660
745
|
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
661
746
|
&& cd "$$am__cwd" \
|
662
747
|
|| exit 1
|
663
|
-
$(
|
748
|
+
$(am__post_remove_distdir)
|
664
749
|
@(echo "$(distdir) archives ready for distribution: "; \
|
665
750
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
666
751
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
@@ -806,25 +891,27 @@ uninstall-man: uninstall-man3
|
|
806
891
|
|
807
892
|
.MAKE: all install-am install-strip
|
808
893
|
|
809
|
-
.PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
|
810
|
-
clean-generic clean-libLTLIBRARIES clean-libtool
|
811
|
-
|
812
|
-
dist-tarZ dist-xz dist-zip
|
813
|
-
distclean-compile distclean-generic
|
814
|
-
distclean-libtool distclean-tags distcleancheck
|
815
|
-
distuninstallcheck dvi dvi-am html html-am info
|
816
|
-
install install-am install-data install-data-am
|
817
|
-
install-dvi-am install-exec install-exec-am
|
818
|
-
install-html-am install-includeHEADERS
|
819
|
-
install-info-am install-libLTLIBRARIES
|
820
|
-
install-man3 install-pdf install-pdf-am install-ps \
|
894
|
+
.PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \
|
895
|
+
clean-cscope clean-generic clean-libLTLIBRARIES clean-libtool \
|
896
|
+
cscope cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
|
897
|
+
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
|
898
|
+
distcheck distclean distclean-compile distclean-generic \
|
899
|
+
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
900
|
+
distdir distuninstallcheck dvi dvi-am html html-am info \
|
901
|
+
info-am install install-am install-data install-data-am \
|
902
|
+
install-dvi install-dvi-am install-exec install-exec-am \
|
903
|
+
install-html install-html-am install-includeHEADERS \
|
904
|
+
install-info install-info-am install-libLTLIBRARIES \
|
905
|
+
install-man install-man3 install-pdf install-pdf-am install-ps \
|
821
906
|
install-ps-am install-strip installcheck installcheck-am \
|
822
907
|
installdirs maintainer-clean maintainer-clean-generic \
|
823
908
|
mostlyclean mostlyclean-compile mostlyclean-generic \
|
824
|
-
mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \
|
909
|
+
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
825
910
|
uninstall-am uninstall-includeHEADERS uninstall-libLTLIBRARIES \
|
826
911
|
uninstall-man uninstall-man3
|
827
912
|
|
913
|
+
.PRECIOUS: Makefile
|
914
|
+
|
828
915
|
|
829
916
|
ev.3: ev.pod
|
830
917
|
pod2man -n LIBEV -r "libev-$(VERSION)" -c "libev - high performance full featured event loop" -s3 <$< >$@
|