Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2022-03-22 20:38:30 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2022-03-22 20:42:21 +0300
commitadf1bc4335d710088c58e824b6027255096cc295 (patch)
tree169ab1a3ea24e68bf8149f7676a76738e763d347
parentf34bd77e39212e3a3910775ff08489adfc1013e6 (diff)
Bump corefx submodule to get brotli updatemono-6.12.0.174
(cherry picked from commit 71ad7a0460627eb899bc54cfe33a2584419f75f8)
m---------external/corefx0
-rw-r--r--mono/native/Makefile.am35
2 files changed, 21 insertions, 14 deletions
diff --git a/external/corefx b/external/corefx
-Subproject 9174bbeb7e1e4d3dc51f4f82243cbf4c62c61ef
+Subproject 9776170d4d0813fc0a0662ba6fa1a26ba9bc24b
diff --git a/mono/native/Makefile.am b/mono/native/Makefile.am
index 2237b25e5c6..fe68b5c64f1 100644
--- a/mono/native/Makefile.am
+++ b/mono/native/Makefile.am
@@ -34,28 +34,35 @@ common_sources = \
../../external/corefx/src/Native/Unix/System.Native/pal_uid.h \
../../external/corefx/src/Native/Unix/System.Native/pal_time.c \
../../external/corefx/src/Native/Unix/System.Native/pal_time.h \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/dictionary_hash.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/backward_references.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/backward_references_hq.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/histogram.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/memory.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/entropy_encode.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/compress_fragment_two_pass.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/bit_cost.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/block_splitter.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/encode.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/brotli_bit_stream.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/cluster.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/backward_references.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/utf8_util.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/command.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/compress_fragment.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/brotli_bit_stream.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/bit_cost.c \
- ../../external/corefx/src/Native/AnyOS/brotli/enc/static_dict.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/compress_fragment_two_pass.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/dictionary_hash.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/encode.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/encoder_dict.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/entropy_encode.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/fast_log.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/histogram.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/literal_cost.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/memory.c \
../../external/corefx/src/Native/AnyOS/brotli/enc/metablock.c \
- ../../external/corefx/src/Native/AnyOS/brotli/dec/state.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/static_dict.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/enc/utf8_util.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/dec/bit_reader.c \
../../external/corefx/src/Native/AnyOS/brotli/dec/decode.c \
../../external/corefx/src/Native/AnyOS/brotli/dec/huffman.c \
- ../../external/corefx/src/Native/AnyOS/brotli/dec/bit_reader.c \
- ../../external/corefx/src/Native/AnyOS/brotli/common/dictionary.c
+ ../../external/corefx/src/Native/AnyOS/brotli/dec/state.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/common/constants.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/common/context.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/common/dictionary.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/common/platform.c \
+ ../../external/corefx/src/Native/AnyOS/brotli/common/transform.c
macos_sources = $(unix_sources)