diff options
author | Guido van Rossum <guido@python.org> | 1997-08-05 21:27:50 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-05 21:27:50 (GMT) |
commit | 0969d362751bd779fc6618d70ddd6c76e8cbc12c (patch) | |
tree | 2a03665642f3e74b7b4e58e758f6529be14923be /Modules/Setup.in | |
parent | 570278be6ea5e3981d20f9ffcfeec27d43cf9770 (diff) | |
download | cpython-0969d362751bd779fc6618d70ddd6c76e8cbc12c.zip cpython-0969d362751bd779fc6618d70ddd6c76e8cbc12c.tar.gz cpython-0969d362751bd779fc6618d70ddd6c76e8cbc12c.tar.bz2 |
New mechanism for GNU readline interface, via module
Diffstat (limited to 'Modules/Setup.in')
-rw-r--r-- | Modules/Setup.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/Setup.in b/Modules/Setup.in index 6acfa88..bb06b11 100644 --- a/Modules/Setup.in +++ b/Modules/Setup.in @@ -120,6 +120,16 @@ signal signalmodule.c # signal(2) #*shared* +# GNU readline. Unlike previous Python incarnations, GNU readline is +# now incorporated in an optional module, configured in the Setup file +# instead of by a configure script switch. You may have to insert a +# -L option pointing to the directory where libreadline.* lives, +# and you may have to change -ltermcap to -ltermlib or perhaps remove +# it, depending on your system -- see the GNU readline instructions. +# It's okay for this to be a shared library, too. + +#readline readline.c -lreadline -ltermcap + # Modules that should always be present (non UNIX dependent): |