57ae4753ed
lighttpd uses --disable-lfs instead of --disable-largefile. Remove redundant configure args while we're at it.
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
#############################################################
|
|
#
|
|
# lighttpd
|
|
#
|
|
#############################################################
|
|
LIGHTTPD_VERSION:=1.4.19
|
|
LIGHTTPD_SOURCE:=lighttpd-$(LIGHTTPD_VERSION).tar.bz2
|
|
LIGHTTPD_SITE:=http://www.lighttpd.net/download
|
|
LIGHTTPD_INSTALL_STAGING = NO
|
|
LIGHTTPD_INSTALL_TARGET = YES
|
|
LIGHTTPD_DEPENDENCIES = uclibc
|
|
LIGHTTPD_CONF_ENV =
|
|
|
|
ifneq ($(BR2_LARGEFILE),y)
|
|
LIGHTTPD_LFS:=$(DISABLE_LARGEFILE) --disable-lfs
|
|
endif
|
|
|
|
LIGHTTPD_CONF_OPT = \
|
|
--libdir=/usr/lib/lighttpd \
|
|
--libexecdir=/usr/lib \
|
|
--localstatedir=/var \
|
|
--program-prefix="" \
|
|
$(DISABLE_IPV6) \
|
|
$(LIGHTTPD_LFS)
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_OPENSSL)),y)
|
|
LIGHTTPD_DEPENDENCIES += openssl
|
|
LIGHTTPD_CONF_OPT += --with-openssl
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-openssl
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_ZLIB)),y)
|
|
LIGHTTPD_DEPENDENCIES += zlib
|
|
LIGHTTPD_CONF_OPT += --with-zlib
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_BZIP2)),y)
|
|
LIGHTTPD_DEPENDENCIES += bzip2
|
|
LIGHTTPD_CONF_OPT += --with-bzip2
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-bzip2
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_PACKAGE_LIGHTTPD_PCRE)),y)
|
|
LIGHTTPD_CONF_ENV += PCRE_LIB="-lpcre"
|
|
LIGHTTPD_DEPENDENCIES += pcre
|
|
LIGHTTPD_CONF_OPT += --with-pcre
|
|
else
|
|
LIGHTTPD_CONF_OPT += --without-pcre
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS,package,lighttpd))
|