Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
@ 2023-12-24 19:33 Brad Smith
  2023-12-25  2:08 ` Michael Niedermayer
  0 siblings, 1 reply; 5+ messages in thread
From: Brad Smith @ 2023-12-24 19:33 UTC (permalink / raw)
  To: ffmpeg-devel

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 <brad@comstyle.com>
---
 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".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
  2023-12-24 19:33 [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Brad Smith
@ 2023-12-25  2:08 ` Michael Niedermayer
  2023-12-26  2:04   ` Brad Smith
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Niedermayer @ 2023-12-25  2:08 UTC (permalink / raw)
  To: FFmpeg development discussions and patches


[-- Attachment #1.1: Type: text/plain, Size: 663 bytes --]

On Sun, Dec 24, 2023 at 02:33:31PM -0500, Brad Smith wrote:
> 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 <brad@comstyle.com>
> ---
>  configure | 2 ++
>  1 file changed, 2 insertions(+)

will apply

thx

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Frequently ignored answer#1 FFmpeg bugs should be sent to our bugtracker. User
questions about the command line tools should be sent to the ffmpeg-user ML.
And questions about how to use libav* should be sent to the libav-user ML.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 251 bytes --]

_______________________________________________
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".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
  2023-12-25  2:08 ` Michael Niedermayer
@ 2023-12-26  2:04   ` Brad Smith
  2023-12-26 12:34     ` Michael Niedermayer
  0 siblings, 1 reply; 5+ messages in thread
From: Brad Smith @ 2023-12-26  2:04 UTC (permalink / raw)
  To: FFmpeg development discussions and patches, Michael Niedermayer

On 2023-12-24 9:08 p.m., Michael Niedermayer wrote:
> On Sun, Dec 24, 2023 at 02:33:31PM -0500, Brad Smith wrote:
>> 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 <brad@comstyle.com>
>> ---
>>   configure | 2 ++
>>   1 file changed, 2 insertions(+)
> will apply
>
> thx

Thanks. Can you please back port this to 6.1, 6.0, 5.1, 5.0 and 4.4?
_______________________________________________
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".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
  2023-12-26  2:04   ` Brad Smith
@ 2023-12-26 12:34     ` Michael Niedermayer
  2023-12-27  3:33       ` Brad Smith
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Niedermayer @ 2023-12-26 12:34 UTC (permalink / raw)
  To: FFmpeg development discussions and patches


[-- Attachment #1.1: Type: text/plain, Size: 827 bytes --]

On Mon, Dec 25, 2023 at 09:04:54PM -0500, Brad Smith wrote:
> On 2023-12-24 9:08 p.m., Michael Niedermayer wrote:
> > On Sun, Dec 24, 2023 at 02:33:31PM -0500, Brad Smith wrote:
> > > 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 <brad@comstyle.com>
> > > ---
> > >   configure | 2 ++
> > >   1 file changed, 2 insertions(+)
> > will apply
> > 
> > thx
> 
> Thanks. Can you please back port this to 6.1, 6.0, 5.1, 5.0 and 4.4?

it will be in the next releases from these branches

thx

[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Republics decline into democracies and democracies degenerate into
despotisms. -- Aristotle

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 251 bytes --]

_______________________________________________
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".

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
  2023-12-26 12:34     ` Michael Niedermayer
@ 2023-12-27  3:33       ` Brad Smith
  0 siblings, 0 replies; 5+ messages in thread
From: Brad Smith @ 2023-12-27  3:33 UTC (permalink / raw)
  To: FFmpeg development discussions and patches, Michael Niedermayer

On December 26, 2023 7:35:09 a.m. Michael Niedermayer 
<michael@niedermayer.cc> wrote:

> On Mon, Dec 25, 2023 at 09:04:54PM -0500, Brad Smith wrote:
>> On 2023-12-24 9:08 p.m., Michael Niedermayer wrote:
>>> On Sun, Dec 24, 2023 at 02:33:31PM -0500, Brad Smith wrote:
>>>> 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 <brad@comstyle.com>
>>>> ---
>>>> configure | 2 ++
>>>> 1 file changed, 2 insertions(+)
>>> will apply
>>>
>>> thx
>>
>> Thanks. Can you please back port this to 6.1, 6.0, 5.1, 5.0 and 4.4?
>
> it will be in the next releases from these branches
>
> thx

Thanks.


Sent with Aqua Mail for Android
_______________________________________________
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".

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-12-27  3:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-24 19:33 [FFmpeg-devel] [PATCH v2] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Brad Smith
2023-12-25  2:08 ` Michael Niedermayer
2023-12-26  2:04   ` Brad Smith
2023-12-26 12:34     ` Michael Niedermayer
2023-12-27  3:33       ` Brad Smith

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git