On 09/04/2020 07:45, The Doctor wrote: > On Wed, Apr 08, 2020 at 09:26:31AM +0100, Matt Caswell wrote: >> The fix is already going through review here: >> >> https://github.com/openssl/openssl/pull/11489 >> >> It will probably be tomorrow before it gets merged. >> >> Matt >> > > Still saw the problem in openssl-1.1.1-stable-SNAP-20200409 . The fix was merged earlier today. Matt > >> >> On 08/04/2020 07:46, The Doctor wrote: >>> Error occured while compiling >>> >>> in FreeBsd 12 >>> >>> root@gallifrey:/usr/source/openssl-1.1.1-stable-SNAP-20200408 # make >>> make depend && make _all >>> /usr/local/bin/clang10 -I. -Iinclude -fPIC -pthread -Wa,--noexecstack -Qunused-arguments -Wall -O3 -DL_ENDIAN -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM -DRC4_ASM -DMD5_ASM -DAESNI_ASM -DVPAES_ASM -DGHASH_ASM -DECP_NISTZ256_ASM -DX25519_ASM -DPOLY1305_ASM -DOPENSSLDIR="\"/usr/ssl\"" -DENGINESDIR="\"/usr//lib/engines-1.1\"" -D_THREAD_SAFE -D_REENTRANT -DZLIB -DZLIB_SHARED -DNDEBUG -MMD -MF crypto/rand/drbg_ctr.d.tmp -MT crypto/rand/drbg_ctr.o -c -o crypto/rand/drbg_ctr.o crypto/rand/drbg_ctr.c >>> crypto/rand/drbg_ctr.c:25:5: error: use of undeclared identifier 'u32' >>> u32 n = 16, c = 1; >>> ^ >>> crypto/rand/drbg_ctr.c:28:11: error: use of undeclared identifier 'n' >>> --n; >>> ^ >>> crypto/rand/drbg_ctr.c:29:9: error: use of undeclared identifier 'c' >>> c += p[n]; >>> ^ >>> crypto/rand/drbg_ctr.c:29:16: error: use of undeclared identifier 'n' >>> c += p[n]; >>> ^ >>> crypto/rand/drbg_ctr.c:30:11: error: use of undeclared identifier 'n' >>> p[n] = (u8)c; >>> ^ >>> crypto/rand/drbg_ctr.c:30:17: error: use of undeclared identifier 'u8' >>> p[n] = (u8)c; >>> ^ >>> crypto/rand/drbg_ctr.c:31:9: error: use of undeclared identifier 'c' >>> c >>= 8; >>> ^ >>> crypto/rand/drbg_ctr.c:32:14: error: use of undeclared identifier 'n' >>> } while (n); >>> ^ >>> 8 errors generated. >>> *** Error code 1 >>> >>> Stop. >>> make[1]: stopped in /usr/source/openssl-1.1.1-stable-SNAP-20200408 >>> *** Error code 1 >>> >>> Stop. >>> >>> Please fix. >>> >