libmpeg2/libmpeg2-0.5.1-altivec.patch

19 lines
855 B
Diff
Raw Normal View History

Index: libmpeg2-0.5.1/configure.ac
===================================================================
--- libmpeg2-0.5.1.orig/configure.ac 2008-07-18 16:30:17.000000000 +0200
+++ libmpeg2-0.5.1/configure.ac 2017-12-22 22:30:20.891751430 +0100
@@ -79,11 +79,10 @@ elif test x"$GCC" = x"yes"; then
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)],