diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /media/libogg/update.sh | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'media/libogg/update.sh')
-rw-r--r-- | media/libogg/update.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/media/libogg/update.sh b/media/libogg/update.sh new file mode 100644 index 0000000000..f0698c20af --- /dev/null +++ b/media/libogg/update.sh @@ -0,0 +1,19 @@ +# Usage: ./update.sh <ogg_src_directory> +# +# Copies the needed files from a directory containing the original +# libogg source that we need for the Mozilla HTML5 media support. +cp $1/include/ogg/config_types.h ./include/ogg/config_types.h +cp $1/include/ogg/ogg.h ./include/ogg/ogg.h +cp $1/include/ogg/os_types.h ./include/ogg/os_types.h +cp $1/CHANGES ./CHANGES +cp $1/COPYING ./COPYING +cp $1/README ./README +cp $1/src/bitwise.c ./src/ogg_bitwise.c +cp $1/src/framing.c ./src/ogg_framing.c +cp $1/AUTHORS ./AUTHORS +patch -p0 < solaris-types.patch +# memory-reporting.patch adds ogg_alloc.c, make sure it doesn't exist to avoid +# unpleasantries. +rm -f ./src/ogg_alloc.c +patch -p0 < memory-reporting.patch +patch -p0 < ogg-fuzzing.patch |