libmpeg2/libmpeg2-0.5.1-altivec.patch
Tomáš Chvátal 89b8734ce3 Accepting request 576853 from home:iznogood:branches:multimedia:libs
This may be possible to submit to OSS now, as it seems the last US patent have expired on the 14/02/2018.

Wanted fwd to Factory for legal review.

OBS-URL: https://build.opensuse.org/request/show/576853
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libmpeg2?expand=0&rev=1
2018-02-14 22:48:31 +00:00

19 lines
855 B
Diff

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)],