diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1999-06-18 11:42:21 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1999-06-18 11:42:21 +0000 |
commit | 1722c439ae157c0a9bd709f6f34ba586023530ca (patch) | |
tree | c52afafd02477bf8e9a9d785c1720a7eec19ce7f /lang/python21 | |
parent | Only use trimdomain() if __FreeBSD_version > 320000 (diff) |
Link some modules against libmytinfo to pick up a working tputs().
Noticed by: Klaus-Jürgen Wolf <kjwolf@online.de>
Notes
Notes:
svn path=/head/; revision=19544
Diffstat (limited to 'lang/python21')
-rw-r--r-- | lang/python21/files/Setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python21/files/Setup b/lang/python21/files/Setup index ab99f09c16a5..5eacd6f2b60f 100644 --- a/lang/python21/files/Setup +++ b/lang/python21/files/Setup @@ -116,7 +116,7 @@ signal signalmodule.c # signal(2) # 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 +readline readline.c -lmytinfo -lreadline -ltermcap # Modules that should always be present (non UNIX dependent): @@ -307,7 +307,7 @@ syslog syslogmodule.c # syslog daemon interface # -lncurses instead of -lcurses; on SunOS 4.1.3, insert -I/usr/5include # -L/usr/5lib before -lcurses). -curses cursesmodule.c -lncurses -ltermcap +curses cursesmodule.c -lmytinfo -lncurses -ltermcap |