berkeley-db: remove options.

Closes #36071.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
This commit is contained in:
Mike McQuaid 2019-01-16 17:00:16 +00:00 committed by Chongyu Zhu
parent cb5c976d2b
commit b05ebe46ab
No known key found for this signature in database
GPG key ID: 1A43E3C9100B38F5

View file

@ -13,12 +13,12 @@ class BerkeleyDb < Formula
sha256 "12b3dcf8c9549ee7a6afdafbc0ff7235fe069af06a28d26525e57b8f8ae37a61" => :el_capitan
end
depends_on :java => [:optional, :build]
depends_on "openssl"
def install
# BerkeleyDB dislikes parallel builds
ENV.deparallelize
# --enable-compat185 is necessary because our build shadows
# the system berkeley db 1.x
args = %W[
@ -32,7 +32,6 @@ class BerkeleyDb < Formula
--enable-dbm
--enable-stl
]
args << "--enable-java" if build.with? "java"
# BerkeleyDB requires you to build everything from the build_unix subdirectory
cd "build_unix" do