All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2
@ 2021-05-14 20:28 Fabrice Fontaine
  2021-05-14 21:30 ` Peter Seiderer
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2021-05-14 20:28 UTC (permalink / raw)
  To: buildroot

Build is broken since bump of libxml2 to version 2.9.11 in commit
a241dcec4188dbf30fbc8b65d7e6f2ece9da3d04 because libxslt calls the
following command "${XML_CONFIG} --libs print" which will return an
error code since
https://github.com/GNOME/libxml2/commit/2a357ab99e6f5c9196384b11cd91dd993f93014c

Fixes:
 - http://autobuild.buildroot.org/results/47ceb8c24c9ead8a450b7fea3266f760d6b77b4f

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
Changes v1 -> v2 (after review of Peter Seiderer):
 - Use upstream patch instead of dropping --with-libxml-prefix

 ...ml2-config-check-in-configure-script.patch | 31 +++++++++++++++++++
 package/libxslt/libxslt.mk                    |  2 ++
 2 files changed, 33 insertions(+)
 create mode 100644 package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch

diff --git a/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch b/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch
new file mode 100644
index 0000000000..3848dcb235
--- /dev/null
+++ b/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch
@@ -0,0 +1,31 @@
+From 90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc Mon Sep 17 00:00:00 2001
+From: Nick Wellnhofer <wellnhofer@aevum.de>
+Date: Fri, 15 Nov 2019 11:53:11 +0100
+Subject: [PATCH] Fix xml2-config check in configure script
+
+A 'print' option has never been supported. After a recent change to
+libxml2, invalid options cause xml2-config to fail.
+
+[Retrieved from:
+https://gitlab.gnome.org/GNOME/libxslt/-/commit/90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc]
+Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 3da57b18..585b9d7c 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -548,7 +548,7 @@ dnl make sure xml2-config is executable,
+ dnl test version and init our variables
+ dnl
+ 
+-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
++if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
+ then
+     AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION)
+     XMLVERS=`$XML_CONFIG --version`
+-- 
+GitLab
+
diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
index 3c603ad9f6..d0f79d2521 100644
--- a/package/libxslt/libxslt.mk
+++ b/package/libxslt/libxslt.mk
@@ -10,6 +10,8 @@ LIBXSLT_INSTALL_STAGING = YES
 LIBXSLT_LICENSE = MIT
 LIBXSLT_LICENSE_FILES = COPYING
 LIBXSLT_CPE_ID_VENDOR = xmlsoft
+# We're patching configure.ac
+LIBXSLT_AUTORECONF = YES
 
 LIBXSLT_CONF_OPTS = \
 	--with-gnu-ld \
-- 
2.30.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2
  2021-05-14 20:28 [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2 Fabrice Fontaine
@ 2021-05-14 21:30 ` Peter Seiderer
  2021-05-15  6:30 ` Peter Korsgaard
  2021-05-17 19:26 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2021-05-14 21:30 UTC (permalink / raw)
  To: buildroot

Hello Fabrice,

On Fri, 14 May 2021 22:28:38 +0200, Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Build is broken since bump of libxml2 to version 2.9.11 in commit
> a241dcec4188dbf30fbc8b65d7e6f2ece9da3d04 because libxslt calls the
> following command "${XML_CONFIG} --libs print" which will return an
> error code since
> https://github.com/GNOME/libxml2/commit/2a357ab99e6f5c9196384b11cd91dd993f93014c
>
> Fixes:
>  - http://autobuild.buildroot.org/results/47ceb8c24c9ead8a450b7fea3266f760d6b77b4f
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
> Changes v1 -> v2 (after review of Peter Seiderer):
>  - Use upstream patch instead of dropping --with-libxml-prefix

Thanks for searching (and finding) the right upstream commit ;-)

Reviewed-by: Peter Seiderer <ps.report@gmx.net>

Regards,
Peter

>
>  ...ml2-config-check-in-configure-script.patch | 31 +++++++++++++++++++
>  package/libxslt/libxslt.mk                    |  2 ++
>  2 files changed, 33 insertions(+)
>  create mode 100644 package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch
>
> diff --git a/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch b/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch
> new file mode 100644
> index 0000000000..3848dcb235
> --- /dev/null
> +++ b/package/libxslt/0001-Fix-xml2-config-check-in-configure-script.patch
> @@ -0,0 +1,31 @@
> +From 90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc Mon Sep 17 00:00:00 2001
> +From: Nick Wellnhofer <wellnhofer@aevum.de>
> +Date: Fri, 15 Nov 2019 11:53:11 +0100
> +Subject: [PATCH] Fix xml2-config check in configure script
> +
> +A 'print' option has never been supported. After a recent change to
> +libxml2, invalid options cause xml2-config to fail.
> +
> +[Retrieved from:
> +https://gitlab.gnome.org/GNOME/libxslt/-/commit/90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc]
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +---
> + configure.ac | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/configure.ac b/configure.ac
> +index 3da57b18..585b9d7c 100644
> +--- a/configure.ac
> ++++ b/configure.ac
> +@@ -548,7 +548,7 @@ dnl make sure xml2-config is executable,
> + dnl test version and init our variables
> + dnl
> +
> +-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
> ++if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
> + then
> +     AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION)
> +     XMLVERS=`$XML_CONFIG --version`
> +--
> +GitLab
> +
> diff --git a/package/libxslt/libxslt.mk b/package/libxslt/libxslt.mk
> index 3c603ad9f6..d0f79d2521 100644
> --- a/package/libxslt/libxslt.mk
> +++ b/package/libxslt/libxslt.mk
> @@ -10,6 +10,8 @@ LIBXSLT_INSTALL_STAGING = YES
>  LIBXSLT_LICENSE = MIT
>  LIBXSLT_LICENSE_FILES = COPYING
>  LIBXSLT_CPE_ID_VENDOR = xmlsoft
> +# We're patching configure.ac
> +LIBXSLT_AUTORECONF = YES
>
>  LIBXSLT_CONF_OPTS = \
>  	--with-gnu-ld \

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2
  2021-05-14 20:28 [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2 Fabrice Fontaine
  2021-05-14 21:30 ` Peter Seiderer
