From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 797B548A0B for ; Sun, 24 Dec 2023 19:33:44 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 56CFD68D111; Sun, 24 Dec 2023 21:33:41 +0200 (EET) Received: from mail.comstyle.com (speedy.comstyle.com [206.51.28.2]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A1E6168CF46 for ; Sun, 24 Dec 2023 21:33:34 +0200 (EET) Received: from mail.comstyle.com (localhost [127.0.0.1]) by mail.comstyle.com (Postfix) with ESMTP id 4Syrms0XVhz8PbP for ; Sun, 24 Dec 2023 14:33:33 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=comstyle.com; h=date:from :to:subject:message-id:mime-version:content-type; s=default; bh= V8CpQB99jnLyjLkeNlxdkgSdx5s=; b=LyxFqFjhufBsH0Up9R7xvZXT/DaV7LTq l/JQWkV7MV3/Q7IDvQpVl6hZNuLwMjPPY0OqwE3NJ8I6xHikCLaSbpji3xd9rgB1 fxoi16A/DNY6YlTc10Dgwg584w0itw0jwQlpp/LBWzAnP7Jy61zO6knsmk1cmLlZ XVTBAIcRO7o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=comstyle.com; h=date:from:to :subject:message-id:mime-version:content-type; q=dns; s=default; b= mQgAwxWpAd1/nBXzicAty3H5/z22HnR7PAtEKdTIpQzMFS4e36DDnAamXTU9Xx8J YpYTscc5HlgzNVuRxHGUobu8b78MWwiJjZnSZsH7GHoHGX9dtX/ucTBWiFEKBzB4 7qCKHqqBv4pEe0Zf/qpXOwbLoERSB04ooprIzPKI01s= Received: from humpty.home.comstyle.com (unknown [IPv6:2001:470:b050:3:ae2c:3519:c3af:aa10]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA512) (No client certificate requested) (Authenticated sender: brad) by mail.comstyle.com (Postfix) with ESMTPSA id 4Syrmr74JZz8PbN for ; Sun, 24 Dec 2023 14:33:32 -0500 (EST) Date: Sun, 24 Dec 2023 14:33:31 -0500 From: Brad Smith To: ffmpeg-devel@ffmpeg.org Message-ID: MIME-Version: 1.0 Content-Disposition: inline Subject: [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Fixes the build. It's a requirement when utilizing PIE. Signed-off-by: Brad Smith --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 078aa9437a..226874600a 100755 --- a/configure +++ b/configure @@ -5601,6 +5601,7 @@ case $target_os in ;; netbsd) disable symver + enable section_data_rel_ro oss_indev_extralibs="-lossaudio" oss_outdev_extralibs="-lossaudio" enabled gcc || check_ldflags -Wl,-zmuldefs @@ -5619,6 +5620,7 @@ case $target_os in disable symver ;; freebsd) + enable section_data_rel_ro ;; bsd/os) add_extralibs -lpoll -lgnugetopt -- 2.43.0 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".