Skip to content

Commit 6daccb5

Browse files
committed
openssh: explicitly disable arc4random_stir
This was dropped from the import library on newer Cygwin, but was still present in 3.3, resulting in a build failure on 32-bit.
1 parent 9463c32 commit 6daccb5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

openssh/PKGBUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=openssh
44
pkgver=10.0p1
5-
pkgrel=3
5+
pkgrel=4
66
pkgdesc='Free version of the SSH connectivity tools'
77
url='https://www.openssh.com/portable.html'
88
msys2_changelog_url="https://www.openssh.com/releasenotes.html"
@@ -42,6 +42,9 @@ build() {
4242
# setproctitle is new in Cygwin 3.6, and we want openssh
4343
# to work with older Cygwin versions too.
4444
export ac_cv_func_setproctitle=no
45+
# configure might detect arc4random_stir stub in older
46+
# Cygwin versions, which is not in header
47+
export ac_cv_func_arc4random_stir=no
4548

4649
export MSYSTEM=CYGWIN
4750
TEST_SSH_UTF8=no \

0 commit comments

Comments
 (0)