1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

devel/dcmtk: add EGD conditional to fix build with LibreSSL

PR:		198780
Submitted by:	Bernard Spil <spil.oss@gmail.com>
This commit is contained in:
Kurt Jaeger 2015-03-29 20:22:42 +00:00
parent b2e7e72476
commit f26190de66
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=382626

View File

@ -0,0 +1,12 @@
--- dcmtls/libsrc/tlslayer.cc.orig 2010-10-14 13:14:46 UTC
+++ dcmtls/libsrc/tlslayer.cc
@@ -371,7 +371,9 @@ void DcmTLSTransportLayer::seedPRNG(cons
#endif
if (randFile)
{
+#ifndef LIBRESSL_VERSION_NUMBER
if (RAND_egd(randFile) <= 0)
+#endif
{
RAND_load_file(randFile ,-1);
}