diff options
author | clsung <clsung@FreeBSD.org> | 2006-12-11 11:39:13 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-12-11 11:39:13 +0800 |
commit | bc9249ca9777ac4d4426e548f379e20b5c6c6a35 (patch) | |
tree | 87a8771e2c96d054b0af9b65d186554fd820f69f /www/lighttpd | |
parent | 2596aa74d52d81a50b0c345a7a1a15fd161100b1 (diff) | |
download | freebsd-ports-gnome-bc9249ca9777ac4d4426e548f379e20b5c6c6a35.tar.gz freebsd-ports-gnome-bc9249ca9777ac4d4426e548f379e20b5c6c6a35.tar.zst freebsd-ports-gnome-bc9249ca9777ac4d4426e548f379e20b5c6c6a35.zip |
- add mog_magnet support
- Ref: http://blog.lighttpd.net/articles/2006/09/16/a-new-power-magnet
- bump PORTREVISION
PR: ports/105284
Submitted by: clsung
Approved by: maintainer (timeout)
Diffstat (limited to 'www/lighttpd')
-rw-r--r-- | www/lighttpd/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/www/lighttpd/Makefile b/www/lighttpd/Makefile index 0f5d28d9e379..cf421e02d4a7 100644 --- a/www/lighttpd/Makefile +++ b/www/lighttpd/Makefile @@ -7,6 +7,7 @@ PORTNAME= lighttpd PORTVERSION= 1.4.13 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.lighttpd.net/download/ \ http://mirrors.cat.pdx.edu/lighttpd/ @@ -34,6 +35,7 @@ OPTIONS= BZIP2 "Enable Bzip2 support" off \ FAM "Enable fam/gamin support" off \ GDBM "Enable gdbm storage support" off \ IPV6 "Enable IPV6 support" on \ + MAGNET "Enable magnet support" off \ MEMCACHE "Enable memcached storage support" off \ MYSQL "Enable MYSQL support" off \ OPENLDAP "Enable LDAP support" off \ @@ -78,6 +80,12 @@ CONFIGURE_ARGS+= --with-gdbm CONFIGURE_ARGS+= --disable-ipv6 .endif +.if defined(WITH_MAGNET) +USE_LUA= 5.1+ +CONFIGURE_ARGS+= --with-lua +CONFIGURE_ENV+= LUA_CFLAGS="-I${LUA_INCDIR}" LUA_LIBS="-L${LUA_LIBDIR} -llua" +.endif + .if defined(WITH_MEMCACHE) CONFIGURE_ARGS+= --with-memcache .endif |