From d06f1e84860a964d0430f83518b8833877d5e0e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 6 Mar 2022 16:42:54 +0100 Subject: =?UTF-8?q?guile:=20remove=20disabling=20of=20guile=20gmp=20alloca?= =?UTF-8?q?tor=20with=20Guile=20=E2=89=A5=203.0.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the compilation warning: weechat-guile.c: In function ‘weechat_plugin_init’: weechat-guile.c:1270:5: warning: ‘scm_install_gmp_memory_functions’ is deprecated [-Wdeprecated-declarations] --- src/plugins/guile/weechat-guile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index 32febd4c6..a3108aa74 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -1261,14 +1261,14 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) if (!guile_buffer_output) return WEECHAT_RC_ERROR; -#ifdef HAVE_GUILE_GMP_MEMORY_FUNCTIONS +#if defined(HAVE_GUILE_GMP_MEMORY_FUNCTIONS) && (SCM_MAJOR_VERSION < 3 || (SCM_MAJOR_VERSION == 3 && SCM_MINOR_VERSION == 0 && SCM_MICRO_VERSION < 8)) /* * prevent guile to use its own gmp allocator, because it can conflict * with other plugins using GnuTLS like relay, which can crash WeeChat - * on unload (or exit) + * on unload (or exit); this is not needed any more with Guile ≥ 3.0.8 */ scm_install_gmp_memory_functions = 0; -#endif /* HAVE_GUILE_GMP_MEMORY_FUNCTIONS */ +#endif /* defined(HAVE_GUILE_GMP_MEMORY_FUNCTIONS) && (SCM_MAJOR_VERSION < 3 || (SCM_MAJOR_VERSION == 3 && SCM_MINOR_VERSION == 0 && SCM_MICRO_VERSION < 8)) */ scm_init_guile (); -- cgit debian/1.2.3+git2.25.1-1-2-gaceb0