All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] freetype_2.4.3.bb; Change order of configuration.
@ 2011-10-22 12:28 ulf_samuelsson
  2011-10-22 13:14 ` Paul Menzel
  0 siblings, 1 reply; 3+ messages in thread
From: ulf_samuelsson @ 2011-10-22 12:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ulf Samuelsson, Ulf Samuelsson

From: Ulf Samuelsson <ulf_samuelsson@telia.com>

Build of freetype-native is broken on Ubuntu 11.10 x64 - possible others.
Problem fixed in openembedded-core 2.4.4 recipe
Backporting the change will allow the build to complete.

openembedded-core-contrib/meta/recipes-graphics/freetype

Signed-Off-By: Ulf Samuelsson <ulf.samuelsson@telia.com>
---
 recipes/freetype/freetype_2.4.3.bb |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes/freetype/freetype_2.4.3.bb b/recipes/freetype/freetype_2.4.3.bb
index 66d2e51..dfc1b43 100644
--- a/recipes/freetype/freetype_2.4.3.bb
+++ b/recipes/freetype/freetype_2.4.3.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "Freetype font rendering library"
 SECTION = "libs"
 LICENSE = "freetype GPLv2"
-PR = "r1"
+PR = "r2"
 DEPENDS = "zlib"
 
 SRC_URI = "\
@@ -23,9 +23,9 @@ LDFLAGS_append = " -Wl,-rpath-link -Wl,${STAGING_DIR_TARGET}${libdir}"
 
 do_configure() {
 	cd builds/unix
-	gnu-configize --force
-	aclocal -I .
 	libtoolize --force --copy
+	aclocal -I .
+	gnu-configize --force
 	autoconf
 	cd ${S}
 	oe_runconf
-- 
1.7.5.4




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

* Re: [PATCH] freetype_2.4.3.bb; Change order of configuration.
  2011-10-22 12:28 [PATCH] freetype_2.4.3.bb; Change order of configuration ulf_samuelsson
@ 2011-10-22 13:14 ` Paul Menzel
  2011-10-22 21:00   ` Ulf Samuelsson
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Menzel @ 2011-10-22 13:14 UTC (permalink / raw)
  To: openembedded-devel

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

Am Samstag, den 22.10.2011, 14:28 +0200 schrieb ulf_samuelsson@telia.com:
> From: Ulf Samuelsson <ulf_samuelsson@telia.com>
> 
> Build of freetype-native is broken on Ubuntu 11.10 x64 - possible others.

It works for me without problem with Debian Squeeze (32-bit). So what is
the error message in the first place?

> Problem fixed in openembedded-core 2.4.4 recipe

It seems it was not present since the beginning, i. e. version 2.3.12.

> Backporting the change will allow the build to complete.
> 
> openembedded-core-contrib/meta/recipes-graphics/freetype
> 
> Signed-Off-By: Ulf Samuelsson <ulf.samuelsson@telia.com>
> ---
>  recipes/freetype/freetype_2.4.3.bb |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/recipes/freetype/freetype_2.4.3.bb b/recipes/freetype/freetype_2.4.3.bb
> index 66d2e51..dfc1b43 100644
> --- a/recipes/freetype/freetype_2.4.3.bb
> +++ b/recipes/freetype/freetype_2.4.3.bb
> @@ -1,7 +1,7 @@
>  DESCRIPTION = "Freetype font rendering library"
>  SECTION = "libs"
>  LICENSE = "freetype GPLv2"
> -PR = "r1"
> +PR = "r2"
>  DEPENDS = "zlib"
>  
>  SRC_URI = "\
> @@ -23,9 +23,9 @@ LDFLAGS_append = " -Wl,-rpath-link -Wl,${STAGING_DIR_TARGET}${libdir}"
>  
>  do_configure() {
>  	cd builds/unix
> -	gnu-configize --force
> -	aclocal -I .
>  	libtoolize --force --copy
> +	aclocal -I .
> +	gnu-configize --force
>  	autoconf
>  	cd ${S}
>  	oe_runconf


Thanks,

Paul

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] freetype_2.4.3.bb; Change order of configuration.
  2011-10-22 13:14 ` Paul Menzel
@ 2011-10-22 21:00   ` Ulf Samuelsson
  0 siblings, 0 replies; 3+ messages in thread
From: Ulf Samuelsson @ 2011-10-22 21:00 UTC (permalink / raw)
  To: openembedded-devel

2011-10-22 15:14, Paul Menzel skrev:
> Am Samstag, den 22.10.2011, 14:28 +0200 schrieb ulf_samuelsson@telia.com:
>> From: Ulf Samuelsson<ulf_samuelsson@telia.com>
>>
>> Build of freetype-native is broken on Ubuntu 11.10 x64 - possible others.
> It works for me without problem with Debian Squeeze (32-bit). So what is
> the error message in the first place?
>
DIdn't save the logfile, but the problem was that
"./builds/unix/x86_64-linux-libtool"  was not present when needed.

instead "./builds/unix/libtool" had been built.
If you run a 32 bit machine, then you obviously do not have a problem.

Would be good to have it tested on a 32 bit machine of course,
but I do not see why a 64 bit version should be built based
on the changes in the patch.


>> Problem fixed in openembedded-core 2.4.4 recipe
> It seems it was not present since the beginning, i. e. version 2.3.12.
>
>> Backporting the change will allow the build to complete.
>>
>> openembedded-core-contrib/meta/recipes-graphics/freetype
>>
>> Signed-Off-By: Ulf Samuelsson<ulf.samuelsson@telia.com>
>> ---
>>   recipes/freetype/freetype_2.4.3.bb |    6 +++---
>>   1 files changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/recipes/freetype/freetype_2.4.3.bb b/recipes/freetype/freetype_2.4.3.bb
>> index 66d2e51..dfc1b43 100644
>> --- a/recipes/freetype/freetype_2.4.3.bb
>> +++ b/recipes/freetype/freetype_2.4.3.bb
>> @@ -1,7 +1,7 @@
>>   DESCRIPTION = "Freetype font rendering library"
>>   SECTION = "libs"
>>   LICENSE = "freetype GPLv2"
>> -PR = "r1"
>> +PR = "r2"
>>   DEPENDS = "zlib"
>>
>>   SRC_URI = "\
>> @@ -23,9 +23,9 @@ LDFLAGS_append = " -Wl,-rpath-link -Wl,${STAGING_DIR_TARGET}${libdir}"
>>
>>   do_configure() {
>>   	cd builds/unix
>> -	gnu-configize --force
>> -	aclocal -I .
>>   	libtoolize --force --copy
>> +	aclocal -I .
>> +	gnu-configize --force
>>   	autoconf
>>   	cd ${S}
>>   	oe_runconf
>
> Thanks,
>
> Paul
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


-- 
Best Regards
Ulf Samuelsson



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

end of thread, other threads:[~2011-10-22 21:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-22 12:28 [PATCH] freetype_2.4.3.bb; Change order of configuration ulf_samuelsson
2011-10-22 13:14 ` Paul Menzel
2011-10-22 21:00   ` Ulf Samuelsson

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.