* [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
@ 2023-12-18 2:22 Brad Smith
2023-12-24 18:22 ` Brad Smith
2023-12-24 18:58 ` Michael Niedermayer
0 siblings, 2 replies; 4+ messages in thread
From: Brad Smith @ 2023-12-18 2:22 UTC (permalink / raw)
To: ffmpeg-devel
configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
2023-12-18 2:22 [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Brad Smith
@ 2023-12-24 18:22 ` Brad Smith
2023-12-24 18:58 ` Michael Niedermayer
1 sibling, 0 replies; 4+ messages in thread
From: Brad Smith @ 2023-12-24 18:22 UTC (permalink / raw)
To: ffmpeg-devel
ping.
On 2023-12-17 9:22 p.m., Brad Smith wrote:
> configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
>
> 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
_______________________________________________
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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
2023-12-18 2:22 [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Brad Smith
2023-12-24 18:22 ` Brad Smith
@ 2023-12-24 18:58 ` Michael Niedermayer
2023-12-24 19:35 ` Brad Smith
1 sibling, 1 reply; 4+ messages in thread
From: Michael Niedermayer @ 2023-12-24 18:58 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 454 bytes --]
Hi
On Sun, Dec 17, 2023 at 09:22:39PM -0500, Brad Smith wrote:
> configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
The commit message should be a bit more verbose.
Explaining "why" even if thats obvious to you
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Those who are too smart to engage in politics are punished by being
governed by those who are dumber. -- Plato
[-- 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] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
2023-12-24 18:58 ` Michael Niedermayer
@ 2023-12-24 19:35 ` Brad Smith
0 siblings, 0 replies; 4+ messages in thread
From: Brad Smith @ 2023-12-24 19:35 UTC (permalink / raw)
To: FFmpeg development discussions and patches, Michael Niedermayer
On 2023-12-24 1:58 p.m., Michael Niedermayer wrote:
> Hi
>
> On Sun, Dec 17, 2023 at 09:22:39PM -0500, Brad Smith wrote:
>> configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm
> The commit message should be a bit more verbose.
> Explaining "why" even if thats obvious to you
>
> thx
Done.
_______________________________________________
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] 4+ messages in thread
end of thread, other threads:[~2023-12-24 19:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-18 2:22 [FFmpeg-devel] [PATCH] configure: Enable section_data_rel_ro for FreeBSD and NetBSD aarch64 / arm Brad Smith
2023-12-24 18:22 ` Brad Smith
2023-12-24 18:58 ` Michael Niedermayer
2023-12-24 19:35 ` 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