Skip to content

Commit

Permalink
core: update nodejs-mobile v0.2.1
Browse files Browse the repository at this point in the history
Update the libnode binaries to v0.2.1 releases.
Update the libnode headers.
  • Loading branch information
jaimecbernardo committed Apr 23, 2019
1 parent 50b33d3 commit 9bbb23c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 0 deletions.
Binary file modified libs/android/libnode/bin/arm64-v8a/libnode.so.gz
Binary file not shown.
Binary file modified libs/android/libnode/bin/armeabi-v7a/libnode.so.gz
Binary file not shown.
Binary file modified libs/android/libnode/bin/x86/libnode.so.gz
Binary file not shown.
Binary file modified libs/android/libnode/bin/x86_64/libnode.so.gz
Binary file not shown.
9 changes: 9 additions & 0 deletions libs/android/libnode/include/node/openssl/opensslconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
#ifndef OPENSSL_NO_HW_PADLOCK
# define OPENSSL_NO_HW_PADLOCK
#endif

/* iOS app store won't allow getcontext, setcontext, makecontext */
#if defined(__APPLE__) && defined(__MACH__)
# include <TargetConditionals.h>
# if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
# define OPENSSL_NO_ASYNC
# endif
#endif

/* musl in Alpine Linux does not support getcontext etc.*/
#if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__)
# define OPENSSL_NO_ASYNC
Expand Down
Binary file modified libs/ios/nodemobile/NodeMobile.framework.tar.zip
Binary file not shown.
9 changes: 9 additions & 0 deletions libs/ios/nodemobile/include/node/openssl/opensslconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
#ifndef OPENSSL_NO_HW_PADLOCK
# define OPENSSL_NO_HW_PADLOCK
#endif

/* iOS app store won't allow getcontext, setcontext, makecontext */
#if defined(__APPLE__) && defined(__MACH__)
# include <TargetConditionals.h>
# if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
# define OPENSSL_NO_ASYNC
# endif
#endif

/* musl in Alpine Linux does not support getcontext etc.*/
#if defined(OPENSSL_LINUX) && !defined(__GLIBC__) && !defined(__clang__)
# define OPENSSL_NO_ASYNC
Expand Down

0 comments on commit 9bbb23c

Please sign in to comment.