diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-05 03:19:07 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-11-05 03:19:07 +0000 |
commit | 3d035a6f6ab63c2e3031678cda194435526da918 (patch) | |
tree | 4ce7c6471e317efce3baa1419d53f2b948637740 /package/uhttpd/Makefile | |
parent | 297ac9a7f1a7c01521d834e07c44a45620257069 (diff) | |
download | mtk-20170518-3d035a6f6ab63c2e3031678cda194435526da918.zip mtk-20170518-3d035a6f6ab63c2e3031678cda194435526da918.tar.gz mtk-20170518-3d035a6f6ab63c2e3031678cda194435526da918.tar.bz2 |
uhttpd: rework CyaSSL and OpenSSL integration; move protected recv() and send() operations below the ssl layer - fixes hangs when accessing via https
SVN-Revision: 28761
Diffstat (limited to 'package/uhttpd/Makefile')
-rw-r--r-- | package/uhttpd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/uhttpd/Makefile b/package/uhttpd/Makefile index 4f29284..daf7333 100644 --- a/package/uhttpd/Makefile +++ b/package/uhttpd/Makefile @@ -65,14 +65,16 @@ endef UHTTPD_TLS:= TLS_CFLAGS:= +TLS_LDFLAGS:= ifneq ($(CONFIG_PACKAGE_uhttpd-mod-tls_cyassl),) UHTTPD_TLS:=cyassl - TLS_CFLAGS:=-I$(STAGING_DIR)/usr/include/cyassl + TLS_CFLAGS:=-I$(STAGING_DIR)/usr/include/cyassl -DTLS_IS_CYASSL endif ifneq ($(CONFIG_PACKAGE_uhttpd-mod-tls_openssl),) UHTTPD_TLS:=openssl + TLS_CFLAGS:=-DTLS_IS_OPENSSL endif |