2015-02-07 13:32:56 +00:00
|
|
|
AM_CFLAGS = $(FAM_CFLAGS) $(LIBUNWIND_CFLAGS)
|
2006-03-02 14:07:42 +00:00
|
|
|
|
2016-09-19 18:21:57 +00:00
|
|
|
noinst_PROGRAMS=proc_open test_buffer test_base64 test_configfile
|
2007-09-02 22:23:53 +00:00
|
|
|
sbin_PROGRAMS=lighttpd lighttpd-angel
|
2016-09-19 18:21:57 +00:00
|
|
|
LEMON=$(top_builddir)/src/lemon$(BUILD_EXEEXT)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2016-03-25 16:58:12 +00:00
|
|
|
TESTS=\
|
|
|
|
test_buffer$(EXEEXT) \
|
2016-04-04 05:27:43 +00:00
|
|
|
test_base64$(EXEEXT) \
|
|
|
|
test_configfile$(EXEEXT)
|
2016-03-25 16:58:12 +00:00
|
|
|
|
2016-09-19 18:21:57 +00:00
|
|
|
lemon$(BUILD_EXEEXT): lemon.c
|
2016-10-29 15:19:37 +00:00
|
|
|
$(AM_V_CC)$(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $(srcdir)/lemon.c
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2007-09-02 22:23:53 +00:00
|
|
|
lighttpd_angel_SOURCES=lighttpd-angel.c
|
|
|
|
|
2009-04-11 12:48:20 +00:00
|
|
|
.PHONY: versionstamp parsers
|
2009-04-10 17:35:19 +00:00
|
|
|
|
2009-04-11 12:48:20 +00:00
|
|
|
versionstamp:
|
2009-04-10 17:35:19 +00:00
|
|
|
@test -f versionstamp.h || touch versionstamp.h; \
|
2009-06-16 13:47:15 +00:00
|
|
|
REVISION=""; \
|
2009-07-23 13:01:38 +00:00
|
|
|
if test -d "$(top_srcdir)/.svn" -a -x "`which svnversion`"; then \
|
|
|
|
REVISION="$$(LANG= LC_ALL=C svnversion "$(top_srcdir)" 2>/dev/null || echo exported)"; \
|
2009-06-16 13:47:15 +00:00
|
|
|
if test "$$REVISION" = "exported"; then \
|
|
|
|
REVISION=""; \
|
|
|
|
fi; \
|
|
|
|
fi; \
|
2010-04-28 13:12:36 +00:00
|
|
|
if test -z "$$REVISION" -a -d "$(top_srcdir)/.git" -a -x "`which git`"; then \
|
2009-07-23 13:01:38 +00:00
|
|
|
REVISION="$$(cd "$(top_srcdir)"; LANG= LC_ALL=C git describe --always 2>/dev/null || echo)"; \
|
2009-04-10 17:35:19 +00:00
|
|
|
fi; \
|
|
|
|
if test -n "$$REVISION"; then \
|
|
|
|
echo "#define REPO_VERSION \"-devel-$$REVISION\"" > versionstamp.h.tmp; \
|
|
|
|
else \
|
|
|
|
echo "#define REPO_VERSION \"\"" > versionstamp.h.tmp; \
|
|
|
|
fi; \
|
|
|
|
if ! diff versionstamp.h.tmp versionstamp.h >/dev/null 2>/dev/null; then \
|
|
|
|
mv versionstamp.h.tmp versionstamp.h; \
|
|
|
|
else \
|
|
|
|
rm versionstamp.h.tmp; \
|
|
|
|
fi
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2008-08-27 14:53:06 +00:00
|
|
|
configparser.h: configparser.c
|
2016-09-19 18:21:57 +00:00
|
|
|
configparser.c: $(srcdir)/configparser.y $(srcdir)/lempar.c lemon$(BUILD_EXEEXT)
|
2005-02-20 14:27:00 +00:00
|
|
|
rm -f configparser.h
|
|
|
|
$(LEMON) -q $(srcdir)/configparser.y $(srcdir)/lempar.c
|
|
|
|
|
2008-08-27 14:53:06 +00:00
|
|
|
mod_ssi_exprparser.h: mod_ssi_exprparser.c
|
2016-09-19 18:21:57 +00:00
|
|
|
mod_ssi_exprparser.c: $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c lemon$(BUILD_EXEEXT)
|
2005-02-20 14:27:00 +00:00
|
|
|
rm -f mod_ssi_exprparser.h
|
|
|
|
$(LEMON) -q $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c
|
2008-08-27 14:53:06 +00:00
|
|
|
|
|
|
|
parsers: configparser.c mod_ssi_exprparser.c
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2009-06-10 16:59:01 +00:00
|
|
|
BUILT_SOURCES = parsers versionstamp
|
2008-08-27 14:53:06 +00:00
|
|
|
MAINTAINERCLEANFILES = configparser.c configparser.h mod_ssi_exprparser.c mod_ssi_exprparser.h
|
2016-09-19 18:21:57 +00:00
|
|
|
CLEANFILES = versionstamp.h versionstamp.h.tmp lemon$(BUILD_EXEEXT)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2015-11-22 22:22:20 +00:00
|
|
|
common_src=base64.c buffer.c log.c \
|
2015-06-21 12:47:14 +00:00
|
|
|
keyvalue.c chunk.c \
|
[core] shared code for socket backends
common codebase for socket backends, based off mod_fastcgi with
some features added for mod_proxy
(mostly intended to reduce code duplication and enhance code isolation)
mod_fastcgi and mod_scgi can now use fastcgi.balance and scgi.balance
for similar behavior as proxy.balance, but the balancing is per-host
and not per-proc. proxy.balance is also per-host and not per-proc.
mod_proxy and mod_scgi can now use proxy.map-extensions and
scgi.map-extensions, similar to fastcgi.map-extensions.
mod_fastcgi behavior change (affects only mod_status):
- statistics tags have been renamed from "fastcgi.*" to "gw.*"
"fastcgi.backend.*" -> "gw.backend.*"
"fastcgi.active-requests" -> "gw.active-requests"
("fastcgi.requests" remains "fastcgi.requests")
("proxy.requests" is new)
("scgi.requests" is new)
mod_scgi behavior change (likely minor):
- removed scgi_proclist_sort_down() and scgi_proclist_sort_up().
procs now chosen based on load as measured by num socket connnections
Note:
modules using gw_backend.[ch] are currently still independent modules.
If it had been written as a single module with fastcgi, scgi, proxy
implementations, then there would have been a chance of breaking some
existing user configurations where module ordering made a difference
for which module handled a given request, though for most people, this
would have made no difference.
Details about mod_fastcgi code transformations:
unsigned int debug -> int debug
fastcgi_env member removed from plugin_config
renamed "fcgi" and "fastcgi" to "gw", and "FCGI" to "GW"
reorganize routines for high-level and lower-level interfaces
some lower-level internal interfaces changed to use host,proc,debug
args rather than knowing about higher-level (app) hctx and plugin_data
tabs->spaces and reformatting
2017-07-14 05:29:18 +00:00
|
|
|
http_chunk.c stream.c fdevent.c gw_backend.c \
|
2015-06-21 12:47:14 +00:00
|
|
|
stat_cache.c plugin.c joblist.c etag.c array.c \
|
2016-09-15 05:50:29 +00:00
|
|
|
data_string.c data_array.c \
|
2017-07-25 06:05:36 +00:00
|
|
|
data_integer.c algo_sha1.c md5.c \
|
2016-03-19 15:27:36 +00:00
|
|
|
vector.c \
|
2015-06-21 12:47:14 +00:00
|
|
|
fdevent_select.c fdevent_libev.c \
|
|
|
|
fdevent_poll.c fdevent_linux_sysepoll.c \
|
|
|
|
fdevent_solaris_devpoll.c fdevent_solaris_port.c \
|
|
|
|
fdevent_freebsd_kqueue.c \
|
|
|
|
data_config.c \
|
|
|
|
inet_ntop_cache.c crc32.c \
|
|
|
|
connections-glue.c \
|
|
|
|
configfile-glue.c \
|
|
|
|
http-header-glue.c \
|
2016-08-18 17:54:53 +00:00
|
|
|
http_auth.c \
|
2017-01-18 05:36:49 +00:00
|
|
|
http_vhostdb.c \
|
2016-10-13 07:10:10 +00:00
|
|
|
rand.c \
|
2017-05-09 22:56:30 +00:00
|
|
|
request.c \
|
2015-09-26 10:11:24 +00:00
|
|
|
splaytree.c status_counter.c \
|
2016-12-05 05:30:27 +00:00
|
|
|
safe_memclear.c
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-10-04 09:24:46 +00:00
|
|
|
src = server.c response.c connections.c network.c \
|
2016-12-05 05:30:27 +00:00
|
|
|
network_write.c network_linux_sendfile.c \
|
|
|
|
network_write_mmap.c network_write_no_mmap.c \
|
|
|
|
network_freebsd_sendfile.c network_writev.c \
|
2016-12-21 14:27:05 +00:00
|
|
|
network_solaris_sendfilev.c \
|
2016-12-05 05:30:27 +00:00
|
|
|
network_darwin_sendfile.c \
|
2017-05-09 22:56:30 +00:00
|
|
|
configfile.c configparser.c proc_open.c
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2006-10-04 13:26:23 +00:00
|
|
|
lib_LTLIBRARIES =
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
if NO_RDYNAMIC
|
|
|
|
# if the linker doesn't allow referencing symbols of the binary
|
|
|
|
# we have to put everything into a shared-lib and link it into
|
|
|
|
# everything
|
2016-04-20 00:14:36 +00:00
|
|
|
common_ldflags = -avoid-version -no-undefined
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += liblightcomp.la
|
|
|
|
liblightcomp_la_SOURCES=$(common_src)
|
2010-08-07 10:46:34 +00:00
|
|
|
liblightcomp_la_CFLAGS=$(AM_CFLAGS) $(LIBEV_CFLAGS)
|
2016-04-20 00:14:36 +00:00
|
|
|
liblightcomp_la_LDFLAGS = $(common_ldflags)
|
2016-12-22 04:40:15 +00:00
|
|
|
liblightcomp_la_LIBADD = $(PCRE_LIB) $(CRYPTO_LIB) $(FAM_LIBS) $(LIBEV_LIBS) $(ATTR_LIB)
|
2005-02-20 14:27:00 +00:00
|
|
|
common_libadd = liblightcomp.la
|
|
|
|
else
|
|
|
|
src += $(common_src)
|
2016-04-20 00:14:36 +00:00
|
|
|
common_ldflags = -avoid-version
|
2006-10-04 13:26:23 +00:00
|
|
|
common_libadd =
|
2005-02-20 14:27:00 +00:00
|
|
|
endif
|
2016-04-20 00:14:36 +00:00
|
|
|
common_module_ldflags = -module -export-dynamic $(common_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2006-03-07 12:26:10 +00:00
|
|
|
lib_LTLIBRARIES += mod_flv_streaming.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_flv_streaming_la_SOURCES = mod_flv_streaming.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_flv_streaming_la_LDFLAGS = $(common_module_ldflags)
|
2006-03-07 12:26:10 +00:00
|
|
|
mod_flv_streaming_la_LIBADD = $(common_libadd)
|
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_GEOIP
|
2016-09-13 06:23:06 +00:00
|
|
|
lib_LTLIBRARIES += mod_geoip.la
|
|
|
|
mod_geoip_la_SOURCES = mod_geoip.c
|
|
|
|
mod_geoip_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_geoip_la_LIBADD = $(common_libadd) $(GEOIP_LIB)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2016-09-13 06:23:06 +00:00
|
|
|
|
2006-01-04 23:30:07 +00:00
|
|
|
lib_LTLIBRARIES += mod_evasive.la
|
|
|
|
mod_evasive_la_SOURCES = mod_evasive.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_evasive_la_LDFLAGS = $(common_module_ldflags)
|
2006-01-04 23:30:07 +00:00
|
|
|
mod_evasive_la_LIBADD = $(common_libadd)
|
|
|
|
|
2005-08-19 00:05:52 +00:00
|
|
|
lib_LTLIBRARIES += mod_webdav.la
|
|
|
|
mod_webdav_la_SOURCES = mod_webdav.c
|
2006-10-09 13:50:29 +00:00
|
|
|
mod_webdav_la_CFLAGS = $(AM_CFLAGS) $(XML_CFLAGS) $(SQLITE_CFLAGS)
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_webdav_la_LDFLAGS = $(common_module_ldflags)
|
2006-10-09 13:50:29 +00:00
|
|
|
mod_webdav_la_LIBADD = $(common_libadd) $(XML_LIBS) $(SQLITE_LIBS) $(UUID_LIBS)
|
2005-08-19 00:05:52 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_LUA
|
2006-09-10 22:01:43 +00:00
|
|
|
lib_LTLIBRARIES += mod_magnet.la
|
|
|
|
mod_magnet_la_SOURCES = mod_magnet.c mod_magnet_cache.c
|
|
|
|
mod_magnet_la_CFLAGS = $(AM_CFLAGS) $(LUA_CFLAGS)
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_magnet_la_LDFLAGS = $(common_module_ldflags)
|
2006-09-10 22:01:43 +00:00
|
|
|
mod_magnet_la_LIBADD = $(common_libadd) $(LUA_LIBS) -lm
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2006-09-10 22:01:43 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_LUA
|
2005-07-06 11:58:19 +00:00
|
|
|
lib_LTLIBRARIES += mod_cml.la
|
2005-07-15 17:46:13 +00:00
|
|
|
mod_cml_la_SOURCES = mod_cml.c mod_cml_lua.c mod_cml_funcs.c
|
2005-08-20 19:10:44 +00:00
|
|
|
mod_cml_la_CFLAGS = $(AM_CFLAGS) $(LUA_CFLAGS)
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_cml_la_LDFLAGS = $(common_module_ldflags)
|
2016-01-03 14:48:11 +00:00
|
|
|
mod_cml_la_LIBADD = $(MEMCACHED_LIB) $(common_libadd) $(LUA_LIBS) -lm
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2005-07-06 11:58:19 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_MOD_TRIGGER_B4_DL
|
2005-07-07 22:48:42 +00:00
|
|
|
lib_LTLIBRARIES += mod_trigger_b4_dl.la
|
|
|
|
mod_trigger_b4_dl_la_SOURCES = mod_trigger_b4_dl.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_trigger_b4_dl_la_LDFLAGS = $(common_module_ldflags)
|
2016-01-03 14:48:11 +00:00
|
|
|
mod_trigger_b4_dl_la_LIBADD = $(GDBM_LIB) $(MEMCACHED_LIB) $(PCRE_LIB) $(common_libadd)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2005-07-07 22:48:42 +00:00
|
|
|
|
2017-01-18 05:36:49 +00:00
|
|
|
lib_LTLIBRARIES += mod_vhostdb.la
|
|
|
|
mod_vhostdb_la_SOURCES = mod_vhostdb.c
|
|
|
|
mod_vhostdb_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_vhostdb_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
if BUILD_WITH_LDAP
|
|
|
|
lib_LTLIBRARIES += mod_vhostdb_ldap.la
|
|
|
|
mod_vhostdb_ldap_la_SOURCES = mod_vhostdb_ldap.c
|
|
|
|
mod_vhostdb_ldap_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_vhostdb_ldap_la_LIBADD = $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
|
|
|
|
endif
|
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_MYSQL
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_mysql_vhost.la
|
|
|
|
mod_mysql_vhost_la_SOURCES = mod_mysql_vhost.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_mysql_vhost_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_mysql_vhost_la_LIBADD = $(MYSQL_LIBS) $(common_libadd)
|
2005-08-15 15:30:16 +00:00
|
|
|
mod_mysql_vhost_la_CPPFLAGS = $(MYSQL_INCLUDE)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2017-01-18 05:36:49 +00:00
|
|
|
if BUILD_WITH_MYSQL
|
|
|
|
lib_LTLIBRARIES += mod_vhostdb_mysql.la
|
|
|
|
mod_vhostdb_mysql_la_SOURCES = mod_vhostdb_mysql.c
|
|
|
|
mod_vhostdb_mysql_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_vhostdb_mysql_la_LIBADD = $(MYSQL_LIBS) $(common_libadd)
|
|
|
|
mod_vhostdb_mysql_la_CPPFLAGS = $(MYSQL_INCLUDE)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_WITH_PGSQL
|
|
|
|
lib_LTLIBRARIES += mod_vhostdb_pgsql.la
|
|
|
|
mod_vhostdb_pgsql_la_SOURCES = mod_vhostdb_pgsql.c
|
|
|
|
mod_vhostdb_pgsql_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_vhostdb_pgsql_la_LIBADD = $(PGSQL_LIBS) $(common_libadd)
|
|
|
|
mod_vhostdb_pgsql_la_CPPFLAGS = $(PGSQL_INCLUDE)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_WITH_DBI
|
|
|
|
lib_LTLIBRARIES += mod_vhostdb_dbi.la
|
|
|
|
mod_vhostdb_dbi_la_SOURCES = mod_vhostdb_dbi.c
|
|
|
|
mod_vhostdb_dbi_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_vhostdb_dbi_la_LIBADD = $(DBI_LIBS) $(common_libadd)
|
|
|
|
mod_vhostdb_dbi_la_CPPFLAGS = $(DBI_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_cgi.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_cgi_la_SOURCES = mod_cgi.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_cgi_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_cgi_la_LIBADD = $(common_libadd)
|
|
|
|
|
2005-06-12 09:29:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_scgi.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_scgi_la_SOURCES = mod_scgi.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_scgi_la_LDFLAGS = $(common_module_ldflags)
|
2005-06-12 09:29:00 +00:00
|
|
|
mod_scgi_la_LIBADD = $(common_libadd)
|
|
|
|
|
2005-08-15 09:55:23 +00:00
|
|
|
lib_LTLIBRARIES += mod_staticfile.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_staticfile_la_SOURCES = mod_staticfile.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_staticfile_la_LDFLAGS = $(common_module_ldflags)
|
2005-08-15 09:55:23 +00:00
|
|
|
mod_staticfile_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_dirlisting.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_dirlisting_la_SOURCES = mod_dirlisting.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_dirlisting_la_LDFLAGS = $(common_module_ldflags)
|
2005-09-19 13:13:16 +00:00
|
|
|
mod_dirlisting_la_LIBADD = $(common_libadd) $(PCRE_LIB)
|
2005-08-15 09:55:23 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_indexfile.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_indexfile_la_SOURCES = mod_indexfile.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_indexfile_la_LDFLAGS = $(common_module_ldflags)
|
2005-08-15 09:55:23 +00:00
|
|
|
mod_indexfile_la_LIBADD = $(common_libadd)
|
2005-06-12 09:29:00 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_setenv.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_setenv_la_SOURCES = mod_setenv.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_setenv_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_setenv_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_alias.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_alias_la_SOURCES = mod_alias.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_alias_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_alias_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_userdir.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_userdir_la_SOURCES = mod_userdir.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_userdir_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_userdir_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_rrdtool.la
|
|
|
|
mod_rrdtool_la_SOURCES = mod_rrdtool.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_rrdtool_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_rrdtool_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_usertrack.la
|
|
|
|
mod_usertrack_la_SOURCES = mod_usertrack.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_usertrack_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_usertrack_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_proxy.la
|
|
|
|
mod_proxy_la_SOURCES = mod_proxy.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_proxy_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_proxy_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_ssi.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_ssi_la_SOURCES = mod_ssi_exprparser.c mod_ssi_expr.c mod_ssi.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_ssi_la_LDFLAGS = $(common_module_ldflags)
|
2016-05-14 02:35:19 +00:00
|
|
|
mod_ssi_la_LIBADD = $(common_libadd)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_secdownload.la
|
2015-11-22 22:22:22 +00:00
|
|
|
mod_secdownload_la_SOURCES = mod_secdownload.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_secdownload_la_LDFLAGS = $(common_module_ldflags)
|
2016-12-22 04:40:15 +00:00
|
|
|
mod_secdownload_la_LIBADD = $(common_libadd) $(CRYPTO_LIB)
|
2005-02-20 14:27:00 +00:00
|
|
|
|
|
|
|
#lib_LTLIBRARIES += mod_httptls.la
|
|
|
|
#mod_httptls_la_SOURCES = mod_httptls.c
|
2016-04-20 00:14:36 +00:00
|
|
|
#mod_httptls_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
#mod_httptls_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_expire.la
|
|
|
|
mod_expire_la_SOURCES = mod_expire.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_expire_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_expire_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_evhost.la
|
|
|
|
mod_evhost_la_SOURCES = mod_evhost.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_evhost_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_evhost_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_simple_vhost.la
|
|
|
|
mod_simple_vhost_la_SOURCES = mod_simple_vhost.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_simple_vhost_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_simple_vhost_la_LIBADD = $(common_libadd)
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_fastcgi.la
|
|
|
|
mod_fastcgi_la_SOURCES = mod_fastcgi.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_fastcgi_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_fastcgi_la_LIBADD = $(common_libadd)
|
|
|
|
|
2007-02-19 21:05:59 +00:00
|
|
|
lib_LTLIBRARIES += mod_extforward.la
|
|
|
|
mod_extforward_la_SOURCES = mod_extforward.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_extforward_la_LDFLAGS = $(common_module_ldflags)
|
2007-02-19 21:05:59 +00:00
|
|
|
mod_extforward_la_LIBADD = $(common_libadd)
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_access.la
|
|
|
|
mod_access_la_SOURCES = mod_access.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_access_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_access_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_compress.la
|
2006-10-04 13:26:23 +00:00
|
|
|
mod_compress_la_SOURCES = mod_compress.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_compress_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_compress_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd)
|
|
|
|
|
2016-06-22 00:28:55 +00:00
|
|
|
lib_LTLIBRARIES += mod_deflate.la
|
|
|
|
mod_deflate_la_SOURCES = mod_deflate.c
|
|
|
|
mod_deflate_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_deflate_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd)
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_auth.la
|
2016-08-18 17:54:53 +00:00
|
|
|
mod_auth_la_SOURCES = mod_auth.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_auth_la_LDFLAGS = $(common_module_ldflags)
|
2016-08-18 17:54:53 +00:00
|
|
|
mod_auth_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_authn_file.la
|
|
|
|
mod_authn_file_la_SOURCES = mod_authn_file.c
|
|
|
|
mod_authn_file_la_LDFLAGS = $(common_module_ldflags)
|
2016-12-22 04:40:15 +00:00
|
|
|
mod_authn_file_la_LIBADD = $(CRYPT_LIB) $(CRYPTO_LIB) $(common_libadd)
|
2016-08-18 17:54:53 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_KRB5
|
2016-09-17 08:18:59 +00:00
|
|
|
lib_LTLIBRARIES += mod_authn_gssapi.la
|
|
|
|
mod_authn_gssapi_la_SOURCES = mod_authn_gssapi.c
|
|
|
|
mod_authn_gssapi_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_authn_gssapi_la_LIBADD = $(KRB5_LIB) $(common_libadd)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2016-09-17 08:18:59 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_LDAP
|
2016-08-18 17:54:53 +00:00
|
|
|
lib_LTLIBRARIES += mod_authn_ldap.la
|
|
|
|
mod_authn_ldap_la_SOURCES = mod_authn_ldap.c
|
|
|
|
mod_authn_ldap_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_authn_ldap_la_LIBADD = $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_MYSQL
|
2016-09-10 02:31:06 +00:00
|
|
|
lib_LTLIBRARIES += mod_authn_mysql.la
|
|
|
|
mod_authn_mysql_la_SOURCES = mod_authn_mysql.c
|
|
|
|
mod_authn_mysql_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_authn_mysql_la_LIBADD = $(CRYPT_LIB) $(MYSQL_LIBS) $(common_libadd)
|
|
|
|
mod_authn_mysql_la_CPPFLAGS = $(MYSQL_INCLUDE)
|
2016-10-17 16:14:55 +00:00
|
|
|
endif
|
2016-09-10 02:31:06 +00:00
|
|
|
|
2016-12-21 09:23:49 +00:00
|
|
|
if BUILD_WITH_OPENSSL
|
|
|
|
lib_LTLIBRARIES += mod_openssl.la
|
|
|
|
mod_openssl_la_SOURCES = mod_openssl.c
|
|
|
|
mod_openssl_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_openssl_la_LIBADD = $(SSL_LIB) $(common_libadd)
|
|
|
|
endif
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
lib_LTLIBRARIES += mod_rewrite.la
|
|
|
|
mod_rewrite_la_SOURCES = mod_rewrite.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_rewrite_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_rewrite_la_LIBADD = $(PCRE_LIB) $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_redirect.la
|
|
|
|
mod_redirect_la_SOURCES = mod_redirect.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_redirect_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_redirect_la_LIBADD = $(PCRE_LIB) $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_status.la
|
|
|
|
mod_status_la_SOURCES = mod_status.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_status_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_status_la_LIBADD = $(common_libadd)
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += mod_accesslog.la
|
|
|
|
mod_accesslog_la_SOURCES = mod_accesslog.c
|
2016-04-20 00:14:36 +00:00
|
|
|
mod_accesslog_la_LDFLAGS = $(common_module_ldflags)
|
2005-02-20 14:27:00 +00:00
|
|
|
mod_accesslog_la_LIBADD = $(common_libadd)
|
|
|
|
|
2016-09-12 06:53:11 +00:00
|
|
|
lib_LTLIBRARIES += mod_uploadprogress.la
|
|
|
|
mod_uploadprogress_la_SOURCES = mod_uploadprogress.c
|
|
|
|
mod_uploadprogress_la_LDFLAGS = $(common_module_ldflags)
|
|
|
|
mod_uploadprogress_la_LIBADD = $(common_libadd)
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2015-11-22 22:37:19 +00:00
|
|
|
hdr = server.h base64.h buffer.h network.h log.h keyvalue.h \
|
2015-06-21 12:47:14 +00:00
|
|
|
response.h request.h fastcgi.h chunk.h \
|
2016-03-19 15:19:01 +00:00
|
|
|
first.h settings.h http_chunk.h \
|
2017-07-25 06:05:36 +00:00
|
|
|
algo_sha1.h md5.h http_auth.h http_vhostdb.h stream.h \
|
[core] shared code for socket backends
common codebase for socket backends, based off mod_fastcgi with
some features added for mod_proxy
(mostly intended to reduce code duplication and enhance code isolation)
mod_fastcgi and mod_scgi can now use fastcgi.balance and scgi.balance
for similar behavior as proxy.balance, but the balancing is per-host
and not per-proc. proxy.balance is also per-host and not per-proc.
mod_proxy and mod_scgi can now use proxy.map-extensions and
scgi.map-extensions, similar to fastcgi.map-extensions.
mod_fastcgi behavior change (affects only mod_status):
- statistics tags have been renamed from "fastcgi.*" to "gw.*"
"fastcgi.backend.*" -> "gw.backend.*"
"fastcgi.active-requests" -> "gw.active-requests"
("fastcgi.requests" remains "fastcgi.requests")
("proxy.requests" is new)
("scgi.requests" is new)
mod_scgi behavior change (likely minor):
- removed scgi_proclist_sort_down() and scgi_proclist_sort_up().
procs now chosen based on load as measured by num socket connnections
Note:
modules using gw_backend.[ch] are currently still independent modules.
If it had been written as a single module with fastcgi, scgi, proxy
implementations, then there would have been a chance of breaking some
existing user configurations where module ordering made a difference
for which module handled a given request, though for most people, this
would have made no difference.
Details about mod_fastcgi code transformations:
unsigned int debug -> int debug
fastcgi_env member removed from plugin_config
renamed "fcgi" and "fastcgi" to "gw", and "FCGI" to "GW"
reorganize routines for high-level and lower-level interfaces
some lower-level internal interfaces changed to use host,proc,debug
args rather than knowing about higher-level (app) hctx and plugin_data
tabs->spaces and reformatting
2017-07-14 05:29:18 +00:00
|
|
|
fdevent.h gw_backend.h connections.h base.h stat_cache.h \
|
2016-09-10 02:29:17 +00:00
|
|
|
plugin.h \
|
2016-03-19 15:27:36 +00:00
|
|
|
etag.h joblist.h array.h vector.h crc32.h \
|
2015-06-21 12:47:14 +00:00
|
|
|
network_backends.h configfile.h \
|
|
|
|
mod_ssi.h mod_ssi_expr.h inet_ntop_cache.h \
|
|
|
|
configparser.h mod_ssi_exprparser.h \
|
2016-10-13 07:10:10 +00:00
|
|
|
rand.h \
|
2017-04-24 14:13:41 +00:00
|
|
|
sys-endian.h sys-mmap.h sys-socket.h sys-strings.h \
|
|
|
|
mod_cml.h mod_cml_funcs.h \
|
2015-09-26 10:11:24 +00:00
|
|
|
safe_memclear.h splaytree.h proc_open.h status_counter.h \
|
2017-02-12 05:54:33 +00:00
|
|
|
mod_magnet_cache.h
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2017-02-12 05:54:33 +00:00
|
|
|
|
|
|
|
DEFS= @DEFS@ -DHAVE_VERSIONSTAMP_H -DLIBRARY_DIR="\"$(libdir)\"" -DSBIN_DIR="\"$(sbindir)\""
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2016-05-10 04:29:52 +00:00
|
|
|
|
|
|
|
if LIGHTTPD_STATIC
|
|
|
|
|
|
|
|
## static lighttpd server (used in conjunction with -DLIGHTTPD_STATIC)
|
|
|
|
## (order is not important)
|
|
|
|
lighttpd_SOURCES = \
|
|
|
|
$(src) \
|
|
|
|
mod_access.c \
|
|
|
|
mod_accesslog.c \
|
|
|
|
mod_alias.c \
|
2016-08-18 17:54:53 +00:00
|
|
|
mod_auth.c \
|
|
|
|
mod_authn_file.c \
|
2016-05-10 04:29:52 +00:00
|
|
|
mod_cgi.c \
|
|
|
|
mod_compress.c \
|
2016-06-22 00:28:55 +00:00
|
|
|
mod_deflate.c \
|
2016-05-10 04:29:52 +00:00
|
|
|
mod_dirlisting.c \
|
|
|
|
mod_evasive.c \
|
|
|
|
mod_expire.c \
|
|
|
|
mod_extforward.c \
|
|
|
|
mod_fastcgi.c \
|
|
|
|
mod_flv_streaming.c \
|
|
|
|
mod_indexfile.c \
|
|
|
|
mod_proxy.c \
|
|
|
|
mod_redirect.c \
|
|
|
|
mod_rewrite.c \
|
|
|
|
mod_rrdtool.c \
|
|
|
|
mod_scgi.c \
|
|
|
|
mod_secdownload.c \
|
|
|
|
mod_setenv.c \
|
|
|
|
mod_simple_vhost.c \
|
|
|
|
mod_ssi_exprparser.c mod_ssi_expr.c mod_ssi.c \
|
|
|
|
mod_staticfile.c \
|
|
|
|
mod_status.c \
|
2016-09-12 06:53:11 +00:00
|
|
|
mod_uploadprogress.c \
|
2016-05-10 04:29:52 +00:00
|
|
|
mod_userdir.c \
|
|
|
|
mod_usertrack.c \
|
2017-01-18 05:36:49 +00:00
|
|
|
mod_vhostdb.c \
|
2016-05-10 04:29:52 +00:00
|
|
|
mod_webdav.c
|
|
|
|
lighttpd_CPPFLAGS = \
|
|
|
|
-DLIGHTTPD_STATIC \
|
|
|
|
$(XML_CFLAGS) $(SQLITE_CFLAGS) \
|
|
|
|
$(FAM_CFLAGS) $(LIBEV_CFLAGS) $(LIBUNWIND_CFLAGS)
|
|
|
|
lighttpd_LDADD = \
|
|
|
|
$(common_libadd) \
|
2016-12-22 04:40:15 +00:00
|
|
|
$(CRYPT_LIB) $(CRYPTO_LIB) \
|
2016-05-10 04:29:52 +00:00
|
|
|
$(XML_LIBS) $(SQLITE_LIBS) $(UUID_LIBS) \
|
|
|
|
$(PCRE_LIB) $(Z_LIB) $(BZ_LIB) $(DL_LIB) $(SENDFILE_LIB) $(ATTR_LIB) \
|
|
|
|
$(FAM_LIBS) $(LIBEV_LIBS) $(LIBUNWIND_LIBS)
|
|
|
|
lighttpd_LDFLAGS = -export-dynamic
|
|
|
|
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_GEOIP
|
|
|
|
lighttpd_SOURCES += mod_geoip.c
|
|
|
|
lighttpd_LDADD += $(GEOIP_LIB)
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_LUA
|
|
|
|
lighttpd_SOURCES += mod_cml.c mod_cml_lua.c mod_cml_funcs.c \
|
|
|
|
mod_magnet.c mod_magnet_cache.c
|
|
|
|
lighttpd_CPPFLAGS += $(LUA_CFLAGS)
|
|
|
|
lighttpd_LDADD += $(LUA_LIBS) -lm
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_KRB5
|
|
|
|
lighttpd_SOURCES += mod_authn_gssapi.c
|
|
|
|
lighttpd_LDADD += $(KRB5_LIB)
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_LDAP
|
2017-01-18 05:36:49 +00:00
|
|
|
lighttpd_SOURCES += mod_authn_ldap.c mod_vhostdb_ldap.c
|
2016-10-17 16:14:55 +00:00
|
|
|
lighttpd_LDADD += $(LDAP_LIB) $(LBER_LIB)
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_MYSQL
|
2017-01-18 05:36:49 +00:00
|
|
|
lighttpd_SOURCES += mod_authn_mysql.c mod_mysql_vhost.c mod_vhostdb_mysql.c
|
2016-10-17 16:14:55 +00:00
|
|
|
lighttpd_CPPFLAGS += $(MYSQL_INCLUDE)
|
|
|
|
lighttpd_LDADD += $(MYSQL_LIBS)
|
|
|
|
endif
|
2017-01-18 05:36:49 +00:00
|
|
|
if BUILD_WITH_PGSQL
|
|
|
|
lighttpd_SOURCES += mod_vhostdb_pgsql.c
|
|
|
|
lighttpd_CPPFLAGS += $(PGSQL_INCLUDE)
|
|
|
|
lighttpd_LDADD += $(PGSQL_LIBS)
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_DBI
|
|
|
|
lighttpd_SOURCES += mod_vhostdb_dbi.c
|
|
|
|
lighttpd_CPPFLAGS += $(DBI_CFLAGS)
|
|
|
|
lighttpd_LDADD += $(DBI_LIBS)
|
|
|
|
endif
|
2016-12-21 09:23:49 +00:00
|
|
|
if BUILD_WITH_OPENSSL
|
|
|
|
lighttpd_SOURCES += mod_openssl.c
|
|
|
|
lighttpd_LDADD += $(SSL_LIB)
|
|
|
|
endif
|
2016-10-17 16:14:55 +00:00
|
|
|
if BUILD_WITH_MEMCACHED
|
|
|
|
lighttpd_CPPFLAGS += $(MEMCACHED_CFLAGS)
|
|
|
|
lighttpd_LDADD += $(MEMCACHED_LIB)
|
|
|
|
endif
|
|
|
|
if BUILD_WITH_GDBM
|
|
|
|
lighttpd_LDADD += $(GDBM_LIB)
|
|
|
|
endif
|
|
|
|
if BUILD_MOD_TRIGGER_B4_DL
|
|
|
|
lighttpd_SOURCES += mod_trigger_b4_dl.c
|
|
|
|
endif
|
|
|
|
|
2016-05-10 04:29:52 +00:00
|
|
|
else
|
|
|
|
|
|
|
|
## default lighttpd server
|
2005-02-20 14:27:00 +00:00
|
|
|
lighttpd_SOURCES = $(src)
|
2016-05-10 04:29:52 +00:00
|
|
|
lighttpd_CPPFLAGS = $(FAM_CFLAGS) $(LIBEV_CFLAGS)
|
2016-12-22 04:40:15 +00:00
|
|
|
lighttpd_LDADD = $(PCRE_LIB) $(DL_LIB) $(SENDFILE_LIB) $(ATTR_LIB) $(common_libadd) $(CRYPTO_LIB) $(FAM_LIBS) $(LIBEV_LIBS) $(LIBUNWIND_LIBS)
|
2005-02-20 14:27:00 +00:00
|
|
|
lighttpd_LDFLAGS = -export-dynamic
|
2016-05-10 04:29:52 +00:00
|
|
|
|
|
|
|
endif
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2005-08-09 06:42:33 +00:00
|
|
|
proc_open_SOURCES = proc_open.c buffer.c
|
2015-02-07 13:32:56 +00:00
|
|
|
proc_open_LDADD = $(LIBUNWIND_LIBS)
|
2005-08-09 06:42:33 +00:00
|
|
|
proc_open_CPPFLAGS= -DDEBUG_PROC_OPEN
|
2005-02-20 14:27:00 +00:00
|
|
|
|
2016-03-25 16:58:12 +00:00
|
|
|
test_buffer_SOURCES = test_buffer.c buffer.c
|
|
|
|
test_buffer_LDADD = $(LIBUNWIND_LIBS)
|
|
|
|
|
|
|
|
test_base64_SOURCES = test_base64.c base64.c buffer.c
|
|
|
|
test_base64_LDADD = $(LIBUNWIND_LIBS)
|
|
|
|
|
2016-09-21 08:53:29 +00:00
|
|
|
test_configfile_SOURCES = test_configfile.c buffer.c array.c data_string.c keyvalue.c vector.c log.c
|
2016-04-04 05:27:43 +00:00
|
|
|
test_configfile_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
|
|
|
|
|
2005-02-20 14:27:00 +00:00
|
|
|
noinst_HEADERS = $(hdr)
|
2015-06-21 12:47:14 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
mod_skeleton.c \
|
|
|
|
configparser.y \
|
|
|
|
mod_ssi_exprparser.y \
|
2016-10-29 15:06:48 +00:00
|
|
|
lemon.c \
|
2015-06-21 12:47:14 +00:00
|
|
|
lempar.c \
|
|
|
|
SConscript \
|
|
|
|
CMakeLists.txt config.h.cmake
|
2016-03-25 16:58:12 +00:00
|
|
|
|