[root@threads root]# XAUTHORITY=/home/cturner/.Xauthority redhat-config-users
Traceback (most recent call last):
File "/usr/share/redhat-config-users/redhat-config-users.py", line 25, in ?
import libuser
ImportError: /usr/lib/python2.2/site-packages/libusermodule.so: undefined
symbol: PyUnicodeUCS4_AsUTF8String
looks like no other modules reference this symbol, just the shared lib for r-c-u.
Confirmed that rebuilding libuser and pygtk2 solves the problem.
libxml2 is clean.
We'll probably have to find other packages that installed stuff under
/usr/lib/python2.2/site-packages/ and see if anything else is broken.
nm will tell you if any other files have the symbol:
find /usr/lib/python2.2/ -name '*.so' | xargs nm | grep PyUnicodeUCS4_AsUTF8String
nothing else shows these on my 7.3 box; I think this may be the only one
[root@threads root]# XAUTHORITY=/home/cturner/.Xauthority redhat-config-users Traceback (most recent call last): File "/usr/share/redhat-config-users/redhat-config-users.py", line 25, in ? import libuser ImportError: /usr/lib/python2.2/site-packages/libusermodule.so: undefined symbol: PyUnicodeUCS4_AsUTF8String looks like no other modules reference this symbol, just the shared lib for r-c-u.