vlc | branch: master | Martin Storsjö <[email protected]> | Sun Mar 18 13:54:29 2018 +0200| [6869332cc10ad6b7292fd87d1b06aa30e0074ed4] | committer: Martin Storsjö
contrib: pthreads: Use the right CONTEXT field on arm64 > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6869332cc10ad6b7292fd87d1b06aa30e0074ed4 --- contrib/src/pthreads/arm64.patch | 14 ++++++++++++++ contrib/src/pthreads/rules.mak | 1 + 2 files changed, 15 insertions(+) diff --git a/contrib/src/pthreads/arm64.patch b/contrib/src/pthreads/arm64.patch new file mode 100644 index 0000000000..ef2cad1a73 --- /dev/null +++ b/contrib/src/pthreads/arm64.patch @@ -0,0 +1,14 @@ +diff -urN pthreads-orig/context.h pthreads/context.h +--- pthreads-orig/context.h 2011-03-04 01:37:20.000000000 +0200 ++++ pthreads/context.h 2018-03-18 13:50:07.362676429 +0200 +@@ -67,6 +67,10 @@ + #define PTW32_PROGCTR(Context) ((Context).Pc) + #endif + ++#if defined(_ARM64_) || defined(__aarch64__) ++#define PTW32_PROGCTR(Context) ((Context).Pc) ++#endif ++ + #if !defined(PTW32_PROGCTR) + #error Module contains CPU-specific code; modify and recompile. + #endif diff --git a/contrib/src/pthreads/rules.mak b/contrib/src/pthreads/rules.mak index 9bc9014b72..6e39bfc05b 100644 --- a/contrib/src/pthreads/rules.mak +++ b/contrib/src/pthreads/rules.mak @@ -22,6 +22,7 @@ endif $(APPLY) $(SRC)/pthreads/implib.patch $(APPLY) $(SRC)/pthreads/remove-inline.patch $(APPLY) $(SRC)/pthreads/x86-inline-asm.patch + $(APPLY) $(SRC)/pthreads/arm64.patch $(MOVE) ifdef HAVE_CROSS_COMPILE _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
