Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/dillo: enable jpeg support only with libjpeg provider
@ 2016-01-01 18:08 Romain Naour
  2016-01-01 18:13 ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Romain Naour @ 2016-01-01 18:08 UTC (permalink / raw)
  To: buildroot

dillo add libjpeg to his dependencies when the virtual package
jpeg is selected. This is wrong because jpeg-turbo can be
selected instead of libjpeg. So the build of libjpeg can be
trigged at Makefile level when jpeg-turbo is selected at
Config.in level by the user.

Since 28f67899e54f15c6e48484ea2976c3e431756bcb, the build
stop if a package build is trigged at Makefile level without
being selected at Config.in level.

Use a dependency on the jpeg provider intead of the virtual
package.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
 package/dillo/dillo.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/dillo/dillo.mk b/package/dillo/dillo.mk
index 8eb8d88..45fd611 100644
--- a/package/dillo/dillo.mk
+++ b/package/dillo/dillo.mk
@@ -30,7 +30,7 @@ else
 DILLO_CONF_OPTS += --disable-png
 endif
 
-ifeq ($(BR2_PACKAGE_JPEG),y)
+ifeq ($(BR2_PACKAGE_LIBJPEG),y)
 DILLO_CONF_OPTS += --enable-jpeg
 DILLO_DEPENDENCIES += libjpeg
 else
-- 
2.4.3

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

* [Buildroot] [PATCH] package/dillo: enable jpeg support only with libjpeg provider
  2016-01-01 18:08 [Buildroot] [PATCH] package/dillo: enable jpeg support only with libjpeg provider Romain Naour
@ 2016-01-01 18:13 ` Yann E. MORIN
  2016-01-01 18:17   ` Romain Naour
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-01-01 18:13 UTC (permalink / raw)
  To: buildroot

Romain, All,

On 2016-01-01 19:08 +0100, Romain Naour spake thusly:
> dillo add libjpeg to his dependencies when the virtual package
> jpeg is selected. This is wrong because jpeg-turbo can be
> selected instead of libjpeg. So the build of libjpeg can be
> trigged at Makefile level when jpeg-turbo is selected at
> Config.in level by the user.
> 
> Since 28f67899e54f15c6e48484ea2976c3e431756bcb, the build
> stop if a package build is trigged at Makefile level without
> being selected at Config.in level.
> 
> Use a dependency on the jpeg provider intead of the virtual
> package.
> 
> Signed-off-by: Romain Naour <romain.naour@gmail.com>
> ---
>  package/dillo/dillo.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/dillo/dillo.mk b/package/dillo/dillo.mk
> index 8eb8d88..45fd611 100644
> --- a/package/dillo/dillo.mk
> +++ b/package/dillo/dillo.mk
> @@ -30,7 +30,7 @@ else
>  DILLO_CONF_OPTS += --disable-png
>  endif
>  
> -ifeq ($(BR2_PACKAGE_JPEG),y)
> +ifeq ($(BR2_PACKAGE_LIBJPEG),y)
>  DILLO_CONF_OPTS += --enable-jpeg
>  DILLO_DEPENDENCIES += libjpeg

Can dillo be build with jpeg-turbo? If so, it would better to do:

    ifeq ($(BR2_PACKAGE_HAS_JPEG),y)
    DILLO_CONF_OPTS += --enable-jpeg
    DILLO_DEPENDENCIES += jpeg
    else
    DILLO_CONF_OPTS += --disable-jpeg
    endif

Regards,
Yann E. MORIN.

>  else
> -- 
> 2.4.3
> 
> _______________________________________________
> 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 223 225 172 `------------.-------:  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] package/dillo: enable jpeg support only with libjpeg provider
  2016-01-01 18:13 ` Yann E. MORIN
@ 2016-01-01 18:17   ` Romain Naour
  2016-01-01 18:48     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Romain Naour @ 2016-01-01 18:17 UTC (permalink / raw)
  To: buildroot

Yann, All,

Le 01/01/2016 19:13, Yann E. MORIN a ?crit :
> Romain, All,
> 
> On 2016-01-01 19:08 +0100, Romain Naour spake thusly:
>> dillo add libjpeg to his dependencies when the virtual package
>> jpeg is selected. This is wrong because jpeg-turbo can be
>> selected instead of libjpeg. So the build of libjpeg can be
>> trigged at Makefile level when jpeg-turbo is selected at
>> Config.in level by the user.
>>
>> Since 28f67899e54f15c6e48484ea2976c3e431756bcb, the build
>> stop if a package build is trigged at Makefile level without
>> being selected at Config.in level.
>>
>> Use a dependency on the jpeg provider intead of the virtual
>> package.
>>
>> Signed-off-by: Romain Naour <romain.naour@gmail.com>
>> ---
>>  package/dillo/dillo.mk | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/package/dillo/dillo.mk b/package/dillo/dillo.mk
>> index 8eb8d88..45fd611 100644
>> --- a/package/dillo/dillo.mk
>> +++ b/package/dillo/dillo.mk
>> @@ -30,7 +30,7 @@ else
>>  DILLO_CONF_OPTS += --disable-png
>>  endif
>>  
>> -ifeq ($(BR2_PACKAGE_JPEG),y)
>> +ifeq ($(BR2_PACKAGE_LIBJPEG),y)
>>  DILLO_CONF_OPTS += --enable-jpeg
>>  DILLO_DEPENDENCIES += libjpeg
> 
> Can dillo be build with jpeg-turbo? If so, it would better to do:

Yes indeed but I don't know much dillo, I'm not sure it can be build or used
with jpeg-turbo. I added a dependency on the jpeg provider because it how it
work right now.

Best regards,
Romain

> 
>     ifeq ($(BR2_PACKAGE_HAS_JPEG),y)
>     DILLO_CONF_OPTS += --enable-jpeg
>     DILLO_DEPENDENCIES += jpeg
>     else
>     DILLO_CONF_OPTS += --disable-jpeg
>     endif
> 
> Regards,
> Yann E. MORIN.
> 
>>  else
>> -- 
>> 2.4.3
>>
>> _______________________________________________
>> 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] package/dillo: enable jpeg support only with libjpeg provider
  2016-01-01 18:17   ` Romain Naour
@ 2016-01-01 18:48     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-01-01 18:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Romain" == Romain Naour <romain.naour@gmail.com> writes:

 >> Can dillo be build with jpeg-turbo? If so, it would better to do:

 > Yes indeed but I don't know much dillo, I'm not sure it can be build or used
 > with jpeg-turbo. I added a dependency on the jpeg provider because it how it
 > work right now.

jpeg-turbo is in general compatible with libjpeg (E.G. we afaik don't
have any other packages that only works with libjpeg). A quick test
build also shows that dillo can be built against jpeg-turbo, so I've
changed it to use 'jpeg' instead - Thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-01-01 18:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-01 18:08 [Buildroot] [PATCH] package/dillo: enable jpeg support only with libjpeg provider Romain Naour
2016-01-01 18:13 ` Yann E. MORIN
2016-01-01 18:17   ` Romain Naour
2016-01-01 18:48     ` Peter Korsgaard

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