diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-01-22 15:05:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-01-22 15:05:04 +0000 |
commit | a2052a26f01860d38c0eebf5748719931050074a (patch) | |
tree | aa3b9c09f317b7b347952724910b65c358812e15 /package | |
parent | 67d2b82f85f13fc67b41b7a9b4fb9adb2b673774 (diff) | |
download | upstream-a2052a26f01860d38c0eebf5748719931050074a.tar.gz upstream-a2052a26f01860d38c0eebf5748719931050074a.tar.bz2 upstream-a2052a26f01860d38c0eebf5748719931050074a.zip |
uhttpd: always turn on TLS support, include ustream-ssl as a build dependency
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35295 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/network/services/uhttpd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/network/services/uhttpd/Makefile b/package/network/services/uhttpd/Makefile index 6f3d1507ae..f03ecc4398 100644 --- a/package/network/services/uhttpd/Makefile +++ b/package/network/services/uhttpd/Makefile @@ -18,11 +18,11 @@ PKG_SOURCE_VERSION:=14e3971c37e6feb0ec5eda0988e07d8a786ba9f9 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> -PKG_CONFIG_DEPENDS = CONFIG_PACKAGE_uhttpd-mod-tls +PKG_BUILD_DEPENDS = ustream-ssl + include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/cmake.mk - define Package/uhttpd/default SECTION:=net CATEGORY:=Network @@ -102,7 +102,7 @@ endef TARGET_LDFLAGS += -lcrypt -CMAKE_OPTIONS = -DTLS_SUPPORT=$(if $(CONFIG_PACKAGE_uhttpd-mod-tls),on,off) +CMAKE_OPTIONS = -DTLS_SUPPORT=on define Package/uhttpd/install $(INSTALL_DIR) $(1)/etc/init.d |