X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=Configure;h=29f8b4dd4b1c52396044d3a4e31621425528f090;hb=5f10fce37b234807c39d6b1b6440585b84b68b65;hp=2e9efaa5f3da8f2ff1bde4c58e4f3b43d9596cdb;hpb=de5e2cb541699e11a2b82de1d7f98f62bc207a1d;p=oweals%2Fopenssl.git diff --git a/Configure b/Configure index 2e9efaa5f3..29f8b4dd4b 100755 --- a/Configure +++ b/Configure @@ -1049,6 +1049,9 @@ if (scalar(@seed_sources) == 0) { print "Using os-specific seed configuration\n"; push @seed_sources, 'os'; } +if (scalar(grep { $_ eq 'egd' } @seed_sources) > 0) { + delete $disabled{'egd'}; +} if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) { die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1; warn <<_____ if scalar(@seed_sources) == 1;