[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-07 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: merged to py3k r66297 + r66298 backported to release25-maint r66299 + r66300. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-07 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: fixed in trunk r66295/r66296. merging and backporting now... -- versions: +Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> __

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-07 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: eek. not quite fixed then :) i'll retest and take care of it. -- resolution: accepted -> status: closed -> open ___ Python tracker <[EMAIL PROTECTED]> __

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-07 Thread Roumen Petrov
Roumen Petrov <[EMAIL PROTECTED]> added the comment: I realize too late that in my patch line "if test $py_cv_lib_readline = !yes; then" is not correct. :( It has to be "if test $py_cv_lib_readline = no; then", i.e. s/!yes/no/'. ___ Python tracker <[EMAIL PROT

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: merged into py3k branch in r66285. backported to release25-maint in r66288 and r66289. -- resolution: -> accepted status: open -> closed versions: -Python 3.0 ___ Python tracker <[EMAIL PROTEC

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: fixed in trunk r66283 (followed by rerunning autoconf to generate a new configure script in r66284). -- keywords: -needs review versions: -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-06 Thread Henry Precheur
Henry Precheur <[EMAIL PROTECTED]> added the comment: According to config.log the readline functions are correctly detected. I tested the patch with Python 2.5 & 2.6 and both work with the test I posted on issue 3645. ___ Python tracker <[EMAIL PROTECTED]>

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: I've attached an updated patch. Not much changed other than the better diff -u format, a couple grammar errors in comments and inclusion of the new autoconf generated configure script. It works fine for me on ubuntu hardy 32bit, CentOS 5.x

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-09-06 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: when committing this one, the platform specific openbsd/amd64 fix I committed for this in issue 3645 should probably be verified as unneeded and undone. marking as release blocker as we should make sure this autoconf update goes in before t

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-08-27 Thread Roumen Petrov
Roumen Petrov <[EMAIL PROTECTED]> added the comment: In the configure{.in} exist another bug: -- AC_CHECK_LIB(readline, readline) if test "$ac_cv_have_readline_readline" = no then AC_CHECK_LIB(termcap, readline) fi -- but "grep _readline_readline configure" show that var

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-02-23 Thread A.M. Kuchling
A.M. Kuchling added the comment: The patch looks reasonable. I'll commit it on Monday when I'm on a machine with a more up-to-date autoconf. -- keywords: +64bit __ Tracker <[EMAIL PROTECTED]> ___

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-02-23 Thread A.M. Kuchling
Changes by A.M. Kuchling: -- assignee: -> akuchling nosy: +akuchling __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsub

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-01-19 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Build priority: -> normal versions: +Python 2.6 __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-

[issue1204] readline configuration for shared libs w/o curses dependencies

2008-01-19 Thread Mike Beachy
Mike Beachy added the comment: Urgh. Re-reading this, I could barely understand what the hell I was saying. The problem: 64 bit compiles will dump core when readline is used if they don't properly identify the presence of readline and use the system headers. The solution: fix autoconf to proper

[issue1204] readline configuration for shared libs w/o curses dependencies

2007-09-25 Thread Martin v. Löwis
Changes by Martin v. Löwis: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1204] readline configuration for shared libs w/o curses dependencies

2007-09-25 Thread Mike Beachy
New submission from Mike Beachy: For RHEL 3 (and it also appears RHEL 4 and 5) the libreadline shared lib has no specified lib requirement that satisfies the tgetent and related symbols. (These symbols are provided by ncursesw, ncurses, curses, termcap as noted in the python setup.py.) The config