mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libxslt: Allow to compile libxslt with profiling support.
@ 2021-10-01  9:11 Felix Mellmann
  2021-10-01 10:27 ` Alexander Dahl
  2021-10-20  9:39 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 2 replies; 3+ messages in thread
From: Felix Mellmann @ 2021-10-01  9:11 UTC (permalink / raw)
  To: ptxdist; +Cc: Felix Mellmann

 As python3-lxml requires this feature, the dependency was added as well.

Signed-off-by: Felix Mellmann <flix.ptxdist@benfm.de>
---
 rules/libxslt.in      | 4 ++++
 rules/libxslt.make    | 2 +-
 rules/python3-lxml.in | 1 +
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/rules/libxslt.in b/rules/libxslt.in
index b2f26d0c8..e3dd0b920 100644
--- a/rules/libxslt.in
+++ b/rules/libxslt.in
@@ -34,6 +34,10 @@ config LIBXSLT_DEBUG
 	bool
 	prompt "Add the debugging support"
 
+config LIBXSLT_PROFILER
+	bool
+	prompt "Add the profiling support"
+
 comment "Install Components"
 
 config LIBXSLT_LIBXSLT
diff --git a/rules/libxslt.make b/rules/libxslt.make
index ce13a7d7e..7ef7d75b4 100644
--- a/rules/libxslt.make
+++ b/rules/libxslt.make
@@ -48,7 +48,7 @@ LIBXSLT_AUTOCONF := \
 	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debug \
 	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-mem-debug \
 	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debugger \
-	--without-profiler \
+	--$(call ptx/wwo, PTXCONF_LIBXSLT_PROFILER)-profiler \
 	--$(call ptx/wwo, PTXCONF_LIBXSLT_PLUGINS)-plugins
 
 # ----------------------------------------------------------------------------
diff --git a/rules/python3-lxml.in b/rules/python3-lxml.in
index cf7eeb963..fa091d184 100644
--- a/rules/python3-lxml.in
+++ b/rules/python3-lxml.in
@@ -7,6 +7,7 @@ config PYTHON3_LXML
 	select LIBXML2_SCHEMAS
 	select LIBXSLT
 	select LIBXSLT_LIBEXSLT
+	select LIBXSLT_PROFILER
 	prompt "lxml"
 	help
 	  lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.
-- 
2.25.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


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

* Re: [ptxdist] [PATCH] libxslt: Allow to compile libxslt with profiling support.
  2021-10-01  9:11 [ptxdist] [PATCH] libxslt: Allow to compile libxslt with profiling support Felix Mellmann
@ 2021-10-01 10:27 ` Alexander Dahl
  2021-10-20  9:39 ` [ptxdist] [APPLIED] " Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Dahl @ 2021-10-01 10:27 UTC (permalink / raw)
  To: ptxdist; +Cc: Felix Mellmann

Hei hei,

Am Fri, Oct 01, 2021 at 11:11:05AM +0200 schrieb Felix Mellmann:
>  As python3-lxml requires this feature, the dependency was added as well.
> 
> Signed-off-by: Felix Mellmann <flix.ptxdist@benfm.de>
> ---
>  rules/libxslt.in      | 4 ++++
>  rules/libxslt.make    | 2 +-
>  rules/python3-lxml.in | 1 +
>  3 files changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/rules/libxslt.in b/rules/libxslt.in
> index b2f26d0c8..e3dd0b920 100644
> --- a/rules/libxslt.in
> +++ b/rules/libxslt.in
> @@ -34,6 +34,10 @@ config LIBXSLT_DEBUG
>  	bool
>  	prompt "Add the debugging support"
>  
> +config LIBXSLT_PROFILER
> +	bool
> +	prompt "Add the profiling support"
> +
>  comment "Install Components"
>  
>  config LIBXSLT_LIBXSLT
> diff --git a/rules/libxslt.make b/rules/libxslt.make
> index ce13a7d7e..7ef7d75b4 100644
> --- a/rules/libxslt.make
> +++ b/rules/libxslt.make
> @@ -48,7 +48,7 @@ LIBXSLT_AUTOCONF := \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debug \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-mem-debug \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debugger \
> -	--without-profiler \
> +	--$(call ptx/wwo, PTXCONF_LIBXSLT_PROFILER)-profiler \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_PLUGINS)-plugins
>  
>  # ----------------------------------------------------------------------------
> diff --git a/rules/python3-lxml.in b/rules/python3-lxml.in
> index cf7eeb963..fa091d184 100644
> --- a/rules/python3-lxml.in
> +++ b/rules/python3-lxml.in
> @@ -7,6 +7,7 @@ config PYTHON3_LXML
>  	select LIBXML2_SCHEMAS
>  	select LIBXSLT
>  	select LIBXSLT_LIBEXSLT
> +	select LIBXSLT_PROFILER
>  	prompt "lxml"
>  	help
>  	  lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.

Acked-by: Alexander Dahl <ada@thorsis.com>

Greets
Alex


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


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

* Re: [ptxdist] [APPLIED] libxslt: Allow to compile libxslt with profiling support.
  2021-10-01  9:11 [ptxdist] [PATCH] libxslt: Allow to compile libxslt with profiling support Felix Mellmann
  2021-10-01 10:27 ` Alexander Dahl
