Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Mike Frysinger
On Tuesday 21 July 2009 04:45:49 Luigi 'Comio' Mantellini wrote: --- /dev/null +++ b/lib_generic/lzma/LzmaDec.c @@ -0,0 +1,1007 @@ +/* LzmaDec.c -- LZMA Decoder +2008-11-06 : Igor Pavlov : Public domain */ + +#include LzmaDec.h + +#include string.h there is no string.h in the source

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
Hi Mike, On Mon, Jul 27, 2009 at 7:40 PM, Mike Frysingervap...@gentoo.org wrote: On Tuesday 21 July 2009 04:45:49 Luigi 'Comio' Mantellini wrote: --- /dev/null +++ b/lib_generic/lzma/LzmaDec.c @@ -0,0 +1,1007 @@ +/* LzmaDec.c -- LZMA Decoder +2008-11-06 : Igor Pavlov : Public domain */ +

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Mike Frysinger
On Monday 27 July 2009 14:17:44 Luigi Mantellini wrote: On Mon, Jul 27, 2009 at 7:40 PM, Mike Frysinger wrote: On Tuesday 21 July 2009 04:45:49 Luigi 'Comio' Mantellini wrote: --- /dev/null +++ b/lib_generic/lzma/LzmaDec.c @@ -0,0 +1,1007 @@ +/* LzmaDec.c -- LZMA Decoder +2008-11-06 :

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Mike Frysinger
On Monday 27 July 2009 14:48:54 Luigi Mantellini wrote: On Mon, Jul 27, 2009 at 8:27 PM, Mike Frysinger wrote: On Monday 27 July 2009 14:17:44 Luigi Mantellini wrote: On Mon, Jul 27, 2009 at 7:40 PM, Mike Frysinger wrote: On Tuesday 21 July 2009 04:45:49 Luigi 'Comio' Mantellini wrote:

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
On Mon, Jul 27, 2009 at 8:58 PM, Mike Frysingervap...@gentoo.org wrote: CFLAGS bugs? I tried to comment the -I...blablalb... and the build (crrectly) fails. Can you remove the .depend from your source dir? i said it doesnt matter.  but if you're going to continue down this line of reasoning

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
(sent again) CFLAGS bugs? I tried to comment the -I...blablalb... and the build (crrectly) fails. Can you remove the .depend from your source dir? ciao On Mon, Jul 27, 2009 at 8:27 PM, Mike Frysingervap...@gentoo.org wrote: On Monday 27 July 2009 14:17:44 Luigi Mantellini wrote: On Mon, Jul

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Mike Frysinger
On Monday 27 July 2009 15:12:11 Luigi Mantellini wrote: On Mon, Jul 27, 2009 at 8:58 PM, Mike Frysingervap...@gentoo.org wrote: CFLAGS bugs? I tried to comment the -I...blablalb... and the build (crrectly) fails. Can you remove the .depend from your source dir? i said it doesnt matter.

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
Ok... Now I understand. We have two choices: CPPFLAGS or patch the LzmaDec.c. I think that you prefer the second choice. right? best regards, luigi On Mon, Jul 27, 2009 at 9:33 PM, Mike Frysingervap...@gentoo.org wrote: On Monday 27 July 2009 15:12:11 Luigi Mantellini wrote: On Mon, Jul 27,

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
I have a stupid question: why the depend uses CPPFLAGS instead instead CFLAGS? can this patch be acceptable? Or there is something that I don't understand? diff --git a/rules.mk b/rules.mk index 6f999dd..998dd4e 100644 --- a/rules.mk +++ b/rules.mk @@ -29,7 +29,7 @@ $(obj).depend:

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Wolfgang Denk
Dear Luigi Mantellini, In message b73e93990907271302g31b398d3qf4acf29d1af13...@mail.gmail.com you wrote: I have a stupid question: why the depend uses CPPFLAGS instead instead CFLAGS? Because depend runs $(CC) -M, i. e. just the preprocessor, so any additional flags needed for later compiler

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-27 Thread Luigi Mantellini
On Mon, Jul 27, 2009 at 10:49 PM, Wolfgang Denkw...@denx.de wrote: Dear Luigi Mantellini, Arghhh. Mike already told you before: please do not top post / full quote. Please read http://www.netmeister.org/news/learn2quote.html to understand what this means. I'm sorry! -- Luigi 'Comio'

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-22 Thread Luigi 'Comio' Mantellini
thanks Dear Luigi 'Comio' Mantellini, In message 1248165949-5845-2-git-send-email-luigi.mantellini...@gmail.com you wrote: --===0963718385== From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com

Re: [U-Boot] [PATCH] Refresh LZMA-lib to v4.65

2009-07-22 Thread Wolfgang Denk
Dear Luigi 'Comio' Mantellini, In message 1248165949-5845-2-git-send-email-luigi.mantellini...@gmail.com you wrote: --===0963718385== From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com ---