This patch is taken from Debian URL: https://sources.debian.org/data/main/a/android-platform-system-core/1%3A7.0.0%2Br33-1/debian/patches/adb_libssl_11.diff Description: adb: Make compatible with openssl 1.1 OpenSSL version 1.1 brought some API changes which broke the build here, fix that by accessing rsa->n (and e) directly, using RSA_get0_key instead. Author: Chirayu Desai n); + RSA_get0_key(rsa, &n, &e, NULL); BN_set_bit(r, RSANUMWORDS * 32); BN_mod_sqr(rr, r, n, ctx); BN_div(NULL, rem, n, r32, ctx); @@ -92,7 +93,7 @@ BN_div(n, rem, n, r32, ctx); pkey->n[i] = BN_get_word(rem); } - pkey->exponent = BN_get_word(rsa->e); + pkey->exponent = BN_get_word(e); out: BN_free(n0inv); 1b632f39b08b3644af5230d5350a656'>refslogtreecommitdiff
path: root/etc/openrc/guix-daemon.in
AgeCommit message (Expand)Author
2021-07-07guix-install.sh: Prompt for configuring substitutes discovery....Also ensure prompt_yes_no always print the message with a trailing space, which is more pleasing to the eye. * etc/guix-daemon.conf.in <--discover=no>: New guix-daemon option. * etc/guix-daemon.service.in: Likewise. * etc/init.d/guix-daemon.in: Likewise. * etc/openrc/guix-daemon.in: Likewise. * etc/guix-install.sh (configure_substitute_discovery): New procedure. (sys_enable_guix_daemon): Ask the user whether automatic substitute discovery should be enabled. Set the '--discover' argument accordingly. (prompt_yes_no): Add a trailing space to the message. (sys_authorize_build_farms): Remove trailing space from the message argument. * NEWS (Distribution): Add news. Maxim Cournoyer