All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-multimedia][PATCH] VLC: make gnome-vfs configurable
@ 2015-11-05 11:26 Rafaël Carré
  2015-11-05 11:39 ` Martin Jansa
  2015-11-05 12:59 ` Andreas Oberritter
  0 siblings, 2 replies; 4+ messages in thread
From: Rafaël Carré @ 2015-11-05 11:26 UTC (permalink / raw)
  To: openembedded-devel

---
XXX: to be cherry-picked together with <1446652999-24545-3-git-send-email-funman@videolan.org>

 meta-multimedia/recipes-multimedia/vlc/vlc.inc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
index bf08405..ce6e52d 100644
--- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
+++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
@@ -60,6 +60,7 @@ PACKAGECONFIG[qt4] = "--enable-qt,--disable-qt, qt4-x11-free"
 PACKAGECONFIG[freerdp] = "--enable-freerdp,--disable-freerdp, freerdp"
 PACKAGECONFIG[notify] = "--enable-notify,--disable-notify, libnotify gtk+"
 PACKAGECONFIG[dvbpsi] = "--enable-dvbpsi,--disable-dvbpsi, libdvbpsi"
+PACKAGECONFIG[gnome-vfs] = "--enable-gnomevfs,--disable-gnome-vfs, gnome-vfs"
 
 do_configure_prepend() {
     cp ${STAGING_DATADIR}/libtool/config.* ${S}/autotools/ || true
-- 
2.5.0



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

* Re: [meta-multimedia][PATCH] VLC: make gnome-vfs configurable
  2015-11-05 11:26 [meta-multimedia][PATCH] VLC: make gnome-vfs configurable Rafaël Carré
@ 2015-11-05 11:39 ` Martin Jansa
  2015-11-05 12:59 ` Andreas Oberritter
  1 sibling, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2015-11-05 11:39 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1396 bytes --]

On Thu, Nov 05, 2015 at 12:26:54PM +0100, Rafaël Carré wrote:
> ---
> XXX: to be cherry-picked together with <1446652999-24545-3-git-send-email-funman@videolan.org>

Squash 1446652999-24545-3-git-send-email-funman@videolan.org into this
one..

> 
>  meta-multimedia/recipes-multimedia/vlc/vlc.inc | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> index bf08405..ce6e52d 100644
> --- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> +++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> @@ -60,6 +60,7 @@ PACKAGECONFIG[qt4] = "--enable-qt,--disable-qt, qt4-x11-free"
>  PACKAGECONFIG[freerdp] = "--enable-freerdp,--disable-freerdp, freerdp"
>  PACKAGECONFIG[notify] = "--enable-notify,--disable-notify, libnotify gtk+"
>  PACKAGECONFIG[dvbpsi] = "--enable-dvbpsi,--disable-dvbpsi, libdvbpsi"
> +PACKAGECONFIG[gnome-vfs] = "--enable-gnomevfs,--disable-gnome-vfs, gnome-vfs"
>  
>  do_configure_prepend() {
>      cp ${STAGING_DATADIR}/libtool/config.* ${S}/autotools/ || true
> -- 
> 2.5.0
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

* Re: [meta-multimedia][PATCH] VLC: make gnome-vfs configurable
  2015-11-05 11:26 [meta-multimedia][PATCH] VLC: make gnome-vfs configurable Rafaël Carré
  2015-11-05 11:39 ` Martin Jansa
@ 2015-11-05 12:59 ` Andreas Oberritter
  2015-11-05 13:59   ` Rafaël Carré
  1 sibling, 1 reply; 4+ messages in thread
From: Andreas Oberritter @ 2015-11-05 12:59 UTC (permalink / raw)
  To: openembedded-devel

Hello Rafaël,

On 05.11.2015 12:26, Rafaël Carré wrote:
> ---
> XXX: to be cherry-picked together with <1446652999-24545-3-git-send-email-funman@videolan.org>
> 
>  meta-multimedia/recipes-multimedia/vlc/vlc.inc | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> index bf08405..ce6e52d 100644
> --- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> +++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
> @@ -60,6 +60,7 @@ PACKAGECONFIG[qt4] = "--enable-qt,--disable-qt, qt4-x11-free"
>  PACKAGECONFIG[freerdp] = "--enable-freerdp,--disable-freerdp, freerdp"
>  PACKAGECONFIG[notify] = "--enable-notify,--disable-notify, libnotify gtk+"
>  PACKAGECONFIG[dvbpsi] = "--enable-dvbpsi,--disable-dvbpsi, libdvbpsi"
> +PACKAGECONFIG[gnome-vfs] = "--enable-gnomevfs,--disable-gnome-vfs, gnome-vfs"

this looks like a typo (missing dash in enable switch?).

Regards,
Andreas

>  
>  do_configure_prepend() {
>      cp ${STAGING_DATADIR}/libtool/config.* ${S}/autotools/ || true
> 



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

* Re: [meta-multimedia][PATCH] VLC: make gnome-vfs configurable
  2015-11-05 12:59 ` Andreas Oberritter
@ 2015-11-05 13:59   ` Rafaël Carré
  0 siblings, 0 replies; 4+ messages in thread
From: Rafaël Carré @ 2015-11-05 13:59 UTC (permalink / raw)
  To: openembedded-devel

Hi,

On 05/11/2015 13:59, Andreas Oberritter wrote:
> Hello Rafaël,
> 
> On 05.11.2015 12:26, Rafaël Carré wrote:
>> ---
>> XXX: to be cherry-picked together with <1446652999-24545-3-git-send-email-funman@videolan.org>
>>
>>  meta-multimedia/recipes-multimedia/vlc/vlc.inc | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/meta-multimedia/recipes-multimedia/vlc/vlc.inc b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
>> index bf08405..ce6e52d 100644
>> --- a/meta-multimedia/recipes-multimedia/vlc/vlc.inc
>> +++ b/meta-multimedia/recipes-multimedia/vlc/vlc.inc
>> @@ -60,6 +60,7 @@ PACKAGECONFIG[qt4] = "--enable-qt,--disable-qt, qt4-x11-free"
>>  PACKAGECONFIG[freerdp] = "--enable-freerdp,--disable-freerdp, freerdp"
>>  PACKAGECONFIG[notify] = "--enable-notify,--disable-notify, libnotify gtk+"
>>  PACKAGECONFIG[dvbpsi] = "--enable-dvbpsi,--disable-dvbpsi, libdvbpsi"
>> +PACKAGECONFIG[gnome-vfs] = "--enable-gnomevfs,--disable-gnome-vfs, gnome-vfs"
> 
> this looks like a typo (missing dash in enable switch?).


Yes, although the typo is extra dash (should be --disable-gnomevfs)

> Regards,
> Andreas
> 
>>  
>>  do_configure_prepend() {
>>      cp ${STAGING_DATADIR}/libtool/config.* ${S}/autotools/ || true
>>
> 


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

end of thread, other threads:[~2015-11-05 13:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-05 11:26 [meta-multimedia][PATCH] VLC: make gnome-vfs configurable Rafaël Carré
2015-11-05 11:39 ` Martin Jansa
2015-11-05 12:59 ` Andreas Oberritter
2015-11-05 13:59   ` Rafaël Carré

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.