aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/Makefile.am
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-02 21:21:31 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-02 22:48:04 +0300
commit101fa6ceed4baf7e03a2f24aca4beb6e03dbb9d6 (patch)
tree4ec85943842852ef23a15ac272a05fdfe13a5b4e /src/microhttpd/Makefile.am
parent20bb6c5dc0f4ea03e9a5fc5077f4d04166c0fc08 (diff)
downloadlibmicrohttpd-101fa6ceed4baf7e03a2f24aca4beb6e03dbb9d6.tar.gz
libmicrohttpd-101fa6ceed4baf7e03a2f24aca4beb6e03dbb9d6.zip
Added 'configure' parameter '--disable-httpupgrade'.
Could be used to reduce complied binary size if HTTP "Upgrade" is not required.
Diffstat (limited to 'src/microhttpd/Makefile.am')
-rw-r--r--src/microhttpd/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 59846820..81dc95c2 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -150,12 +150,14 @@ check_PROGRAMS = \
150 test_str_to_value \ 150 test_str_to_value \
151 test_shutdown_select \ 151 test_shutdown_select \
152 test_shutdown_poll \ 152 test_shutdown_poll \
153 test_daemon \ 153 test_daemon
154 test_upgrade
155 154
155if ENABLE_UPGRADE
156 check_PROGRAMS += test_upgrade
156if ENABLE_HTTPS 157if ENABLE_HTTPS
157 check_PROGRAMS += test_upgrade_ssl 158 check_PROGRAMS += test_upgrade_ssl
158endif 159endif
160endif
159 161
160if HAVE_POSTPROCESSOR 162if HAVE_POSTPROCESSOR
161check_PROGRAMS += \ 163check_PROGRAMS += \