Re: [U-Boot] [PATCH 2/3] tools/proftool: add missing definition

2013-07-01 Thread Andreas Bießmann
Hi Jeroen, On 01.07.13 22:12, Jeroen Hofstee wrote: > Hello Andreas, > > On 07/01/2013 08:45 PM, Jeroen Hofstee wrote: >> Hello Andreas, >> >> On 06/30/2013 01:15 PM, Andreas Bießmann wrote: >>> BSD (like OS X) variants of regex.h do not declare REG_NOERROR, add a >>> simple >>> define for them.

Re: [U-Boot] [PATCH 2/3] tools/proftool: add missing definition

2013-07-01 Thread Jeroen Hofstee
Hello Andreas, On 07/01/2013 08:45 PM, Jeroen Hofstee wrote: Hello Andreas, On 06/30/2013 01:15 PM, Andreas Bießmann wrote: BSD (like OS X) variants of regex.h do not declare REG_NOERROR, add a simple define for them. Signed-off-by: Andreas Bießmann --- +#ifndef REG_NOERROR +/* BSD regex.

Re: [U-Boot] [PATCH 2/3] tools/proftool: add missing definition

2013-07-01 Thread Lubomir Popov
> BSD (like OS X) variants of regex.h do not declare REG_NOERROR, add a simple > define for them. > > Signed-off-by: Andreas Bießmann > --- Tested-by: Lubomir Popov ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-

Re: [U-Boot] [PATCH 2/3] tools/proftool: add missing definition

2013-07-01 Thread Jeroen Hofstee
Hello Andreas, On 06/30/2013 01:15 PM, Andreas Bießmann wrote: BSD (like OS X) variants of regex.h do not declare REG_NOERROR, add a simple define for them. Signed-off-by: Andreas Bießmann --- +#ifndef REG_NOERROR +/* BSD regex.h do not expose REG_NOERROR */ +# define REG_NOERROR 0 +#endif

[U-Boot] [PATCH 2/3] tools/proftool: add missing definition

2013-06-30 Thread Andreas Bießmann
BSD (like OS X) variants of regex.h do not declare REG_NOERROR, add a simple define for them. Signed-off-by: Andreas Bießmann --- tools/proftool.c | 5 + 1 file changed, 5 insertions(+) diff --git a/tools/proftool.c b/tools/proftool.c index a48ed28..d910b50 100644 --- a/tools/proftool.c +++