> On Wed, Aug 25, 2010 at 10:01:49AM +0200, Landry Breuil wrote:
> > On Wed, Aug 25, 2010 at 08:48:05AM +0100, Nicholas Marriott wrote:
> > > Hi
> > >
> > > On Tue, Aug 24, 2010 at 11:05:46PM +0200, Landry Breuil wrote:
> > > > On Mon, Aug 23, 2010 at 01:04:25PM +0000, Christian Weisgerber wrote:
> > > > > Landry Breuil <landry@rhaalovely.net> wrote:
> > > > >
> > > > > > >
http://nicm.ath.cx/~nicholas/ncursesw.tar.gz
> > > > > >
> > > > > > I'll run a bulk with it if noone beats me to it.
> > > > >
> > > > > Here's a list of candidates that are likely to be affected:
> > > > >
> > > > > audio/herrie.log:cc -c ./src/audio_file.c -O2 -pipe -I/usr/local/include -DAPP_NAME=\"herrie\" -DAPP_VERSION=\"2.2\" -I/usr/local/include -I/usr/local/include/ncursesw -I/usr/local/include/ncurses -DCURSES_HEADER=\<ncurses.h\> -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -pthread -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -DBUILD_HTTP -DBUILD_SCROBBLER -I/usr/local/include -DBUILD_MP3 -DBUILD_RES_INIT -DBUILD_SNDFILE -DBUILD_NLS -DBUILD_VORBIS -DBUILD_AO -o audio_file.o
> > > > > audio/ncmpc.log:checking for initscr in -lncursesw... no
> > > > > audio/pms.log:checking for working ncursesw... no
> > > > > comms/c3270.log:checking for newterm in -lncursesw... no
> > > > > databases/mysql.log:checking for tgetent in -lncursesw... no
> > > > > devel/tig.log:checking for ncursesw/ncurses.h... no
> > > > > editors/zile.log:checking for working ncursesw... no
> > > > > games/clines.log:checking for initscr in -lncursesw... no
> > > > > graphics/libcaca.log:checking for initscr in -lncursesw... no
> > > > > lang/ghc.log:checking for setupterm in -lncursesw... no
> > > > > lang/swi-prolog.log:checking for main in -lncursesw... no
> > > > > mail/abook.log:checking for initscr in -lncursesw... no
> > > > > mail/mutt/snapshot.log:checking for waddnwstr in -lncursesw... no
> > > > > mail/mutt/stable.log:checking for waddnwstr in -lncursesw... no
> > > > > misc/dialog.log:checking if you want the wide-curses features... no
> > > > > misc/lifelines.log:checking for tparm in -lncursesw... no
> > > >
> > > > Fails with ../../src/hdrs/mycurses.h:8:29: error: ncursesw/curses.h: No
> > > > such file or directory
> > >
> > > I don't think we're going to install this so this needs to be fixed in
> > > the port I guess.
> >
> > Yes probably.
> >
> > > >
> > > > > net/mcabber.log:checking for waddnwstr in -lncursesw... no
> > > > > net/pidgin.log:checking for initscr in -lncursesw... no
> > > >
> > > > fails because it looks for a 'get_wch' #define in ncurses.h
> > > > all depending ports don't build.. should be wget_wch instead ?
> > >
> > > Hmm. get_wch is a macro but it should be there. Does it define
> > > _XOPEN_SOURCE_EXTENDED?
> >
> > The configure test run is more or less:
> >
> > #define _XOPEN_SOURCE_EXTENDED
> > #include </usr/include/ncurses.h>
> >
> > int
> > main ()
> > {
> > #ifndef get_wch
> > # error get_wch not found!
> > #endif
> > ;
> > return 0;
> > }
> >
> > conftest.c:126:8: error: #error get_wch not found!
>
> Odd, because if I run this test it is fine. Maybe it is defining
> NCURSES_NOMACROS somewhere, although that would seem silly if it is
> going to do this test...
>
> >
> > Run make configure in net/pidgin for more details..
>
> I'll try it once I get home from work.