mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] neatvnc: version bump 0.4.0 -> 0.5.1
@ 2022-08-01  8:31 Philipp Zabel
  2022-08-05  7:51 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2022-08-01  8:31 UTC (permalink / raw)
  To: ptxdist; +Cc: Philipp Zabel

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 rules/neatvnc.in   | 12 ++++++++++++
 rules/neatvnc.make | 11 +++++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/rules/neatvnc.in b/rules/neatvnc.in
index 9871a645dee8..17caeb7184c8 100644
--- a/rules/neatvnc.in
+++ b/rules/neatvnc.in
@@ -9,14 +9,26 @@ menuconfig NEATVNC
 	select LIBJPEG		if NEATVNC_JPEG
 	select LIBJPEG_TURBO	if NEATVNC_JPEG
 	select LIBDRM		if BUILDTIME
+	select MESALIB		if NEATVNC_GBM
+	select MESALIB_GBM	if NEATVNC_GBM
 	prompt "neatvnc"
 	help
 	  VNC Server library
 
 if NEATVNC
 
+config NEATVNC_GBM
+	bool
+	prompt "enable gbm integration"
+
 config NEATVNC_JPEG
 	bool
 	prompt "enable jpeg compression"
 
+config NEATVNC_OPENH264
+	bool
+	# needs openh264
+	depends on BROKEN
+	prompt "enable open h264 encoding"
+
 endif
diff --git a/rules/neatvnc.make b/rules/neatvnc.make
index e5bb4c96e89b..d62bdffea309 100644
--- a/rules/neatvnc.make
+++ b/rules/neatvnc.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NEATVNC) += neatvnc
 #
 # Paths and names
 #
-NEATVNC_VERSION	:= 0.4.0
-NEATVNC_MD5	:= c645abf2233a3a3ad294ca1ef9399d23
+NEATVNC_VERSION	:= 0.5.1
+NEATVNC_MD5	:= 5811a7890a1da1fa57cda4424818b0c2
 NEATVNC		:= neatvnc-$(NEATVNC_VERSION)
 NEATVNC_SUFFIX	:= tar.gz
 NEATVNC_URL	:= https://github.com/any1/neatvnc/archive/refs/tags/v$(NEATVNC_VERSION).$(NEATVNC_SUFFIX)
@@ -35,9 +35,12 @@ NEATVNC_CONF_OPT	:=  \
 	$(CROSS_MESON_USR) \
 	-Dbenchmarks=false \
 	-Dexamples=false \
+	-Dgbm=$(call ptx/endis,PTXCONF_NEATVNC_GBM)d \
+	-Dh264=$(call ptx/endis,PTXCONF_NEATVNC_OPENH264)d \
 	-Djpeg=$(call ptx/endis,PTXCONF_NEATVNC_JPEG)d \
-	-Dtls=disabled \
-	-Dsystemtap=false
+	-Dsystemtap=false \
+	-Dtests=false \
+	-Dtls=disabled
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.30.2




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

* Re: [ptxdist] [APPLIED] neatvnc: version bump 0.4.0 -> 0.5.1
  2022-08-01  8:31 [ptxdist] [PATCH] neatvnc: version bump 0.4.0 -> 0.5.1 Philipp Zabel
@ 2022-08-05  7:51 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-08-05  7:51 UTC (permalink / raw)
  To: ptxdist; +Cc: Philipp Zabel

Thanks, applied as d4e49b48095b15afddaf6ad480479eaefa5e3986.

Michael

[sent from post-receive hook]

On Fri, 05 Aug 2022 09:51:00 +0200, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20220801083112.1850864-1-p.zabel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/neatvnc.in b/rules/neatvnc.in
> index 9871a645dee8..17caeb7184c8 100644
> --- a/rules/neatvnc.in
> +++ b/rules/neatvnc.in
> @@ -9,14 +9,26 @@ menuconfig NEATVNC
>  	select LIBJPEG		if NEATVNC_JPEG
>  	select LIBJPEG_TURBO	if NEATVNC_JPEG
>  	select LIBDRM		if BUILDTIME
> +	select MESALIB		if NEATVNC_GBM
> +	select MESALIB_GBM	if NEATVNC_GBM
>  	prompt "neatvnc"
>  	help
>  	  VNC Server library
>  
>  if NEATVNC
>  
> +config NEATVNC_GBM
> +	bool
> +	prompt "enable gbm integration"
> +
>  config NEATVNC_JPEG
>  	bool
>  	prompt "enable jpeg compression"
>  
> +config NEATVNC_OPENH264
> +	bool
> +	# needs openh264
> +	depends on BROKEN
> +	prompt "enable open h264 encoding"
> +
>  endif
> diff --git a/rules/neatvnc.make b/rules/neatvnc.make
> index e5bb4c96e89b..d62bdffea309 100644
> --- a/rules/neatvnc.make
> +++ b/rules/neatvnc.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_NEATVNC) += neatvnc
>  #
>  # Paths and names
>  #
> -NEATVNC_VERSION	:= 0.4.0
> -NEATVNC_MD5	:= c645abf2233a3a3ad294ca1ef9399d23
> +NEATVNC_VERSION	:= 0.5.1
> +NEATVNC_MD5	:= 5811a7890a1da1fa57cda4424818b0c2
>  NEATVNC		:= neatvnc-$(NEATVNC_VERSION)
>  NEATVNC_SUFFIX	:= tar.gz
>  NEATVNC_URL	:= https://github.com/any1/neatvnc/archive/refs/tags/v$(NEATVNC_VERSION).$(NEATVNC_SUFFIX)
> @@ -35,9 +35,12 @@ NEATVNC_CONF_OPT	:=  \
>  	$(CROSS_MESON_USR) \
>  	-Dbenchmarks=false \
>  	-Dexamples=false \
> +	-Dgbm=$(call ptx/endis,PTXCONF_NEATVNC_GBM)d \
> +	-Dh264=$(call ptx/endis,PTXCONF_NEATVNC_OPENH264)d \
>  	-Djpeg=$(call ptx/endis,PTXCONF_NEATVNC_JPEG)d \
> -	-Dtls=disabled \
> -	-Dsystemtap=false
> +	-Dsystemtap=false \
> +	-Dtests=false \
> +	-Dtls=disabled
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install



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

end of thread, other threads:[~2022-08-05  7:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-01  8:31 [ptxdist] [PATCH] neatvnc: version bump 0.4.0 -> 0.5.1 Philipp Zabel
2022-08-05  7:51 ` [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