mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-24 12:47:38 +00:00
Update to BusyBox 1.34.1
This commit is contained in:
parent
632971af15
commit
95fb230b8c
58
native/jni/external/Android.mk
vendored
58
native/jni/external/Android.mk
vendored
@ -326,38 +326,38 @@ include $(BUILD_STATIC_LIBRARY)
|
||||
include $(CLEAR_VARS)
|
||||
LIBPCRE2 := $(LOCAL_PATH)/pcre/include
|
||||
LOCAL_MODULE:= libpcre2
|
||||
LOCAL_CFLAGS := -DHAVE_CONFIG_H
|
||||
LOCAL_CFLAGS := -DHAVE_CONFIG_H -DPCRE2_CODE_UNIT_WIDTH=8
|
||||
LOCAL_C_INCLUDES := $(LIBPCRE2) $(LIBPCRE2)_internal
|
||||
LOCAL_EXPORT_C_INCLUDES := $(LIBPCRE2)
|
||||
LOCAL_SRC_FILES := \
|
||||
pcre/dist2/src/pcre2_auto_possess.c \
|
||||
pcre/dist2/src/pcre2_chartables.c \
|
||||
pcre/dist2/src/pcre2_compile.c \
|
||||
pcre/dist2/src/pcre2_config.c \
|
||||
pcre/dist2/src/pcre2_context.c \
|
||||
pcre/dist2/src/pcre2_convert.c \
|
||||
pcre/dist2/src/pcre2_dfa_match.c \
|
||||
pcre/dist2/src/pcre2_error.c \
|
||||
pcre/dist2/src/pcre2_extuni.c \
|
||||
pcre/dist2/src/pcre2_find_bracket.c \
|
||||
pcre/dist2/src/pcre2_fuzzsupport.c \
|
||||
pcre/dist2/src/pcre2_jit_compile.c \
|
||||
pcre/dist2/src/pcre2_maketables.c \
|
||||
pcre/dist2/src/pcre2_match.c \
|
||||
pcre/dist2/src/pcre2_match_data.c \
|
||||
pcre/dist2/src/pcre2_newline.c \
|
||||
pcre/dist2/src/pcre2_ord2utf.c \
|
||||
pcre/dist2/src/pcre2_pattern_info.c \
|
||||
pcre/dist2/src/pcre2_script_run.c \
|
||||
pcre/dist2/src/pcre2_serialize.c \
|
||||
pcre/dist2/src/pcre2_string_utils.c \
|
||||
pcre/dist2/src/pcre2_study.c \
|
||||
pcre/dist2/src/pcre2_substitute.c \
|
||||
pcre/dist2/src/pcre2_substring.c \
|
||||
pcre/dist2/src/pcre2_tables.c \
|
||||
pcre/dist2/src/pcre2_ucd.c \
|
||||
pcre/dist2/src/pcre2_valid_utf.c \
|
||||
pcre/dist2/src/pcre2_xclass.c
|
||||
pcre/src/pcre2_auto_possess.c \
|
||||
pcre/src/pcre2_compile.c \
|
||||
pcre/src/pcre2_config.c \
|
||||
pcre/src/pcre2_context.c \
|
||||
pcre/src/pcre2_convert.c \
|
||||
pcre/src/pcre2_dfa_match.c \
|
||||
pcre/src/pcre2_error.c \
|
||||
pcre/src/pcre2_extuni.c \
|
||||
pcre/src/pcre2_find_bracket.c \
|
||||
pcre/src/pcre2_fuzzsupport.c \
|
||||
pcre/src/pcre2_maketables.c \
|
||||
pcre/src/pcre2_match.c \
|
||||
pcre/src/pcre2_match_data.c \
|
||||
pcre/src/pcre2_jit_compile.c \
|
||||
pcre/src/pcre2_newline.c \
|
||||
pcre/src/pcre2_ord2utf.c \
|
||||
pcre/src/pcre2_pattern_info.c \
|
||||
pcre/src/pcre2_script_run.c \
|
||||
pcre/src/pcre2_serialize.c \
|
||||
pcre/src/pcre2_string_utils.c \
|
||||
pcre/src/pcre2_study.c \
|
||||
pcre/src/pcre2_substitute.c \
|
||||
pcre/src/pcre2_substring.c \
|
||||
pcre/src/pcre2_tables.c \
|
||||
pcre/src/pcre2_ucd.c \
|
||||
pcre/src/pcre2_valid_utf.c \
|
||||
pcre/src/pcre2_xclass.c \
|
||||
pcre2_workaround.c
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
# libxhook.a
|
||||
|
2
native/jni/external/busybox
vendored
2
native/jni/external/busybox
vendored
@ -1 +1 @@
|
||||
Subproject commit 41288302eda410e0834aebdec4d83be4ab9e4435
|
||||
Subproject commit 78f06dcf1ea2a52de3d08f913333720abd59c58b
|
2
native/jni/external/pcre
vendored
2
native/jni/external/pcre
vendored
@ -1 +1 @@
|
||||
Subproject commit 465fb3954c063a938aafdec7ed9a15b3cd196086
|
||||
Subproject commit 8e12681a1a252fd581830b2f65d1e154a2030bb9
|
4
native/jni/external/pcre2_workaround.c
vendored
Normal file
4
native/jni/external/pcre2_workaround.c
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
// Workaround pcre2_chartables.c symlink to pcre2_chartables.c.dist failing on Windows NDK if Cygwin git used,
|
||||
// and NDK not directly accepting a .c.dist file in LOCAL_SRC_FILES list.
|
||||
|
||||
#include "pcre/src/pcre2_chartables.c.dist"
|
Loading…
x
Reference in New Issue
Block a user