Comment 1 for bug 806186

Revision history for this message
Ralph Corderoy (ralph-inputplus) wrote :

Opening that library in Python works on this 10.10 64-bit Ubuntu. There
was already a symbolic link in place but it points to somewhere
different to the one created above.

    $ strace -e open python -c '
            import ctypes; print ctypes.cdll.LoadLibrary("libX11.so")
        ' 2>&1 |
    > grep X11
    open("/usr/lib/libX11.so", O_RDONLY) = 3
    <CDLL 'libX11.so', handle 1042fb0 at 7f8d35b4ae50>
    $ ls -l /usr/lib/libX11.so
    lrwxrwxrwx 1 root root 15 2011-10-30 00:43 /usr/lib/libX11.so -> libX11.so.6.3.0
    $ ls -l /usr/lib/libX11.so.6.3.0
    -rw-r--r-- 1 root root 1269216 2010-05-13 17:06 /usr/lib/libX11.so.6.3.0
    $