# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/w3m/no_egd.patch # Copyright (C) 2021 - 2026 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- w3m-0.5.3/url.c.vanilla 2021-01-22 15:06:49.816000000 +0100 +++ w3m-0.5.3/url.c 2021-01-22 15:07:22.325000000 +0100 @@ -268,6 +268,8 @@ if (RAND_status()) return; if ((file = RAND_file_name(buffer, sizeof(buffer)))) { +#undef USE_EGD +/* Note: the alterative would be to enable building of EGD in openssl, I suppose */ #ifdef USE_EGD if (RAND_egd(file) > 0) return;