Re: [PATCH] Allow kernel to build on Cygwin

2007-02-24 Thread H. Peter Anvin
Jan Engelhardt wrote: On Feb 23 2007 16:17, H. Peter Anvin wrote: Deepak Saxena wrote: diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c index bea5d97..ce447ff 100644 --- a/lib/gen_crc32table.c +++ b/lib/gen_crc32table.c @@ -1,6 +1,8 @@ # include # include "crc32defs.h" +#ifndef

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-24 Thread Jan Engelhardt
On Feb 23 2007 16:17, H. Peter Anvin wrote: > Deepak Saxena wrote: >> >> diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c >> index bea5d97..ce447ff 100644 >> --- a/lib/gen_crc32table.c >> +++ b/lib/gen_crc32table.c >> @@ -1,6 +1,8 @@ >> # include >> # include "crc32defs.h" >> +#ifndef

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-24 Thread Jan Engelhardt
On Feb 23 2007 16:17, H. Peter Anvin wrote: Deepak Saxena wrote: diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c index bea5d97..ce447ff 100644 --- a/lib/gen_crc32table.c +++ b/lib/gen_crc32table.c @@ -1,6 +1,8 @@ # include stdio.h # include crc32defs.h +#ifndef __CYGWIN__

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-24 Thread H. Peter Anvin
Jan Engelhardt wrote: On Feb 23 2007 16:17, H. Peter Anvin wrote: Deepak Saxena wrote: diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c index bea5d97..ce447ff 100644 --- a/lib/gen_crc32table.c +++ b/lib/gen_crc32table.c @@ -1,6 +1,8 @@ # include stdio.h # include crc32defs.h +#ifndef

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread H. Peter Anvin
Deepak Saxena wrote: This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the embedded world. :( Signed-off-by: Deepak Saxena <[EMAIL PROTECTED]> I have one major problem with

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread H. Peter Anvin
Deepak Saxena wrote: diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c index bea5d97..ce447ff 100644 --- a/lib/gen_crc32table.c +++ b/lib/gen_crc32table.c @@ -1,6 +1,8 @@ #include #include "crc32defs.h" +#ifndef __CYGWIN__ #include +#endif #define ENTRIES_PER_LINE 4 Cygwin

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread Deepak Saxena
On Feb 23 2007, at 20:37, Matthieu CASTET was caught saying: > Hi, > > Deepak Saxena plexity.net> writes: > > > > > > > This patch contains a set of small fixes to allow the kernel to build under > > the Cygwin environment, which is unfortunately used by more people than > > one would think

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread Matthieu CASTET
Hi, Deepak Saxena plexity.net> writes: > > > This patch contains a set of small fixes to allow the kernel to build under > the Cygwin environment, which is unfortunately used by more people than > one would think in the embedded world. :( Yes, I did similar patch, and there are needed for

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread Matthieu CASTET
Hi, Deepak Saxena dsaxena at plexity.net writes: This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the embedded world. :( Yes, I did similar patch, and there are needed for

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread Deepak Saxena
On Feb 23 2007, at 20:37, Matthieu CASTET was caught saying: Hi, Deepak Saxena dsaxena at plexity.net writes: This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread H. Peter Anvin
Deepak Saxena wrote: diff --git a/lib/gen_crc32table.c b/lib/gen_crc32table.c index bea5d97..ce447ff 100644 --- a/lib/gen_crc32table.c +++ b/lib/gen_crc32table.c @@ -1,6 +1,8 @@ #include stdio.h #include crc32defs.h +#ifndef __CYGWIN__ #include inttypes.h +#endif #define ENTRIES_PER_LINE

Re: [PATCH] Allow kernel to build on Cygwin

2007-02-23 Thread H. Peter Anvin
Deepak Saxena wrote: This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the embedded world. :( Signed-off-by: Deepak Saxena [EMAIL PROTECTED] I have one major problem with this

[PATCH] Allow kernel to build on Cygwin

2007-02-22 Thread Deepak Saxena
This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the embedded world. :( Signed-off-by: Deepak Saxena <[EMAIL PROTECTED]> --- lib/gen_crc32table.c |2

[PATCH] Allow kernel to build on Cygwin

2007-02-22 Thread Deepak Saxena
This patch contains a set of small fixes to allow the kernel to build under the Cygwin environment, which is unfortunately used by more people than one would think in the embedded world. :( Signed-off-by: Deepak Saxena [EMAIL PROTECTED] --- lib/gen_crc32table.c |2 ++