From 33fcafe055aa2d9cb1970d8ea198cd1082ef1beb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20Men=C5=A1=C3=ADk?= Date: Fri, 20 Mar 2020 16:35:28 +0100 Subject: [PATCH] Detect atomic operations support on ppc64le Current configure detects only stdatomic operations. Fix it to detect also ISC atomics with assembly. --- aclocal.m4 | 4 ++-- configure | 2 +- configure.ac | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index ddddd296b5d..48cf3807ce3 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,6 +1,6 @@ -# generated automatically by aclocal 1.16.1 -*- Autoconf -*- +# generated automatically by aclocal 1.16.2 -*- Autoconf -*- -# Copyright (C) 1996-2018 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/configure b/configure index 6d05371072d..9c8ef4f508d 100755 --- a/configure +++ b/configure @@ -21847,7 +21847,7 @@ _ACEOF alpha*-*) arch=alpha ;; - powerpc-*|powerpc64-*) + powerpc-*|powerpc64*-*|powerpc64el-*) arch=powerpc ;; mips-*|mipsel-*|mips64-*|mips64el-*) diff --git a/configure.ac b/configure.ac index eda87707126..1905d88f799 100644 --- a/configure.ac +++ b/configure.ac @@ -4123,7 +4123,7 @@ if test "yes" = "$use_atomic"; then alpha*-*) arch=alpha ;; - powerpc-*|powerpc64-*) + powerpc-*|powerpc64*-*|powerpc64el-*) arch=powerpc ;; mips-*|mipsel-*|mips64-*|mips64el-*) -- 2.47.3