diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-03-24 19:25:41 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-03-24 19:25:41 +0000 |
commit | 817a07d88cd07a61b8900fca58fc2d2350fc47b7 (patch) | |
tree | b346466bec9ee6b6e2cc6fea1ff7703811069a80 /user/libmpeg2/altivec.patch | |
parent | f69df721962e3c0152e1d8665d2b14d3012b588b (diff) | |
download | packages-817a07d88cd07a61b8900fca58fc2d2350fc47b7.tar.gz packages-817a07d88cd07a61b8900fca58fc2d2350fc47b7.tar.bz2 packages-817a07d88cd07a61b8900fca58fc2d2350fc47b7.tar.xz packages-817a07d88cd07a61b8900fca58fc2d2350fc47b7.zip |
user/libmpeg2: fix build on 32-bit PowerPC
Diffstat (limited to 'user/libmpeg2/altivec.patch')
-rw-r--r-- | user/libmpeg2/altivec.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/user/libmpeg2/altivec.patch b/user/libmpeg2/altivec.patch new file mode 100644 index 000000000..7edfaa344 --- /dev/null +++ b/user/libmpeg2/altivec.patch @@ -0,0 +1,16 @@ +--- a/configure.ac.bak 2010-05-25 17:12:14.756245990 +0000 ++++ b/configure.ac 2010-05-25 17:11:51.629581723 +0000 +@@ -79,11 +79,10 @@ + CFLAGS="$OPT_CFLAGS $TRY_CFLAGS $CFLAGS" + AC_MSG_CHECKING([if <altivec.h> is needed]) + AC_TRY_COMPILE([], +- [typedef vector int t; +- vec_ld(0, (unsigned char *)0);], ++ [vector int t; t = vec_add(t,t);], + [have_altivec=yes; AC_MSG_RESULT(no)], + [AC_TRY_COMPILE([#include <altivec.h>], +- [typedef vector int t; vec_ld(0, (unsigned char *)0);], ++ [vector int t; t = vec_add(t,t);], + [AC_DEFINE([HAVE_ALTIVEC_H],, + [Define to 1 if you have the <altivec.h> header.]) + have_altivec=yes; AC_MSG_RESULT(yes)], |