summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-06-21 20:51:46 (GMT)
committerGuido van Rossum <guido@python.org>1999-06-21 20:51:46 (GMT)
commit592305011d47f3a4a5e35bc14a2d978fd09df8d9 (patch)
treeda67b790bc4f59872f64709a51526396182ca3da /README
parentd5d55ea02e4109454ef0054a3c78489e1f2fb95c (diff)
downloadcpython-592305011d47f3a4a5e35bc14a2d978fd09df8d9.zip
cpython-592305011d47f3a4a5e35bc14a2d978fd09df8d9.tar.gz
cpython-592305011d47f3a4a5e35bc14a2d978fd09df8d9.tar.bz2
Add warning FreeBSD users of a problem with curses and termcap,
submitted by Klaus-Juergen Wolf.
Diffstat (limited to 'README')
-rw-r--r--README9
1 files changed, 9 insertions, 0 deletions
diff --git a/README b/README
index f468d23..f001342 100644
--- a/README
+++ b/README
@@ -209,6 +209,15 @@ Linux: On Linux version 1.x, once you've built Python, use it to run
-lcrypt option. Uncomment this flag in Modules/Setup, or
comment out the crypt module in the same file.
+FreeBSD 3.x and probably platforms with NCurses that use libmytinfo or
+ similar: When using cursesmodule, the linking is not done in
+ the correct order with the defaults. Remove "-ltermcap" from
+ the readline entry in Setup, and use as curses entry: "curses
+ cursesmodule.c -lmytinfo -lncurses -ltermcap" - "mytinfo" (so
+ called on FreeBSD) should be the name of the auxiliary library
+ required on your platform. Normally, it would be linked
+ automatically, but not necessarily in the correct order.
+
DEC Unix: When enabling threads, use --with-dec-threads, not
--with-thread. When using GCC, it is possible to get an
internal compiler error if optimization is used. This was