]> xenbits.xensource.com Git - people/jgross/xen.git/commitdiff
tools/python: drop libxenguest from setup.py
authorJuergen Gross <jgross@suse.com>
Sun, 23 Aug 2020 08:00:12 +0000 (10:00 +0200)
committerJuergen Gross <jgross@suse.com>
Fri, 28 Aug 2020 15:00:19 +0000 (17:00 +0200)
There is not a single wrapper for a libxenguest function defined.
So drop libxenguest from tools/python/setup.py.

Signed-off-by: Juergen Gross <jgross@suse.com>
Acked-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
tools/python/setup.py

index 8faf1c0ddc9093cec490a8b7211586347a01c9b2..44696b3998ebd126c2682c81310abb224e50cac3 100644 (file)
@@ -21,8 +21,8 @@ xc = Extension("xc",
                                       PATH_LIBXC + "/include",
                                       "xen/lowlevel/xc" ],
                library_dirs       = [ PATH_LIBXC ],
-               libraries          = [ "xenctrl", "xenguest" ],
-               depends            = [ PATH_LIBXC + "/libxenctrl.so", PATH_LIBXC + "/libxenguest.so" ],
+               libraries          = [ "xenctrl" ],
+               depends            = [ PATH_LIBXC + "/libxenctrl.so" ],
                extra_link_args    = [ "-Wl,-rpath-link="+PATH_LIBXENTOOLLOG ],
                sources            = [ "xen/lowlevel/xc/xc.c" ])