File tree 3 files changed +19
-2
lines changed
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ export CFLAGS=""
62
62
export LDFLAGS=" -Wl,--build-id=sha1 -Wl,--no-rosegment"
63
63
64
64
# Many packages get away with omitting this on standard Linux, but Android is stricter.
65
- LDFLAGS+= " -lm"
65
+ LDFLAGS= " $LDFLAGS -lm"
66
66
67
67
# -mstackrealign is included where necessary in the clang launcher scripts which are
68
68
# pointed to by $CC, so we don't need to include it here.
69
69
if [ $HOST = " arm-linux-androideabi" ]; then
70
- CFLAGS+= " -march=armv7-a -mthumb"
70
+ CFLAGS= " $CFLAGS -march=armv7-a -mthumb"
71
71
fi
72
72
73
73
if [ -n " ${PREFIX:- } " ]; then
Original file line number Diff line number Diff line change
1
+ --- a/crypto/uid.c 2024-01-30 13:28:16
2
+ +++ b/crypto/uid.c 2024-03-09 12:34:25
3
+ @@ -46,7 +46,11 @@
4
+
5
+ int OPENSSL_issetugid(void)
6
+ {
7
+ - # ifdef OSSL_IMPLEMENT_GETAUXVAL
8
+ + // CPython: due to the way Android apps are started, they always have AT_SECURE set
9
+ + // (https://android.googlesource.com/platform/bionic/+/6bb01b6%5E%21/). But all their
10
+ + // environment variables come either from the operating system or the app itself, so
11
+ + // there's no security risk here.
12
+ + # if defined(OSSL_IMPLEMENT_GETAUXVAL) && !defined(__ANDROID__)
13
+ return getauxval(AT_SECURE) != 0;
14
+ # else
15
+ return getuid() != geteuid() || getgid() != getegid();
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ cd $build_dir
20
20
tar -xf $version_dir /$src_filename
21
21
cd $( basename $src_filename .tar.gz)
22
22
23
+ patch -p1 -i $recipe_dir /at_secure.patch
24
+
23
25
# CFLAGS environment variable replaces default flags rather than adding to them.
24
26
CFLAGS+=" -O2"
25
27
export LDLIBS=" -latomic"
You can’t perform that action at this time.
0 commit comments