lighttpd: remove options

This commit is contained in:
FX Coudert 2018-12-17 18:04:23 +01:00
parent a99228a313
commit ab67ac5bde

View file

@ -10,9 +10,6 @@ class Lighttpd < Formula
sha256 "7b4c767ee72d46a040ecbe7817b1de342cc5541698c05aafd43dcdf21686de6d" => :sierra
end
option "with-lua@5.1", "Include Lua scripting support for mod_magnet"
deprecated_option "with-lua51" => "with-lua@5.1"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
@ -20,8 +17,6 @@ class Lighttpd < Formula
depends_on "openldap"
depends_on "openssl"
depends_on "pcre"
depends_on "libev" => :optional
depends_on "lua@5.1" => :optional
# default max. file descriptors; this option will be ignored if the server is not started as root
MAX_FDS = 512
@ -54,9 +49,6 @@ class Lighttpd < Formula
--with-bzip2
]
args << "--with-lua" if build.with? "lua@5.1"
args << "--with-libev" if build.with? "libev"
# autogen must be run, otherwise prebuilt configure may complain
# about a version mismatch between included automake and Homebrew's
system "./autogen.sh"