update pdnsd and tun2socks to Android-16
add stpcpy function not present before Android-21
This commit is contained in:
parent
a0b0928561
commit
76b21714d8
|
@ -1,4 +1,4 @@
|
|||
APP_ABI := armeabi armeabi-v7a arm64-v8a mips x86
|
||||
APP_PLATFORM := android-21
|
||||
APP_PLATFORM := android-16
|
||||
APP_STL := stlport_static
|
||||
NDK_TOOLCHAIN_VERSION := 4.9
|
||||
NDK_TOOLCHAIN_VERSION := 4.6
|
||||
|
|
|
@ -2697,6 +2697,12 @@ int dump_cache(int fd, const unsigned char *name, int exact)
|
|||
return rv;
|
||||
}
|
||||
|
||||
char *stpcpy(char *dest, char const *src)
|
||||
{
|
||||
strcpy(dest, src);
|
||||
return dest + strlen(dest);
|
||||
}
|
||||
|
||||
|
||||
#if DEBUG>0
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
libs/mips/pdnsd
BIN
libs/mips/pdnsd
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue