Scott Sipe wrote: > Running current updated today. I tried running Fetchmailconf (for the fi= > rst=20 > time) and this is the message I get: > > Traceback (most recent call last): > File "/usr/local/libexec/fetchmailconf.bin", line 9, in ? > from Tkinter import * > File "/usr/local/lib/python2.2/lib-tk/Tkinter.py", line 35, in ? > import _tkinter # If this fails your Python may not be configured for= > Tk > ImportError: /usr/local/lib/libtcl83.so.1: Undefined symbol "__xuname" > > I've rebuit fetchmail, python, Tk, Tcl, and py-tkinter, and still get thi= > s. =20 > Apologies if this isn't a current issue. > > Any ideas?
First of all, check this: peter@overcee[2:06pm]~-104> objdump --dynamic-syms /usr/lib/libc.so.5 | grep __xuname 0005d4a0 g DF .text 00000361 __xuname Secondly, I'll bet you have got a 4.x binary involved in there somewhere, and whatever is generating this message is happening because the main executable is being linked against libc.so.4 (which doesn't have __xuname). Its a bit hard to see what is actually being executed from your traceback, but I'm guessing that it is /usr/local/libexec/fetchmailconf.bin. If so, that is a python script, and it runs "python" from your $PATH. Try 'which python' or 'type python' to find out. Assuming it is /usr/local/bin/python, try: ldd /usr/local/bin/python and see if it is using libc.so.4 or libc.so.5. If it is using libc.so.4, then that is your problem.. > > thanks, > scott > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message > Cheers, -Peter -- Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message