From 2b06a067f9bfdb564600522e2853bcf6a235e771 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Tue, 10 May 2016 13:26:53 +0100 Subject: [PATCH] h2o 1.7.2 Note that the security fix for LibreSSL upstream didn't impact Homebrew because we don't use the bundled LibreSSL library. Closes #1046. Signed-off-by: Dominyk Tiller --- Formula/h2o.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Formula/h2o.rb b/Formula/h2o.rb index ff1ba4398f..e40ceac51f 100644 --- a/Formula/h2o.rb +++ b/Formula/h2o.rb @@ -1,8 +1,8 @@ class H2o < Formula desc "HTTP server with support for HTTP/1.x and HTTP/2" homepage "https://github.com/h2o/h2o/" - url "https://github.com/h2o/h2o/archive/v1.7.1.tar.gz" - sha256 "a9488667f0b73a66d5ef593660f6c0f66311d6eb4bf9378c6b7e74ab7ec9eea2" + url "https://github.com/h2o/h2o/archive/v1.7.2.tar.gz" + sha256 "fd75eab905dff9bcfd6c9c45d83a4cd0c133cc82a7d3dd48537244b12c2327a8" head "https://github.com/h2o/h2o.git" bottle do @@ -22,6 +22,10 @@ class H2o < Formula depends_on "wslay" => :optional def install + # https://github.com/Homebrew/homebrew-core/pull/1046 + # https://github.com/Homebrew/brew/pull/251 + ENV.delete("SDKROOT") + args = std_cmake_args args << "-DWITH_BUNDLED_SSL=OFF" args << "-DWITH_MRUBY=OFF" if build.without? "mruby"