python2.0 and redhat 7.0 (new issue)

Courageous jkraska1 at san.rr.com
Tue Nov 14 20:57:26 EST 2000


>/usr/src/redhat/BUILD/Python-2.0/Modules/./posixmodule.c:1729: undefined reference to `forkpty'
>collect2: ld returned 1 exit status
>make[3]: *** [glimmer] Error 1
>
>[snip rest of make's recurisve return with error]
>
>Any suggestions?

The following commands and variants are your friends:

find / -name "*.h" -exec grep forkpty {} \; -print

You might also try typing nm on a .a or .so file and see
what you get. You can combin nm with grep and a script
to exaustively search all libraries for a global function
definition, for example, even if it's not to be found in any
header file.


C//





More information about the Python-list mailing list