Rudi Heitbaum 2022-09-03 23:20:01 +00:00
parent cda75ecce7
commit 6925dcdad2
2 changed files with 2 additions and 32 deletions

View File

@ -3,8 +3,8 @@
# Copyright (C) 2020-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="autoconf-archive"
PKG_VERSION="2022.02.11"
PKG_SHA256="78a61b611e2eeb55a89e0398e0ce387bcaf57fe2dd53c6fe427130f777ad1e8c"
PKG_VERSION="2022.09.03"
PKG_SHA256="e07454f00d8cae7907bed42d0747798927809947684d94c37207a4d63a32f423"
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

@ -1,30 +0,0 @@
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