All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch 0/1] cracklib: cracklib-native should not depend on zlib
@ 2013-10-24 15:16 Konrad Scherer
  2013-10-24 15:17 ` [PATCH] " Konrad Scherer
  0 siblings, 1 reply; 4+ messages in thread
From: Konrad Scherer @ 2013-10-24 15:16 UTC (permalink / raw)
  To: openembedded-core

I am pretty sure this is just a typo. I noticed it while building
a native only packagegroup and zlib kept getting built as well.

---
Konrad Scherer, MTS, Linux Products Group, Wind River


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

* [PATCH] cracklib: cracklib-native should not depend on zlib
  2013-10-24 15:16 [Patch 0/1] cracklib: cracklib-native should not depend on zlib Konrad Scherer
@ 2013-10-24 15:17 ` Konrad Scherer
  2013-10-24 21:56   ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Konrad Scherer @ 2013-10-24 15:17 UTC (permalink / raw)
  To: openembedded-core

From: Konrad Scherer <Konrad.Scherer@windriver.com>

Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com>
---
 meta/recipes-extended/cracklib/cracklib_2.9.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
index 34c2ff1..bbf88bb 100644
--- a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
+++ b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
@@ -5,7 +5,7 @@ LICENSE = "LGPLv2.1+"
 LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
 
 DEPENDS = "cracklib-native zlib"
-DEPENDS_class-native = "zlib"
+DEPENDS_class-native = "zlib-native"
 
 EXTRA_OECONF = "--without-python --libdir=${base_libdir}"
 
-- 
1.8.1.2



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

* Re: [PATCH] cracklib: cracklib-native should not depend on zlib
  2013-10-24 15:17 ` [PATCH] " Konrad Scherer
@ 2013-10-24 21:56   ` Saul Wold
  2013-10-24 22:03     ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2013-10-24 21:56 UTC (permalink / raw)
  To: Konrad Scherer, openembedded-core

On 10/24/2013 08:17 AM, Konrad Scherer wrote:
> From: Konrad Scherer <Konrad.Scherer@windriver.com>
>
> Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com>
> ---
>   meta/recipes-extended/cracklib/cracklib_2.9.0.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
> index 34c2ff1..bbf88bb 100644
> --- a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
> +++ b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
> @@ -5,7 +5,7 @@ LICENSE = "LGPLv2.1+"
>   LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
>
>   DEPENDS = "cracklib-native zlib"
> -DEPENDS_class-native = "zlib"
> +DEPENDS_class-native = "zlib-native"
>
This is actually needed since cracklib has a configure test for zlib.h, 
with no way to disable it. So without the zlib-native the build will be 
non-determinstic, since depending on the existance of zlib.h configure 
output will be different.

Thanks
	Sau!



>   EXTRA_OECONF = "--without-python --libdir=${base_libdir}"
>
>


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

* Re: [PATCH] cracklib: cracklib-native should not depend on zlib
  2013-10-24 21:56   ` Saul Wold
@ 2013-10-24 22:03     ` Saul Wold
  0 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2013-10-24 22:03 UTC (permalink / raw)
  To: Saul Wold, Konrad Scherer, openembedded-core

On 10/24/2013 02:56 PM, Saul Wold wrote:
> On 10/24/2013 08:17 AM, Konrad Scherer wrote:
>> From: Konrad Scherer <Konrad.Scherer@windriver.com>
>>
>> Signed-off-by: Konrad Scherer <Konrad.Scherer@windriver.com>
>> ---
>>   meta/recipes-extended/cracklib/cracklib_2.9.0.bb | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
>> b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
>> index 34c2ff1..bbf88bb 100644
>> --- a/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
>> +++ b/meta/recipes-extended/cracklib/cracklib_2.9.0.bb
>> @@ -5,7 +5,7 @@ LICENSE = "LGPLv2.1+"
>>   LIC_FILES_CHKSUM =
>> "file://COPYING.LIB;md5=e3eda01d9815f8d24aae2dbd89b68b06"
>>
>>   DEPENDS = "cracklib-native zlib"
>> -DEPENDS_class-native = "zlib"
>> +DEPENDS_class-native = "zlib-native"
>>
> This is actually needed since cracklib has a configure test for zlib.h,
> with no way to disable it. So without the zlib-native the build will be
> non-determinstic, since depending on the existance of zlib.h configure
> output will be different.
>
Never mind, I mis-read what you where doing.

I will pull it into mut!

Serves me right for doing this late at night!

Sau!

> Thanks
>      Sau!
>
>
>
>>   EXTRA_OECONF = "--without-python --libdir=${base_libdir}"
>>
>>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>


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

end of thread, other threads:[~2013-10-24 22:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-24 15:16 [Patch 0/1] cracklib: cracklib-native should not depend on zlib Konrad Scherer
2013-10-24 15:17 ` [PATCH] " Konrad Scherer
2013-10-24 21:56   ` Saul Wold
2013-10-24 22:03     ` Saul Wold

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.