postgresql: add bonjourSupport option

This commit is contained in:
Wolfgang Walther
2024-11-22 20:39:31 +01:00
parent b492340e98
commit 4aa1cda21f

View File

@@ -45,6 +45,9 @@ let
, stdenvNoCC
, testers
# bonjour
, bonjourSupport ? false
# GSSAPI
, gssSupport ? with stdenv.hostPlatform; !isWindows && !isStatic
, libkrb5
@@ -211,7 +214,8 @@ let
++ lib.optionals ldapSupport [ "--with-ldap" ]
++ lib.optionals tclSupport [ "--with-tcl" ]
++ lib.optionals selinuxSupport [ "--with-selinux" ]
++ lib.optionals nlsSupport [ "--enable-nls" ];
++ lib.optionals nlsSupport [ "--enable-nls" ]
++ lib.optionals bonjourSupport [ "--with-bonjour" ];
patches = [
(if atLeast "16" then ./patches/relative-to-symlinks-16+.patch else ./patches/relative-to-symlinks.patch)