From df8365f0c77c02ce52495df9f96202970174222e Mon Sep 17 00:00:00 2001 From: Bananymous Date: Sat, 16 Aug 2025 22:55:06 +0300 Subject: [PATCH] ports/openssh: Configure with --disable-fd-passing I though this wasn't needed because of my patch, but I didn't actually test the code --- ports/openssh/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ports/openssh/build.sh b/ports/openssh/build.sh index 67b7bc38..16f78f1d 100755 --- a/ports/openssh/build.sh +++ b/ports/openssh/build.sh @@ -9,6 +9,7 @@ MAKE_INSTALL_TARGETS=('install-nokeys') CONFIGURE_OPTIONS=( '--sysconfdir=/etc' '--sbindir=/usr/bin' + '--disable-fd-passing' 'CFLAGS=-Wno-deprecated-declarations' )