From: Petr Menšík Date: Fri, 20 Mar 2020 15:35:28 +0000 (+0100) Subject: Detect atomic operations support on ppc64le X-Git-Tag: v9.11.18~11^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=33fcafe055aa2d9cb1970d8ea198cd1082ef1beb;p=thirdparty%2Fbind9.git Detect atomic operations support on ppc64le Current configure detects only stdatomic operations. Fix it to detect also ISC atomics with assembly. --- 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-*)