aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJustin Clift2014-10-30 14:29:32 -0400
committerMike McQuaid2014-10-31 10:02:47 +0000
commitd8b6f3ca865c04c7e3e5437fe419a5745ef777bd (patch)
treeb545a2bbee81ccc106e2d7d4c4d2f2a6ecb559ff /Library/Formula
parentc4e68effd2013d40931ea01d678a064edd05e652 (diff)
downloadhomebrew-d8b6f3ca865c04c7e3e5437fe419a5745ef777bd.tar.bz2
pdns 3.4.1
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdns.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/pdns.rb b/Library/Formula/pdns.rb
index 4fa44c133..d6ff3655d 100644
--- a/Library/Formula/pdns.rb
+++ b/Library/Formula/pdns.rb
@@ -2,8 +2,8 @@ require "formula"
class Pdns < Formula
homepage "http://www.powerdns.com"
- url "http://downloads.powerdns.com/releases/pdns-3.4.0.tar.bz2"
- sha1 "b1c5bf10e03c04f707b752b5159db06179c172d9"
+ url "http://downloads.powerdns.com/releases/pdns-3.4.1.tar.bz2"
+ sha1 "e4d807b4dc27ef130a49e0efaf82a74cb66f5b11"
head do
url "https://github.com/powerdns/pdns.git"
@@ -29,13 +29,13 @@ class Pdns < Formula
depends_on :postgresql if build.include? "pgsql"
def install
+ # https://github.com/Homebrew/homebrew/pull/33739
+ ENV.deparallelize
+
args = ["--prefix=#{prefix}",
"--with-lua",
"--with-sqlite3"]
- # Specifying the sqlite prefix is no longer recognised in the HEAD.
- args << "--with-sqlite=#{Formula["sqlite"].opt_prefix}" if build.stable?
-
# Include the PostgreSQL backend if requested
if build.include? "pgsql"
args << "--with-modules=gsqlite3 gpgsql"