autoconf-archive: update to 2022.02.11

Including patch for libffi build:
- https://savannah.gnu.org/patch/index.php?10186
This commit is contained in:
heitbaum 2022-02-11 23:11:44 +00:00 committed by Rudi Heitbaum
parent 7dc00ab0b4
commit ee38028d7b
2 changed files with 32 additions and 2 deletions

View File

@ -3,8 +3,8 @@
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="autoconf-archive"
PKG_VERSION="2021.02.19"
PKG_SHA256="e8a6eb9d28ddcba8ffef3fa211653239e9bf239aba6a01a6b7cfc7ceaec69cbd"
PKG_VERSION="2022.02.11"
PKG_SHA256="78a61b611e2eeb55a89e0398e0ce387bcaf57fe2dd53c6fe427130f777ad1e8c"
PKG_LICENSE="GPL"
PKG_SITE="https://www.gnu.org/software/autoconf-archive/"
PKG_URL="http://ftpmirror.gnu.org/autoconf-archive/${PKG_NAME}-${PKG_VERSION}.tar.xz"

View File

@ -0,0 +1,30 @@
From ecbf509871f16438d69ae157c690b7d9bedd62f0 Mon Sep 17 00:00:00 2001
From: Rudi Heitbaum <rudi@heitbaum.com>
Date: Sun, 27 Feb 2022 03:07:58 +0000
Subject: [PATCH] AX_CC_MAXOPT: Fix nvhpc case
Missing ;; in the ax_cv_c_compiler_vendor case statement causing
syntax error with libffi configure:
line y: syntax error near unexpected token `)'
line y: ` gnu)'
Signed-off-by: Rudi Heitbaum <rudi@heitbaum.com>
---
m4/ax_cc_maxopt.m4 | 1 +
1 file changed, 1 insertion(+)
diff --git a/m4/ax_cc_maxopt.m4 b/m4/ax_cc_maxopt.m4
index 05218e3..58e267b 100644
--- a/m4/ax_cc_maxopt.m4
+++ b/m4/ax_cc_maxopt.m4
@@ -146,6 +146,7 @@ if test "x$ac_test_CFLAGS" = "x"; then
nvhpc)
# default optimization flags for nvhpc
CFLAGS="$CFLAGS -O3"
+ ;;
gnu)
# default optimization flags for gcc on all systems
--
2.25.1