From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 796E71F44D for ; Tue, 2 Apr 2024 00:20:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1712017232; bh=1h3x/5VNc2kH0IDzPdhDs9cjUX/aURKQjbmZWjmxy+w=; h=From:To:Subject:Date:From; b=aG9YnXoGBN3ZUMPRAsVpZa2IE+6FbbDs+N6zxjcPpkE6T+fZgHc2FwGWMNM03evUu 4jYRn9VOC6kl9HgNlywVi7I+jsZzcF+KlBqwyzZLGtR3mVNnwRRN8yZW+qMiEKqV6U mVEafblWJ2cXNIq1+IuOkH19PixegYVZcdMjzy8k= From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH] fix build with 5.36 Date: Tue, 2 Apr 2024 00:20:26 +0000 Message-Id: <20240402002026.1496691-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- mwrap_core.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mwrap_core.h b/mwrap_core.h index a84cd6d..f3e6fb2 100644 --- a/mwrap_core.h +++ b/mwrap_core.h @@ -76,6 +76,7 @@ static uint32_t bt_req_depth; #if MWRAP_PERL extern pthread_key_t __attribute__((weak)) PL_thr_key; extern const char __attribute__((weak)) PL_memory_wrap[]; /* needed for -O0 */ +extern MWRAP_TSD void * __attribute__((weak)) PL_current_context; # if !defined(PERL_IMPLICIT_CONTEXT) static size_t *root_locating; /* determines if PL_curcop is our thread */ # endif