Changeset f78c412 in freewrt
- Timestamp:
- Jun 26, 2007, 3:31:38 PM (18 years ago)
- Children:
- ee44276
- Parents:
- e3110e9
- Location:
- package/lighttpd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
package/lighttpd/Config.in
re3110e9 rf78c412 5 5 tristate 6 6 default n 7 select FWRT_PACKAGE_LIBOPENSSL8 7 select FWRT_PACKAGE_LIBPCRE 9 8 help … … 11 10 12 11 http://www.lighttpd.net/ 13 14 Depends: libopenssl, libpcre 12 13 choice 14 prompt "SSL Configuration" 15 depends on FWRT_PACKAGE_LIGHTTPD 16 default FWRT_COMPILE_LIGHTTPD_WITHOUT_OPENSSL 17 18 config FWRT_COMPILE_LIGHTTPD_WITHOUT_OPENSSL 19 bool "no ssl encryption support" 20 help 21 22 config FWRT_COMPILE_LIGHTTPD_WITH_OPENSSL 23 bool "enable openssl encryption support" 24 depends FWRT_PACKAGE_LIGHTTPD 25 select FWRT_PACKAGE_LIBOPENSSL 26 help 27 28 endchoice 15 29 16 30 config FWRT_PACKAGE_LIGHTTPD_MOD_ACCESSLOG -
package/lighttpd/Makefile
re3110e9 rf78c412 9 9 PKG_NAME:= lighttpd 10 10 PKG_VERSION:= 1.4.15 11 PKG_RELEASE:= 111 PKG_RELEASE:= 2 12 12 PKG_MD5SUM:= d2ceaaf242b2b3593ff4d8222d543649 13 13 MASTER_SITES:= http://www.lighttpd.net/download/ … … 60 60 $(eval $(call PKG_mod_template,LIGHTTPD_MOD_WEBDAV,webdav)) 61 61 62 SSL:=--without-openssl 63 ifeq ($(FWRT_COMPILE_LIGHTTPD_WITH_OPENSSL),y) 64 SSL:=--with-openssl="$(STAGING_DIR)/usr" 65 PKG_DEPEND+=", libopenssl" 66 endif 67 62 68 TCPPFLAGS+= -I$(STAGING_DIR)/usr/include/libxml2 63 69 CONFIGURE_STYLE= gnu 64 70 CONFIGURE_ENV+= PCRE_LIB="-lpcre" 65 CONFIGURE_ARGS+= --libdir=/usr/lib/lighttpd \ 71 CONFIGURE_ARGS+= ${SSL} \ 72 --libdir=/usr/lib/lighttpd \ 66 73 --sysconfdir=/etc/lighttpd \ 67 74 --without-attr \ … … 73 80 --without-memcache \ 74 81 --without-mysql \ 75 --with-openssl="$(STAGING_DIR)/usr" \76 82 --with-pcre \ 77 83 --without-valgrind \
Note:
See TracChangeset
for help on using the changeset viewer.
