On Wed Jul 09 18:57:43 2008, [EMAIL PROTECTED] wrote: > Since I closed this ticket in January, more code has been added. > Tonight, while writing unit tests for internal subroutine > _handle_ncurses_need(), I noticed the following lines: > > if ( $osname =~ /mswin32/i ) { > if ( $cc =~ /^gcc/i ) { > $conf->data->add( ' ', libs => '-lncuses' ); ### <-- ??? > } > > Feature or bug?
I haven't had any direct responses from Win32 folks. But since this is GNU code I can examine the source code. I downloaded the source and grepped: find . -type f | xargs grep -n ncuses ... and, predictably, got nothing. But if instead grepped for '-lncurses', I got plenty of hits, many in Makefiles. > > If the latter, we'll need to fix in config/auto/readline.pm and > t/steps/auto_readline-02.t. > So I'll be making these changes and resolving the ticket. kid51