search for: _9p

Displaying 3 results from an estimated 3 matches for "_9p".

Did you mean: 9p
2015 Sep 14
2
Re: Issue with python pip install
Richard, It is looking better, but still getting error - see attached log. I removed all installed packages and yum installed libguestfs libguestfs-devel (1.28.1) Then reset my git repository to 1.28.1 and then $ make clean $ ./autogen.sh --disable-erlang --disable-perl --disable-lua --disable-ruby $ make $ make -C python sdist $ cd python/dist $ sudo pip install guestfs-1.28.1.tar.gz Regards
2015 Sep 14
0
Re: Issue with python pip install
...git repository to 1.28.1 and then > > $ make clean > $ ./autogen.sh --disable-erlang --disable-perl --disable-lua --disable-ruby > $ make > $ make -C python sdist > $ cd python/dist > $ sudo pip install guestfs-1.28.1.tar.gz That's pretty close to working. We remove the *_9p functions in RHEL because they are not supportable, so if you edit guestfs-py.c by hand to remove those bindings it may work. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com Fedora Windo...
2015 Sep 14
2
Re: Issue with python pip install
Richard, I put an #ifdef around the logic in py_guestfs_mount_9p and py_guestfs_list_9p, I.e. Left the signatures but the functions just return a a NULL PyObject. It now builds and installs with pip. Thanks for all your help most appreciated. Is there a better way to do this?, #ifdefs always seem a little hacky. Regards John On 9/14/15, 12:47 PM, "Richar...