The IPV6 option of the lighttpd port does not works as expected : Enabling the options disable IPV6 support. Disabling the option enables IPV6 suport. Fix: Correct the port Makefile : The following looks wrong .if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --disable-ipv6 .endif I do not know what it should be with the new option framework. How-To-Repeat: cd /usr/ports/www/lighttpd make config enable IPV6 make && make install "lighttpd -V" outputs : Features: - IPv6 support + zlib support + bzip2 support + crypt support + SSL Support + PCRE support - mySQL support - LDAP support + memcached support - FAM support - LUA support + xml support + SQLite support - GDBM support
Responsible Changed From-To: freebsd-bugs->freebsd-ports-bugs ports PR.
Responsible Changed From-To: freebsd-ports-bugs->mm Over to maintainer (via the GNATS Auto Assign Tool)
Author: mm Date: Wed Jul 18 18:32:10 2012 New Revision: 301114 URL: http://svn.freebsd.org/changeset/ports/301114 Log: Fix IPv6 support broken in last update PR: ports/169931 Reported by: Arnaud Houdelette Modified: head/www/lighttpd/Makefile Modified: head/www/lighttpd/Makefile ============================================================================== --- head/www/lighttpd/Makefile Wed Jul 18 18:29:39 2012 (r301113) +++ head/www/lighttpd/Makefile Wed Jul 18 18:32:10 2012 (r301114) @@ -7,7 +7,7 @@ PORTNAME?= lighttpd PORTVERSION= 1.4.31 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES?= www MASTER_SITES?= http://download.lighttpd.net/lighttpd/releases-1.4.x/ @@ -120,7 +120,7 @@ LIB_DEPENDS+= gdbm:${PORTSDIR}/database CONFIGURE_ARGS+= --with-gdbm .endif -.if ${PORT_OPTIONS:MIPV6} +.if empty(PORT_OPTIONS:MIPV6) CONFIGURE_ARGS+= --disable-ipv6 .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!