From patchwork Thu Jan 19 16:04:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Schantl X-Patchwork-Id: 6443 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4NySBD3FCMz40V9 for ; Thu, 19 Jan 2023 16:04:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4NySBB5Q4nzmK; Thu, 19 Jan 2023 16:04:34 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4NySBB1pLnz2yxs; Thu, 19 Jan 2023 16:04:34 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4NySB76W4vz2xRJ for ; Thu, 19 Jan 2023 16:04:31 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4NySB7217mzQv; Thu, 19 Jan 2023 16:04:31 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1674144271; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=RIXrPFhit3m41UGaOD366vuRtn2cSzMCbsDeCi/3YlQ=; b=47QWmPzfzRByCP+5HeRvmt1L3BWwVIYb8MVPEA4lUVDqtDjYRLH9liGIg2nX1ViL/r/NSB PfhkZN7kBkN3qjDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1674144271; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=RIXrPFhit3m41UGaOD366vuRtn2cSzMCbsDeCi/3YlQ=; b=RJ3iLLySpzm7Qy8J0KSlstn+5B2y9fHhlDAvdJPbTwbRzJDnQuWLosy3GZuBSFgAIA6+ze o1cmjaQ65k5VkHMbcRKqwT+KSghcy+e6687zxuV1YkZ7DcJAyJ2MulNQxV+I11l5x2xvJM H1mhM37HCO54VPnl7YAzfvVFna0/rRFl3M+eim67TzRd8/x7MXozKdyYWMVj1o3cJG5VzQ aB+1HZkHfZI4KOEqvpFccobmrLiCFMgPTcrFCDVHPFjgDyi0+FeTCXymYoyCGmX73sdymR SFigatT3bcziJzzRNTPIYlF7O7STVKOUQwctub6yU3h7auxgqm/6cypFfK6Bsg== From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] perl: XSLoader requires DynaLoader. Date: Thu, 19 Jan 2023 17:04:19 +0100 Message-Id: <20230119160419.56487-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" The XSLoader module from the main package requires the DynaLoader to work properly. Signed-off-by: Stefan Schantl Acked-by: Bernhard Bitsch --- perl/perl.nm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/perl/perl.nm b/perl/perl.nm index e61d80a78..5233b652a 100644 --- a/perl/perl.nm +++ b/perl/perl.nm @@ -152,6 +152,9 @@ packages package perl requires perl-libs = %{version}-%{_release} + + # XSLoader requires DynaLoader + perl(DynaLoader) end conflicts