Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-23 Thread Yann E. MORIN
Christoph, All, On Tuesday 23 October 2012 Christoph Hellwig wrote: > On Thu, Oct 18, 2012 at 07:33:45PM +0200, Yann E. MORIN wrote: > > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. > > They were removed in Y2000 from FreeBSD: > >

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-23 Thread Christoph Hellwig
On Thu, Oct 18, 2012 at 07:33:45PM +0200, Yann E. MORIN wrote: > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. > They were removed in Y2000 from FreeBSD: > http://svnweb.freebsd.org/base?view=revision=70469 > > The reason was that TAILQ are perfectly capable of doing the

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-23 Thread Christoph Hellwig
On Thu, Oct 18, 2012 at 07:33:45PM +0200, Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. They were removed in Y2000 from FreeBSD: http://svnweb.freebsd.org/base?view=revisionrevision=70469 The reason was that TAILQ are perfectly capable of doing

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-23 Thread Yann E. MORIN
Christoph, All, On Tuesday 23 October 2012 Christoph Hellwig wrote: On Thu, Oct 18, 2012 at 07:33:45PM +0200, Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. They were removed in Y2000 from FreeBSD:

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-20 Thread Yann E. MORIN
Tetuso, All, On Saturday 20 October 2012 Tetsuo Handa wrote: > Michal Marek wrote: > > On 19.10.2012 14:10, Tetsuo Handa wrote: > > > Yann E. MORIN wrote: > > >> So, switch to using TAILQ instead, which are more portable. > > [...] > > > Excuse me, but your patch does not solve my problem because

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-20 Thread Tetsuo Handa
Michal Marek wrote: > On 19.10.2012 14:10, Tetsuo Handa wrote: > > Yann E. MORIN wrote: > >> So, switch to using TAILQ instead, which are more portable. > [...] > > Excuse me, but your patch does not solve my problem because kconfig started > > using macros which does not exist in "@(#)queue.h 8.3

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-20 Thread Tetsuo Handa
Michal Marek wrote: On 19.10.2012 14:10, Tetsuo Handa wrote: Yann E. MORIN wrote: So, switch to using TAILQ instead, which are more portable. [...] Excuse me, but your patch does not solve my problem because kconfig started using macros which does not exist in @(#)queue.h 8.3 (Berkeley)

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-20 Thread Yann E. MORIN
Tetuso, All, On Saturday 20 October 2012 Tetsuo Handa wrote: Michal Marek wrote: On 19.10.2012 14:10, Tetsuo Handa wrote: Yann E. MORIN wrote: So, switch to using TAILQ instead, which are more portable. [...] Excuse me, but your patch does not solve my problem because kconfig

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Yann E. MORIN
Tetsuo, Michal, All, On Friday 19 October 2012 Tetsuo Handa wrote: > Yann E. MORIN wrote: > > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. [--SNIP--] > > So, switch to using TAILQ instead, which are more portable. [--SNIP--] > Excuse me, but your patch does not solve my

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Michal Marek
On 19.10.2012 14:10, Tetsuo Handa wrote: > Yann E. MORIN wrote: >> So, switch to using TAILQ instead, which are more portable. [...] > Excuse me, but your patch does not solve my problem because kconfig started > using macros which does not exist in "@(#)queue.h 8.3 (Berkeley) 12/13/93". > Kconfig

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Tetsuo Handa
Yann E. MORIN wrote: > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. > They were removed in Y2000 from FreeBSD: > http://svnweb.freebsd.org/base?view=revision=70469 > > The reason was that TAILQ are perfectly capable of doing the exact > same things: > >

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Yaakov (Cygwin/X)
On Thu, 2012-10-18 at 20:59 +0200, Yann E. MORIN wrote: > On Thursday 18 October 2012 Yaakov (Cygwin/X) wrote: > > Tested-by: Yaakov Selkowitz > > Out of curiosity: did you test on Cygwin? Yes, of course. Yaakov Cygwin Ports -- To unsubscribe from this list: send the line "unsubscribe

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Yaakov (Cygwin/X)
On Thu, 2012-10-18 at 20:59 +0200, Yann E. MORIN wrote: On Thursday 18 October 2012 Yaakov (Cygwin/X) wrote: Tested-by: Yaakov Selkowitz yselkow...@users.sourceforge.net Out of curiosity: did you test on Cygwin? Yes, of course. Yaakov Cygwin Ports -- To unsubscribe from this list: send

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Tetsuo Handa
Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. They were removed in Y2000 from FreeBSD: http://svnweb.freebsd.org/base?view=revisionrevision=70469 The reason was that TAILQ are perfectly capable of doing the exact same things:

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Michal Marek
On 19.10.2012 14:10, Tetsuo Handa wrote: Yann E. MORIN wrote: So, switch to using TAILQ instead, which are more portable. [...] Excuse me, but your patch does not solve my problem because kconfig started using macros which does not exist in @(#)queue.h 8.3 (Berkeley) 12/13/93. Kconfig still

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-19 Thread Yann E. MORIN
Tetsuo, Michal, All, On Friday 19 October 2012 Tetsuo Handa wrote: Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. [--SNIP--] So, switch to using TAILQ instead, which are more portable. [--SNIP--] Excuse me, but your patch does not solve my problem

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-18 Thread Yann E. MORIN
Yaakov, All, On Thursday 18 October 2012 Yaakov (Cygwin/X) wrote: > On Thu, 2012-10-18 at 19:33 +0200, Yann E. MORIN wrote: > > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. > > They were removed in Y2000 from FreeBSD: > >

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-18 Thread Yaakov (Cygwin/X)
On Thu, 2012-10-18 at 19:33 +0200, Yann E. MORIN wrote: > Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. > They were removed in Y2000 from FreeBSD: > http://svnweb.freebsd.org/base?view=revision=70469 > > The reason was that TAILQ are perfectly capable of doing the exact >

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-18 Thread Yaakov (Cygwin/X)
On Thu, 2012-10-18 at 19:33 +0200, Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. They were removed in Y2000 from FreeBSD: http://svnweb.freebsd.org/base?view=revisionrevision=70469 The reason was that TAILQ are perfectly capable of doing the

Re: [PATCH] kconfig/menuconfig: use TAILQ instead of CIRCLEQ

2012-10-18 Thread Yann E. MORIN
Yaakov, All, On Thursday 18 October 2012 Yaakov (Cygwin/X) wrote: On Thu, 2012-10-18 at 19:33 +0200, Yann E. MORIN wrote: Some systems (eg. Cygwin, FreeBSD) are missing the CIRCLEQ macros. They were removed in Y2000 from FreeBSD: