Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
To: buildroot@buildroot.org
Cc: Matt Weber <matthew.weber@collins.com>,
	Fabrice Fontaine <fontaine.fabrice@gmail.com>
Subject: [Buildroot] [PATCH 1/1] package/xml-security-c: bump to version 2.0.4
Date: Sun, 23 Jan 2022 22:27:57 +0100	[thread overview]
Message-ID: <20220123212757.781999-1-fontaine.fabrice@gmail.com> (raw)

Version 2.0.4 of the Apache XML Security for C++ has been released,
correcting support for OpenSSL earlier than 1.1.

Version 2.0.3 of the Apache XML Security for C++ has been released,
adding support for OpenSSL 3.0.0.

Drop patch (already in version) and so autoreconf

https://santuario.apache.org/cindex.html

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 ...ariable-cache-option-for-getcwd-test.patch | 50 -------------------
 package/xml-security-c/xml-security-c.hash    |  4 +-
 package/xml-security-c/xml-security-c.mk      |  5 +-
 3 files changed, 3 insertions(+), 56 deletions(-)
 delete mode 100644 package/xml-security-c/0001-autoconf-variable-cache-option-for-getcwd-test.patch

diff --git a/package/xml-security-c/0001-autoconf-variable-cache-option-for-getcwd-test.patch b/package/xml-security-c/0001-autoconf-variable-cache-option-for-getcwd-test.patch
deleted file mode 100644
index 26b53ba719..0000000000
--- a/package/xml-security-c/0001-autoconf-variable-cache-option-for-getcwd-test.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-From 9d14fad412a497fe83cfc6ab594ddc612512f02a Mon Sep 17 00:00:00 2001
-From: Matt Weber <matthew.weber@rockwellcollins.com>
-Date: Thu, 4 Jun 2020 20:34:11 -0500
-Subject: [PATCH] autoconf variable cache option for getcwd test
-
-The cached variable allows cross compiled builds to successfully set the
-desired default for this value without invoking a test.
-
-Fixes:
-https://issues.apache.org/jira/browse/SANTUARIO-549
-
-Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
----
- configure.ac | 20 ++++++++++++--------
- 1 file changed, 12 insertions(+), 8 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index b43d7a5..c3d4489 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -74,14 +74,18 @@ AC_CHECK_FUNCS([strcasecmp])
- 
- # Check whether getcwd can dynamically allocate memory.
- AC_MSG_CHECKING([whether getcwd(NULL, 0) works])
--AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdlib.h>
--     #include <unistd.h>],
--[char *cwd = getcwd(NULL, 0);
--return (cwd != NULL) ? EXIT_SUCCESS : EXIT_FAILURE;])],
--     [AC_MSG_RESULT(yes)
--      AC_DEFINE([XSEC_HAVE_GETCWD_DYN], [1],
--         [Define to 1 if getcwd(NULL, 0) works])],
--     [AC_MSG_RESULT(no)])
-+AC_CACHE_VAL([xml_cv_func_getcwd_null],
-+[AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h>
-+     #include <unistd.h>
-+     char *cwd = getcwd(NULL, 0);
-+     return (cwd != NULL) ? EXIT_SUCCESS : EXIT_FAILURE;]])],
-+  [xml_cv_func_getcwd_null=yes],
-+  [xml_cv_func_getcwd_null=no])])
-+AC_MSG_RESULT([$xml_cv_func_getcwd_null])
-+if test $xml_cv_func_getcwd_null = yes; then
-+AC_DEFINE([XSEC_HAVE_GETCWD_DYN], [1],
-+  [Define to 1 if getcwd(NULL, 0) works])
-+fi
- 
- AC_LANG(C++)
- 
--- 
-2.17.1
-
diff --git a/package/xml-security-c/xml-security-c.hash b/package/xml-security-c/xml-security-c.hash
index d91ed86e9c..f4b7041a63 100644
--- a/package/xml-security-c/xml-security-c.hash
+++ b/package/xml-security-c/xml-security-c.hash
@@ -1,3 +1,3 @@
-# From http://www.apache.org/dist/santuario/c-library/xml-security-c-2.0.2.tar.gz.sha256
-sha256  c303a2b08cb9ca0f5594adcbb83829b1e793175d7114a82f7d78def8bb2e30df  xml-security-c-2.0.2.tar.gz
+# From http://www.apache.org/dist/santuario/c-library/xml-security-c-2.0.4.tar.gz.sha256
+sha256  a78da6720f6c2ba14100d2426131e0d33eac5a2dba5cc11bdd04974b7eb89003  xml-security-c-2.0.4.tar.gz
 sha256  c71d239df91726fc519c6eb72d318ec65820627232b2f796219e87dcf35d0ab4  LICENSE.txt
diff --git a/package/xml-security-c/xml-security-c.mk b/package/xml-security-c/xml-security-c.mk
index fe761819ee..fda9af4798 100644
--- a/package/xml-security-c/xml-security-c.mk
+++ b/package/xml-security-c/xml-security-c.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XML_SECURITY_C_VERSION = 2.0.2
+XML_SECURITY_C_VERSION = 2.0.4
 XML_SECURITY_C_SITE = http://archive.apache.org/dist/santuario/c-library
 XML_SECURITY_C_LICENSE = Apache-2.0
 XML_SECURITY_C_LICENSE_FILES = LICENSE.txt
@@ -15,7 +15,4 @@ XML_SECURITY_C_CONF_ENV = \
 	xml_cv_func_getcwd_null=yes \
 	CXXFLAGS="$(TARGET_CXXFLAGS) -std=c++11"
 
-# Patched configure.ac
-XML_SECURITY_C_AUTORECONF = YES
-
 $(eval $(autotools-package))
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

             reply	other threads:[~2022-01-23 21:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-23 21:27 Fabrice Fontaine [this message]
2022-01-24 21:02 ` [Buildroot] [PATCH 1/1] package/xml-security-c: bump to version 2.0.4 Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220123212757.781999-1-fontaine.fabrice@gmail.com \
    --to=fontaine.fabrice@gmail.com \
    --cc=buildroot@buildroot.org \
    --cc=matthew.weber@collins.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox