Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-03 Thread Sven Joachim
On 2013-03-03 21:23 +0100, Yann E. MORIN wrote: > On Thursday 28 February 2013 Sven Joachim wrote: >> On 2013-02-28 10:59 +0100, j...@gentoo.org wrote: > >> > scripts/kconfig/Makefile | 4 +++- >> > 1 file changed, 3 insertions(+), 1 deletion(-) >> > >> > diff --git a/scripts/kconfig/Makefile b/s

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-03 Thread Yann E. MORIN
Justin, All, On Friday 01 March 2013 j...@gentoo.org wrote: > When building ncurses with --with-termlib several symbols get moved from > libncurses.so to libtinfo.so. Thus when linking with libncurses.so, one > additionally needs to link with libtinfo.so. Ncurses provides a config script > (ncurse

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-03 Thread Yann E. MORIN
Sven, Justin, All, Sorry for the delay... On Thursday 28 February 2013 Sven Joachim wrote: > On 2013-02-28 10:59 +0100, j...@gentoo.org wrote: > > > Ncurses provides a config script (ncurses5-config) to assist finding > > ncurses. > > This patch makes use of it to detect the necessary libs for

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-01 Thread Sven Joachim
On 2013-03-01 14:47 +0100, justin wrote: > On 01/03/13 09:36, Sven Joachim wrote: >> Historically it seems to be an accident, and the ncurses{w,5}-config >> scripts should have better been shipped in their development packages. >> But nowadays we want to make the development packages multiarch-awa

[PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-01 Thread jlec
From: Justin Lecher When building ncurses with --with-termlib several symbols get moved from libncurses.so to libtinfo.so. Thus when linking with libncurses.so, one additionally needs to link with libtinfo.so. Ncurses provides a config script (ncurses5-config) or in very recent version even a pkg

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-01 Thread justin
On 01/03/13 09:36, Sven Joachim wrote: > Historically it seems to be an accident, and the ncurses{w,5}-config > scripts should have better been shipped in their development packages. > But nowadays we want to make the development packages multiarch-aware, > and since the scripts differ on architect

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-03-01 Thread Sven Joachim
On 2013-03-01 08:37 +0100, justin wrote: > On 28/02/13 22:50, Sven Joachim wrote: >> On 2013-02-28 10:59 +0100, j...@gentoo.org wrote: >> >>> Ncurses provides a config script (ncurses5-config) to assist finding >>> ncurses. >>> This patch makes use of it to detect the necessary libs for linking

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-02-28 Thread justin
On 28/02/13 21:59, Yann E. MORIN wrote: > I've queued that one in my tree, now, in branch yem-kconfig-for-next: > https://www.gitorious.org/linux-kconfig/linux-kconfig > Thanks for queuing, but with the points which Sven mentioned we should first agree on a way to detect things. The simples

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-02-28 Thread justin
On 28/02/13 22:50, Sven Joachim wrote: > On 2013-02-28 10:59 +0100, j...@gentoo.org wrote: > >> Ncurses provides a config script (ncurses5-config) to assist finding ncurses. >> This patch makes use of it to detect the necessary libs for linking of the >> ncurses nconfig dialog. > > That script is

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-02-28 Thread Sven Joachim
On 2013-02-28 10:59 +0100, j...@gentoo.org wrote: > Ncurses provides a config script (ncurses5-config) to assist finding ncurses. > This patch makes use of it to detect the necessary libs for linking of the > ncurses nconfig dialog. That script is not necessarily called ncurses5-config, it might

Re: [PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-02-28 Thread Yann E. MORIN
Justin, All, On Thursday 28 February 2013 j...@gentoo.org wrote: > When building ncurses with --with-termlib several symbols get moved from > libncurses.so to libtinfo.so. Thus when linking with libncurses.so, one > additionally needs to link with libtinfo.so. > > Ncurses provides a config script

[PATCH 2/2] kconfig: use config scripts to detect ncurses libs

2013-02-28 Thread jlec
From: Justin Lecher When building ncurses with --with-termlib several symbols get moved from libncurses.so to libtinfo.so. Thus when linking with libncurses.so, one additionally needs to link with libtinfo.so. Ncurses provides a config script (ncurses5-config) to assist finding ncurses. This pat