* [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected
@ 2020-05-01 16:50 Michele Comignano
2020-05-01 19:23 ` Yann E. MORIN
2020-05-10 19:13 ` Peter Korsgaard
0 siblings, 2 replies; 4+ messages in thread
From: Michele Comignano @ 2020-05-01 16:50 UTC (permalink / raw)
To: buildroot
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-package-vlc-enable-gnutls-if-selected.patch
Type: text/x-patch
Size: 746 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20200501/72c438f6/attachment.bin>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected
2020-05-01 16:50 [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected Michele Comignano
@ 2020-05-01 19:23 ` Yann E. MORIN
2020-05-01 20:31 ` Michele C.
2020-05-10 19:13 ` Peter Korsgaard
1 sibling, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2020-05-01 19:23 UTC (permalink / raw)
To: buildroot
Michele, All,
On 2020-05-01 18:50 +0200, Michele Comignano spake thusly:
> From 6a9cccb28174dc25a3f74bc3a33b0e13eecbfd6e Mon Sep 17 00:00:00 2001
> From: Michele Comignano <comick@gmail.com>
> Date: Wed, 8 Apr 2020 21:48:33 +0200
> Subject: [PATCH 1/1] package/vlc: enable gnutls if selected
>
> Signed-off-by: Michele Comignano <comick@gmail.com>
Applied to master, thanks!
MNote: your patch was weirdly formatted; be sure to use 'git send-email'
to send your patches, as this prepares correct mails.
Regards,
Yann E. MORIN.
> ---
> package/vlc/vlc.mk | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk
> index 4b1cd68d8b..1f2af878eb 100644
> --- a/package/vlc/vlc.mk
> +++ b/package/vlc/vlc.mk
> @@ -567,4 +567,11 @@ ifeq ($(BR2_PACKAGE_ZLIB),y)
> VLC_DEPENDENCIES += zlib
> endif
>
> +ifeq ($(BR2_PACKAGE_GNUTLS),y)
> +VLC_CONF_OPTS += --enable-gnutls
> +VLC_DEPENDENCIES += gnutls
> +else
> +VLC_CONF_OPTS += --disable-gnutls
> +endif
> +
> $(eval $(autotools-package))
> --
> 2.17.1
>
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected
2020-05-01 19:23 ` Yann E. MORIN
@ 2020-05-01 20:31 ` Michele C.
0 siblings, 0 replies; 4+ messages in thread
From: Michele C. @ 2020-05-01 20:31 UTC (permalink / raw)
To: buildroot
Thanks! Will go for git send-email next time.
Regards,
Michele
Il 01/05/20 21:23, Yann E. MORIN ha scritto:
> Michele, All,
>
> On 2020-05-01 18:50 +0200, Michele Comignano spake thusly:
>> From 6a9cccb28174dc25a3f74bc3a33b0e13eecbfd6e Mon Sep 17 00:00:00 2001
>> From: Michele Comignano <comick@gmail.com>
>> Date: Wed, 8 Apr 2020 21:48:33 +0200
>> Subject: [PATCH 1/1] package/vlc: enable gnutls if selected
>>
>> Signed-off-by: Michele Comignano <comick@gmail.com>
> Applied to master, thanks!
>
> MNote: your patch was weirdly formatted; be sure to use 'git send-email'
> to send your patches, as this prepares correct mails.
>
> Regards,
> Yann E. MORIN.
>
>> ---
>> package/vlc/vlc.mk | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/package/vlc/vlc.mk b/package/vlc/vlc.mk
>> index 4b1cd68d8b..1f2af878eb 100644
>> --- a/package/vlc/vlc.mk
>> +++ b/package/vlc/vlc.mk
>> @@ -567,4 +567,11 @@ ifeq ($(BR2_PACKAGE_ZLIB),y)
>> VLC_DEPENDENCIES += zlib
>> endif
>>
>> +ifeq ($(BR2_PACKAGE_GNUTLS),y)
>> +VLC_CONF_OPTS += --enable-gnutls
>> +VLC_DEPENDENCIES += gnutls
>> +else
>> +VLC_CONF_OPTS += --disable-gnutls
>> +endif
>> +
>> $(eval $(autotools-package))
>> --
>> 2.17.1
>>
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected
2020-05-01 16:50 [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected Michele Comignano
2020-05-01 19:23 ` Yann E. MORIN
@ 2020-05-10 19:13 ` Peter Korsgaard
1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2020-05-10 19:13 UTC (permalink / raw)
To: buildroot
>>>>> "Michele" == Michele Comignano <comick@gmail.com> writes:
Committed to 2020.02.x, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-10 19:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-01 16:50 [Buildroot] [PATCH 1/1] package/vlc: enable gnutls if selected Michele Comignano
2020-05-01 19:23 ` Yann E. MORIN
2020-05-01 20:31 ` Michele C.
2020-05-10 19:13 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox