mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] libnice: version bump 0.1.16 -> 0.1.18
@ 2022-02-22 10:59 Philipp Zabel
  2022-02-28 12:09 ` [ptxdist] [APPLIED] " Michael Olbrich
  0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2022-02-22 10:59 UTC (permalink / raw)
  To: ptxdist

Switch to Meson build system.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 rules/libnice.in   |  4 +---
 rules/libnice.make | 30 +++++++++++++-----------------
 2 files changed, 14 insertions(+), 20 deletions(-)

diff --git a/rules/libnice.in b/rules/libnice.in
index 8aeb56f3c2f9..ab10b43a983b 100644
--- a/rules/libnice.in
+++ b/rules/libnice.in
@@ -3,9 +3,7 @@
 config LIBNICE
 	tristate
 	prompt "libnice"
-	# for autogen.sh
-	select HOST_GTK_DOC
-
+	select HOST_MESON
 	select GLIB
 	select GSTREAMER1
 	select OPENSSL
diff --git a/rules/libnice.make b/rules/libnice.make
index f9efde424d9c..f0b985a9f75f 100644
--- a/rules/libnice.make
+++ b/rules/libnice.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBNICE) += libnice
 #
 # Paths and names
 #
-LIBNICE_VERSION	:= 0.1.16
-LIBNICE_MD5	:= 5ad936c43d3c6d33117b2c64982f2fd9
+LIBNICE_VERSION	:= 0.1.18
+LIBNICE_MD5	:= 408482fa4bab7c6b884b0fb9ad57a038
 LIBNICE		:= libnice-$(LIBNICE_VERSION)
 LIBNICE_SUFFIX	:= tar.gz
 LIBNICE_URL	:= https://libnice.freedesktop.org/releases/$(LIBNICE).$(LIBNICE_SUFFIX)
@@ -28,23 +28,19 @@ LIBNICE_LICENSE	:= MPL-1.1 OR LGPL-2.1-only
 # ----------------------------------------------------------------------------
 
 #
-# autoconf
+# meson
 #
-LIBNICE_CONF_TOOL	:= autoconf
+LIBNICE_CONF_TOOL	:= meson
 LIBNICE_CONF_OPT	:= \
-	$(CROSS_AUTOCONF_USR) \
-	--enable-assert \
-	--enable-compile-warnings=yes \
-	--disable-gupnp \
-	--disable-coverage \
-	--disable-static-plugins \
-	--disable-gtk-doc \
-	--disable-gtk-doc-html \
-	--disable-gtk-doc-pdf \
-	--disable-introspection \
-	--with-crypto-library=openssl \
-	--with-gstreamer \
-	--without-gstreamer-0.10
+	$(CROSS_MESON_USR) \
+	-Dcrypto-library=openssl \
+	-Dexamples=disabled \
+	-Dgstreamer=enabled \
+	-Dgtk_doc=disabled \
+	-Dgupnp=disabled \
+	-Dignored-network-interface-prefix=["docker", "veth", "virbr", "vnet"] \
+	-Dintrospection=disabled \
+	-Dtests=disabled
 
 # ----------------------------------------------------------------------------
 # Target-Install
-- 
2.30.2


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


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

* Re: [ptxdist] [APPLIED] libnice: version bump 0.1.16 -> 0.1.18
  2022-02-22 10:59 [ptxdist] [PATCH] libnice: version bump 0.1.16 -> 0.1.18 Philipp Zabel
@ 2022-02-28 12:09 ` Michael Olbrich
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2022-02-28 12:09 UTC (permalink / raw)
  To: ptxdist; +Cc: Philipp Zabel

Thanks, applied as 87e307169fe18773c3d345d15c3733057658d56f.

Michael

[sent from post-receive hook]

On Mon, 28 Feb 2022 13:09:14 +0100, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Switch to Meson build system.
> 
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20220222105944.1859529-1-p.zabel@pengutronix.de>
> [mol: drop -Dignored-network-interface-prefix= option]
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> 
> diff --git a/rules/libnice.in b/rules/libnice.in
> index 8aeb56f3c2f9..ab10b43a983b 100644
> --- a/rules/libnice.in
> +++ b/rules/libnice.in
> @@ -3,9 +3,7 @@
>  config LIBNICE
>  	tristate
>  	prompt "libnice"
> -	# for autogen.sh
> -	select HOST_GTK_DOC
> -
> +	select HOST_MESON
>  	select GLIB
>  	select GSTREAMER1
>  	select OPENSSL
> diff --git a/rules/libnice.make b/rules/libnice.make
> index f9efde424d9c..a3d944a455c9 100644
> --- a/rules/libnice.make
> +++ b/rules/libnice.make
> @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_LIBNICE) += libnice
>  #
>  # Paths and names
>  #
> -LIBNICE_VERSION	:= 0.1.16
> -LIBNICE_MD5	:= 5ad936c43d3c6d33117b2c64982f2fd9
> +LIBNICE_VERSION	:= 0.1.18
> +LIBNICE_MD5	:= 408482fa4bab7c6b884b0fb9ad57a038
>  LIBNICE		:= libnice-$(LIBNICE_VERSION)
>  LIBNICE_SUFFIX	:= tar.gz
>  LIBNICE_URL	:= https://libnice.freedesktop.org/releases/$(LIBNICE).$(LIBNICE_SUFFIX)
> @@ -28,23 +28,18 @@ LIBNICE_LICENSE	:= MPL-1.1 OR LGPL-2.1-only
>  # ----------------------------------------------------------------------------
>  
>  #
> -# autoconf
> +# meson
>  #
> -LIBNICE_CONF_TOOL	:= autoconf
> +LIBNICE_CONF_TOOL	:= meson
>  LIBNICE_CONF_OPT	:= \
> -	$(CROSS_AUTOCONF_USR) \
> -	--enable-assert \
> -	--enable-compile-warnings=yes \
> -	--disable-gupnp \
> -	--disable-coverage \
> -	--disable-static-plugins \
> -	--disable-gtk-doc \
> -	--disable-gtk-doc-html \
> -	--disable-gtk-doc-pdf \
> -	--disable-introspection \
> -	--with-crypto-library=openssl \
> -	--with-gstreamer \
> -	--without-gstreamer-0.10
> +	$(CROSS_MESON_USR) \
> +	-Dcrypto-library=openssl \
> +	-Dexamples=disabled \
> +	-Dgstreamer=enabled \
> +	-Dgtk_doc=disabled \
> +	-Dgupnp=disabled \
> +	-Dintrospection=disabled \
> +	-Dtests=disabled
>  
>  # ----------------------------------------------------------------------------
>  # Target-Install

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


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

end of thread, other threads:[~2022-02-28 12:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22 10:59 [ptxdist] [PATCH] libnice: version bump 0.1.16 -> 0.1.18 Philipp Zabel
2022-02-28 12:09 ` [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