[FFmpeg-cvslog] Merge commit '6a7e928555d081ff86c867867ebce74fdc4c87d6'
James Almer
git at videolan.org
Tue Oct 31 18:15:30 EET 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Tue Oct 31 13:11:02 2017 -0300| [092951f4a862afad0614841af8144a40a6b2f5f5] | committer: James Almer
Merge commit '6a7e928555d081ff86c867867ebce74fdc4c87d6'
* commit '6a7e928555d081ff86c867867ebce74fdc4c87d6':
configure: Do not check for the __builtin_vec_vsx_ld
Merged-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=092951f4a862afad0614841af8144a40a6b2f5f5
---
configure | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index cc524ca16a..ef9edc9010 100755
--- a/configure
+++ b/configure
@@ -5605,7 +5605,14 @@ EOF
if enabled vsx; then
check_cflags -mvsx &&
- check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
+ check_cc <<EOF || disable vsx
+$inc_altivec_h
+int main(void) {
+ int v[4] = { 0 };
+ vector signed int v1 = vec_vsx_ld(0, v);
+ return 0;
+}
+EOF
fi
if enabled power8; then
======================================================================
More information about the ffmpeg-cvslog
mailing list