@ 2021-05-15  6:30 ` Peter Korsgaard
  2021-05-17 19:26 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-05-15  6:30 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Build is broken since bump of libxml2 to version 2.9.11 in commit
 > a241dcec4188dbf30fbc8b65d7e6f2ece9da3d04 because libxslt calls the
 > following command "${XML_CONFIG} --libs print" which will return an
 > error code since
 > https://github.com/GNOME/libxml2/commit/2a357ab99e6f5c9196384b11cd91dd993f93014c

 > Fixes:
 >  - http://autobuild.buildroot.org/results/47ceb8c24c9ead8a450b7fea3266f760d6b77b4f

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 > ---
 > Changes v1 -> v2 (after review of Peter Seiderer):
 >  - Use upstream patch instead of dropping --with-libxml-prefix

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2
  2021-05-14 20:28 [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2 Fabrice Fontaine
  2021-05-14 21:30 ` Peter Seiderer
  2021-05-15  6:30 ` Peter Korsgaard
@ 2021-05-17 19:26 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-05-17 19:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Build is broken since bump of libxml2 to version 2.9.11 in commit
 > a241dcec4188dbf30fbc8b65d7e6f2ece9da3d04 because libxslt calls the
 > following command "${XML_CONFIG} --libs print" which will return an
 > error code since
 > https://github.com/GNOME/libxml2/commit/2a357ab99e6f5c9196384b11cd91dd993f93014c

 > Fixes:
 >  - http://autobuild.buildroot.org/results/47ceb8c24c9ead8a450b7fea3266f760d6b77b4f

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
 > ---
 > Changes v1 -> v2 (after review of Peter Seiderer):
 >  - Use upstream patch instead of dropping --with-libxml-prefix

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-17 19:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-14 20:28 [Buildroot] [PATCH v2, 1/1] package/libxslt: fix build with latest libxml2 Fabrice Fontaine
2021-05-14 21:30 ` Peter Seiderer
2021-05-15  6:30 ` Peter Korsgaard
2021-05-17 19:26 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.