@ 2021-10-20  9:39 ` Michael Olbrich
  1 sibling, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2021-10-20  9:39 UTC (permalink / raw)
  To: ptxdist; +Cc: Felix Mellmann

Thanks, applied as 41e3fc53941dd8089b6a2ae1e906bfee1b527b5f.

Michael

[sent from post-receive hook]

On Wed, 20 Oct 2021 11:39:41 +0200, Felix Mellmann <flix.ptxdist@benfm.de> wrote:
>  As python3-lxml requires this feature, the dependency was added as well.
> 
> Signed-off-by: Felix Mellmann <flix.ptxdist@benfm.de>
> Acked-by: Alexander Dahl <ada@thorsis.com>
> Message-Id: <20211001091104.921604-1-flix.ptxdist@benfm.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libxslt.in b/rules/libxslt.in
> index b2f26d0c8227..e3dd0b9203f9 100644
> --- a/rules/libxslt.in
> +++ b/rules/libxslt.in
> @@ -34,6 +34,10 @@ config LIBXSLT_DEBUG
>  	bool
>  	prompt "Add the debugging support"
>  
> +config LIBXSLT_PROFILER
> +	bool
> +	prompt "Add the profiling support"
> +
>  comment "Install Components"
>  
>  config LIBXSLT_LIBXSLT
> diff --git a/rules/libxslt.make b/rules/libxslt.make
> index ce13a7d7e8cb..7ef7d75b48ce 100644
> --- a/rules/libxslt.make
> +++ b/rules/libxslt.make
> @@ -48,7 +48,7 @@ LIBXSLT_AUTOCONF := \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debug \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-mem-debug \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_DEBUG)-debugger \
> -	--without-profiler \
> +	--$(call ptx/wwo, PTXCONF_LIBXSLT_PROFILER)-profiler \
>  	--$(call ptx/wwo, PTXCONF_LIBXSLT_PLUGINS)-plugins
>  
>  # ----------------------------------------------------------------------------
> diff --git a/rules/python3-lxml.in b/rules/python3-lxml.in
> index cf7eeb963182..fa091d1849b4 100644
> --- a/rules/python3-lxml.in
> +++ b/rules/python3-lxml.in
> @@ -7,6 +7,7 @@ config PYTHON3_LXML
>  	select LIBXML2_SCHEMAS
>  	select LIBXSLT
>  	select LIBXSLT_LIBEXSLT
> +	select LIBXSLT_PROFILER
>  	prompt "lxml"
>  	help
>  	  lxml is a Pythonic, mature binding for the libxml2 and libxslt libraries.

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de


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

end of thread, other threads:[~2021-10-20  9:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01  9:11 [ptxdist] [PATCH] libxslt: Allow to compile libxslt with profiling support Felix Mellmann
2021-10-01 10:27 ` Alexander Dahl
2021-10-20  9:39 ` [ptxdist] [APPLIED] " Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox