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 1/3] Makefile: delete config_components.h on distclean
@ 2022-03-17 21:32 James Almer
  2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 2/3] Makefile: check config_components.h when comparing timestamps in component list files James Almer
  2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 3/3] gitignore: add config_components.h James Almer
  0 siblings, 2 replies; 5+ messages in thread
From: James Almer @ 2022-03-17 21:32 UTC (permalink / raw)
  To: ffmpeg-devel

Signed-off-by: James Almer <jamrial@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 1c38c522fb..13fa7a409c 100644
--- a/Makefile
+++ b/Makefile
@@ -159,7 +159,7 @@ clean::
 	$(RM) -rf coverage.info coverage.info.in lcov
 
 distclean:: clean
-	$(RM) .version config.asm config.h mapfile  \
+	$(RM) .version config.asm config.h config_components.h mapfile  \
 		ffbuild/.config ffbuild/config.* libavutil/avconfig.h \
 		version.h libavutil/ffversion.h libavcodec/codec_names.h \
 		libavcodec/bsf_list.c libavformat/protocol_list.c \
-- 
2.35.1

_______________________________________________
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

* [FFmpeg-devel] [PATCH 2/3] Makefile: check config_components.h when comparing timestamps in component list files
  2022-03-17 21:32 [FFmpeg-devel] [PATCH 1/3] Makefile: delete config_components.h on distclean James Almer
@ 2022-03-17 21:32 ` James Almer
  2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 3/3] gitignore: add config_components.h James Almer
  1 sibling, 0 replies; 5+ messages in thread
From: James Almer @ 2022-03-17 21:32 UTC (permalink / raw)
  To: ffmpeg-devel

Signed-off-by: James Almer <jamrial@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 13fa7a409c..f6eb4f591d 100644
--- a/Makefile
+++ b/Makefile
@@ -79,7 +79,7 @@ CONFIGURABLE_COMPONENTS =                                           \
     $(SRC_PATH)/libavcodec/parsers.c                                \
     $(SRC_PATH)/libavformat/protocols.c                             \
 
-config.h: ffbuild/.config
+config_components.h: ffbuild/.config
 ffbuild/.config: $(CONFIGURABLE_COMPONENTS)
 	@-tput bold 2>/dev/null
 	@-printf '\nWARNING: $(?) newer than config.h, rerun configure\n\n'
-- 
2.35.1

_______________________________________________
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

* [FFmpeg-devel] [PATCH 3/3] gitignore: add config_components.h
  2022-03-17 21:32 [FFmpeg-devel] [PATCH 1/3] Makefile: delete config_components.h on distclean James Almer
  2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 2/3] Makefile: check config_components.h when comparing timestamps in component list files James Almer
@ 2022-03-17 21:32 ` James Almer
  2022-03-17 21:33   ` Martin Storsjö
  1 sibling, 1 reply; 5+ messages in thread
From: James Almer @ 2022-03-17 21:32 UTC (permalink / raw)
  To: ffmpeg-devel

Signed-off-by: James Almer <jamrial@gmail.com>
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index f06d853edf..e810d11107 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,6 +35,7 @@
 /ffprobe
 /config.asm
 /config.h
+/config_components.h
 /coverage.info
 /lcov/
 /src
-- 
2.35.1

_______________________________________________
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 3/3] gitignore: add config_components.h
  2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 3/3] gitignore: add config_components.h James Almer
@ 2022-03-17 21:33   ` Martin Storsjö
  2022-03-17 21:36     ` James Almer
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Storsjö @ 2022-03-17 21:33 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

On Thu, 17 Mar 2022, James Almer wrote:

> Signed-off-by: James Almer <jamrial@gmail.com>
> ---
> .gitignore | 1 +
> 1 file changed, 1 insertion(+)

All three LGTM - thanks, and sorry for missing these!

// Martin

_______________________________________________
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 3/3] gitignore: add config_components.h
  2022-03-17 21:33   ` Martin Storsjö
@ 2022-03-17 21:36     ` James Almer
  0 siblings, 0 replies; 5+ messages in thread
From: James Almer @ 2022-03-17 21:36 UTC (permalink / raw)
  To: ffmpeg-devel



On 3/17/2022 6:33 PM, Martin Storsjö wrote:
> On Thu, 17 Mar 2022, James Almer wrote:
> 
>> Signed-off-by: James Almer <jamrial@gmail.com>
>> ---
>> .gitignore | 1 +
>> 1 file changed, 1 insertion(+)
> 
> All three LGTM - thanks, and sorry for missing these!
> 
> // Martin

Applied.
_______________________________________________
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:[~2022-03-17 21:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-17 21:32 [FFmpeg-devel] [PATCH 1/3] Makefile: delete config_components.h on distclean James Almer
2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 2/3] Makefile: check config_components.h when comparing timestamps in component list files James Almer
2022-03-17 21:32 ` [FFmpeg-devel] [PATCH 3/3] gitignore: add config_components.h James Almer
2022-03-17 21:33   ` Martin Storsjö
2022-03-17 21:36     ` James Almer

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