libpq: enable auth drivers
Closes #47954. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
This commit is contained in:
parent
17026ed78c
commit
db2d2583b0
1 changed files with 4 additions and 0 deletions
|
@ -3,6 +3,7 @@ class Libpq < Formula
|
|||
homepage "https://www.postgresql.org/docs/12/libpq.html"
|
||||
url "https://ftp.postgresql.org/pub/source/v12.1/postgresql-12.1.tar.bz2"
|
||||
sha256 "a09bf3abbaf6763980d0f8acbb943b7629a8b20073de18d867aecdb7988483ed"
|
||||
revision 1
|
||||
|
||||
bottle do
|
||||
sha256 "e38eeb2551409bd6f85fac83f04fe73a794a040c155a75dafe56d6f8ce031494" => :catalina
|
||||
|
@ -17,6 +18,7 @@ class Libpq < Formula
|
|||
def install
|
||||
system "./configure", "--disable-debug",
|
||||
"--prefix=#{prefix}",
|
||||
"--with-gssapi",
|
||||
"--with-openssl",
|
||||
"--libdir=#{opt_lib}",
|
||||
"--includedir=#{opt_include}"
|
||||
|
@ -31,6 +33,8 @@ class Libpq < Formula
|
|||
system "make", "-C", "src/bin", "install", *dirs
|
||||
system "make", "-C", "src/include", "install", *dirs
|
||||
system "make", "-C", "src/interfaces", "install", *dirs
|
||||
system "make", "-C", "src/common", "install", *dirs
|
||||
system "make", "-C", "src/port", "install", *dirs
|
||||
system "make", "-C", "doc", "install", *dirs
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue