--- a/configure.ac +++ b/configure.ac @@ -79,11 +79,10 @@ CFLAGS="$OPT_CFLAGS $TRY_CFLAGS $CFLAGS" AC_MSG_CHECKING([if 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 ], - [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 header.]) have_altivec=yes; AC_MSG_RESULT(yes)],