Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
19964983dc
!29 Delete the code that adapts to lib/autoconf/c.m4
From: @fly_fzc 
Reviewed-by: @jiayi0118 
Signed-off-by: @jiayi0118
2024-06-13 09:09:31 +00:00
fly_fzc
e69849193e Delete the code that adapts to lib/autoconf/c.m4 2024-06-13 10:52:31 +08:00
openeuler-ci-bot
ddcfa92054
!26 License compliance rectification
From: @fly_fzc 
Reviewed-by: @xujing99 
Signed-off-by: @xujing99
2024-06-13 01:26:40 +00:00
fly_fzc
59d0d52dcd License compliance rectification 2024-06-12 10:39:08 +08:00
openeuler-ci-bot
0c8ad67f84
!23 Fix Adapt signed-char check macro which lead to python3 testcase failure.
From: @fly_fzc 
Reviewed-by: @jiayi0118 
Signed-off-by: @jiayi0118
2024-06-05 01:56:00 +00:00
fly_fzc
ebdd83f91e Fix Adapt signed-char check macro which lead to python3 testcase failure. 2024-06-04 21:41:35 +08:00
openeuler-ci-bot
fd39bd0a65
!22 Adapt signed-char check macro for default unsigned evironment
From: @fly_fzc 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2024-05-24 03:18:51 +00:00
fly_fzc
1553c439d6 Adapt signed-char check macro for default unsigned evironment 2024-05-24 09:25:20 +08:00
openeuler-ci-bot
4aad3e454e
!18 [sync] PR-16: 【openEuler-22.03-LTS】fix typo in variable name
From: @openeuler-sync-bot 
Reviewed-by: @overweight 
Signed-off-by: @overweight
2022-10-24 01:13:29 +00:00
yixiangzhike
ed093b145d fix typo in variable name
Signed-off-by: yixiangzhike <yixiangzhike007@163.com>
(cherry picked from commit 120d40bb0d4bf0a15440d1c9ca1513621553bee9)
2022-10-22 16:50:42 +08:00
2 changed files with 65 additions and 2 deletions

View File

@ -3,14 +3,16 @@
Name: autoconf
Version: 2.71
Release: 2
Release: 7
Summary: An extensible package to automatically configure software source code packages
License: GPLv2+ and GPLv3+ and GFDL
License: GPLv2+ and GPLv3+ and GFDL-1.3-only
URL: https://www.gnu.org/software/%{name}/
Source0: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
Source1: config.site
Source2: autoconf-el.el
Patch1: backport-_AC_PROG_CXX_STDCXX_EDITION_TRY-fix-typo-in-variable.patch
Patch9000: skip-one-test-at-line-1616-of-autotest.patch
BuildArch: noarch
@ -70,6 +72,36 @@ fi
%changelog
* Thu Jun 13 2024 fuanan <fuanan3@h-partners.com> - 2.71-7
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:Delete the code that adapts to lib/autoconf/c.m4
* Wed Jun 12 2024 fuanan <fuanan3@h-partners.com> - 2.71-6
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:License compliance rectification
* Tue Jun 04 2024 fuanan <fuanan3@h-partners.com> - 2.71-5
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:Fix Adapt signed-char check macro which lead to python3 testcase failure.
* Fri May 24 2024 fuanan <fuanan3@h-partners.com> - 2.71-4
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:Adapt signed-char check macro for default unsigned evironment
* Sat Oct 22 2022 yixiangzhike <yixiangzhike007@163.com> - 2.71-3
- Type:bugfix
- ID:NA
- SUG:NA
- DESC:Fix typo in variable name
* Fri Dec 31 2021 wangjie <wangjie375@huawei.com> - 2.71-2
- Type:enhancement
- ID:NA

View File

@ -0,0 +1,31 @@
From f460883035ef849a2248b1713f711292ec19f4f0 Mon Sep 17 00:00:00 2001
From: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
Date: Fri, 14 May 2021 09:06:20 +0300
Subject: [PATCH] _AC_PROG_CXX_STDCXX_EDITION_TRY: fix typo in variable name
The typo causes "ac_prog_cxx_stdcxx" to be always set to "cxx11",
regardless of whether the C++ compiler supports C++11.
Message-Id: <YJ4TXAeJcvU0oSec@FSAPPLE2215.fi.f-secure.com>
(tiny change)
---
lib/autoconf/c.m4 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/autoconf/c.m4 b/lib/autoconf/c.m4
index 9f881f0b..47434c89 100644
--- a/lib/autoconf/c.m4
+++ b/lib/autoconf/c.m4
@@ -2749,8 +2749,8 @@ AC_DEFUN([_AC_PROG_CXX_STDCXX_EDITION_TRY],
[AC_REQUIRE([_AC_CXX_CXX$1_TEST_PROGRAM])]dnl
[AS_IF([test x$ac_prog_cxx_stdcxx = xno],
[AC_MSG_CHECKING([for $CXX option to enable C++$1 features])
-AC_CACHE_VAL(ac_cv_prog_cxx_$1,
-[ac_cv_prog_cxx_$1=no
+AC_CACHE_VAL(ac_cv_prog_cxx_cxx$1,
+[ac_cv_prog_cxx_cxx$1=no
ac_save_CXX=$CXX
AC_LANG_CONFTEST([AC_LANG_DEFINES_PROVIDED][$][ac_cxx_conftest_cxx$1_program])
for ac_arg in '' m4_normalize(m4_defn([_AC_CXX_CXX$1_OPTIONS]))
--
2.27.0