[package] lighttpd: configure with OpenSSL support only if the user asks for it
authorFlorian Fainelli <[email protected]>
Tue, 27 Mar 2012 19:20:26 +0000 (19:20 +0000)
committerFlorian Fainelli <[email protected]>
Tue, 27 Mar 2012 19:20:26 +0000 (19:20 +0000)
SSL support adds a quite large dependency to lighttpd when compiled
in. On a 32 bit platform, libcrypto is roughly 1MB, to which one must
add the size of libssl (roughly 250KB). This is 2 to 5 times the size
of a typical lighttpd embedded installation.

SSL support is only needed if one enables the SSL engine in the
lighttpd.conf configuration file.

This patch introduces a configuration option that allows the user to
choose whether or not he wants to compile SSL support in. It defaults
to 'y' only if libopenssl is already selected (either by active
selection or because libopenssl is a dependency of another package).

Signed-off-by: Emmanuel Deloget <[email protected]>
SVN-Revision: 31097

net/lighttpd/Makefile

index 81f1ba4a83a01d176b46da34af7e00150d5098e9..95e1644e7420632ea34f3ada63b410534ac787a9 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=lighttpd
 PKG_VERSION:=1.4.30
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
 PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x
@@ -30,10 +30,21 @@ endef
 define Package/lighttpd
   $(call Package/lighttpd/Default)
   MENU:=1
-  DEPENDS:=+libopenssl +libpcre +libpthread
+  DEPENDS:=+LIGHTTPD_SSL:libopenssl +libpcre +libpthread
   TITLE:=A flexible and lightweight web server
 endef
 
+define Package/lighttpd/config
+config LIGHTTPD_SSL
+       bool "SSL support"
+       depends on PACKAGE_lighttpd
+       default y if PACKAGE_libopenssl
+       help
+         Implements SSL support in lighttpd (using libopenssl). This
+         option is required if you enable the SSL engine in your
+         lighttpd confguration file.
+endef
+
 define Package/lighttpd-mod-access
   $(call Package/lighttpd/Default)
   DEPENDS:=lighttpd
@@ -222,7 +233,6 @@ CONFIGURE_ARGS+= \
        --without-lua \
        --without-memcache \
        --without-mysql \
-       --with-openssl="$(STAGING_DIR)/usr" \
        --with-pcre \
        --without-valgrind \
         $(call autoconf_bool,CONFIG_IPV6,ipv6)
@@ -230,6 +240,14 @@ CONFIGURE_ARGS+= \
 CONFIGURE_VARS+= \
        PCRE_LIB="-lpcre" \
 
+ifneq ($(strip $(CONFIG_LIGHTTPD_SSL)),)
+  CONFIGURE_ARGS+= \
+       --with-openssl="$(STAGING_DIR)/usr"
+else
+  CONFIGURE_ARGS+= \
+       --without-openssl
+endif
+
 ifneq ($(SDK)$(CONFIG_PACKAGE_lighttpd-mod-webdav),)
   CONFIGURE_ARGS+= \
        --with-webdav-locks \