All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cups: Fix build failure
@ 2014-06-07 14:30 Armin Kuster
  2014-06-08  4:02 ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Armin Kuster @ 2014-06-07 14:30 UTC (permalink / raw)
  To: openembedded-core

The follwing error was seen when no crypt dependency was included.

In file included from cups-private.h:29:0,
|                  from attr.c:26:
| http-private.h:83:24: fatal error: gcrypt.h: No such file or directory
|  #    include <gcrypt.h>
|                         ^

Add bcrypt to DEPENDS

Signed-off-by: Armin Kuster <akuster@mvista.com>
---
 meta/recipes-extended/cups/cups.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc
index fd88552..249eac4 100644
--- a/meta/recipes-extended/cups/cups.inc
+++ b/meta/recipes-extended/cups/cups.inc
@@ -1,7 +1,7 @@
 SUMMARY = "An Internet printing system for Unix"
 SECTION = "console/utils"
 LICENSE = "GPLv2 & LGPLv2"
-DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb"
+DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb bcrypt"
 PROVIDES = "cups14"
 
 SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
-- 
1.9.1



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

* Re: [PATCH] cups: Fix build failure
  2014-06-07 14:30 [PATCH] cups: Fix build failure Armin Kuster
@ 2014-06-08  4:02 ` Saul Wold
  2014-06-08 19:50   ` akuster@mvista
  2014-06-09 20:22   ` akuster808
  0 siblings, 2 replies; 4+ messages in thread
From: Saul Wold @ 2014-06-08  4:02 UTC (permalink / raw)
  To: Armin Kuster, openembedded-core

On 06/07/2014 07:30 AM, Armin Kuster wrote:
> The follwing error was seen when no crypt dependency was included.
>
> In file included from cups-private.h:29:0,
> |                  from attr.c:26:
> | http-private.h:83:24: fatal error: gcrypt.h: No such file or directory
> |  #    include <gcrypt.h>
> |                         ^
>
> Add bcrypt to DEPENDS
>
> Signed-off-by: Armin Kuster <akuster@mvista.com>
> ---
>   meta/recipes-extended/cups/cups.inc | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc
> index fd88552..249eac4 100644
> --- a/meta/recipes-extended/cups/cups.inc
> +++ b/meta/recipes-extended/cups/cups.inc
> @@ -1,7 +1,7 @@
>   SUMMARY = "An Internet printing system for Unix"
>   SECTION = "console/utils"
>   LICENSE = "GPLv2 & LGPLv2"
> -DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb"
> +DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb bcrypt"

Do we really want to enable crypt here or make it optional?  If we set 
ac_cv_search_crypt=no on the EXTRA_OECONF line, then we can remove this 
floating dependency or make it a PACKAGECONFIG setting

Sau!

>   PROVIDES = "cups14"
>
>   SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
>


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

* Re: [PATCH] cups: Fix build failure
  2014-06-08  4:02 ` Saul Wold
@ 2014-06-08 19:50   ` akuster@mvista
  2014-06-09 20:22   ` akuster808
  1 sibling, 0 replies; 4+ messages in thread
From: akuster@mvista @ 2014-06-08 19:50 UTC (permalink / raw)
  To: Saul Wold, openembedded-core


On 06/07/2014 09:02 PM, Saul Wold wrote:
> On 06/07/2014 07:30 AM, Armin Kuster wrote:
>> The follwing error was seen when no crypt dependency was included.
>>
>> In file included from cups-private.h:29:0,
>> |                  from attr.c:26:
>> | http-private.h:83:24: fatal error: gcrypt.h: No such file or directory
>> |  #    include <gcrypt.h>
>> |                         ^
>>
>> Add bcrypt to DEPENDS
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>> ---
>>   meta/recipes-extended/cups/cups.inc | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-extended/cups/cups.inc 
>> b/meta/recipes-extended/cups/cups.inc
>> index fd88552..249eac4 100644
>> --- a/meta/recipes-extended/cups/cups.inc
>> +++ b/meta/recipes-extended/cups/cups.inc
>> @@ -1,7 +1,7 @@
>>   SUMMARY = "An Internet printing system for Unix"
>>   SECTION = "console/utils"
>>   LICENSE = "GPLv2 & LGPLv2"
>> -DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb"
>> +DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb bcrypt"
>
> Do we really want to enable crypt here or make it optional?

Good question.
> If we set ac_cv_search_crypt=no on the EXTRA_OECONF line, then we can 
> remove this floating dependency or make it a PACKAGECONFIG setting
Ok.  let me work on this a bit more.

- Armin

>
> Sau!
>
>>   PROVIDES = "cups14"
>>
>>   SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
>>



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

* Re: [PATCH] cups: Fix build failure
  2014-06-08  4:02 ` Saul Wold
  2014-06-08 19:50   ` akuster@mvista
@ 2014-06-09 20:22   ` akuster808
  1 sibling, 0 replies; 4+ messages in thread
From: akuster808 @ 2014-06-09 20:22 UTC (permalink / raw)
  To: Saul Wold, Armin Kuster, openembedded-core

Saul,

I found a fix from cups.org to address this. I have back ported the 
patch and will submit a v2  cups patch

thanks,
- Armin

On 06/07/2014 09:02 PM, Saul Wold wrote:
> On 06/07/2014 07:30 AM, Armin Kuster wrote:
>> The follwing error was seen when no crypt dependency was included.
>>
>> In file included from cups-private.h:29:0,
>> |                  from attr.c:26:
>> | http-private.h:83:24: fatal error: gcrypt.h: No such file or directory
>> |  #    include <gcrypt.h>
>> |                         ^
>>
>> Add bcrypt to DEPENDS
>>
>> Signed-off-by: Armin Kuster <akuster@mvista.com>
>> ---
>>   meta/recipes-extended/cups/cups.inc | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-extended/cups/cups.inc 
>> b/meta/recipes-extended/cups/cups.inc
>> index fd88552..249eac4 100644
>> --- a/meta/recipes-extended/cups/cups.inc
>> +++ b/meta/recipes-extended/cups/cups.inc
>> @@ -1,7 +1,7 @@
>>   SUMMARY = "An Internet printing system for Unix"
>>   SECTION = "console/utils"
>>   LICENSE = "GPLv2 & LGPLv2"
>> -DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb"
>> +DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb bcrypt"
>
> Do we really want to enable crypt here or make it optional?  If we set 
> ac_cv_search_crypt=no on the EXTRA_OECONF line, then we can remove 
> this floating dependency or make it a PACKAGECONFIG setting
>
> Sau!
>
>>   PROVIDES = "cups14"
>>
>>   SRC_URI = "http://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
>>



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

end of thread, other threads:[~2014-06-09 20:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-07 14:30 [PATCH] cups: Fix build failure Armin Kuster
2014-06-08  4:02 ` Saul Wold
2014-06-08 19:50   ` akuster@mvista
2014-06-09 20:22   ` akuster808

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.