[PATCH v3 11/38] tools/python: drop libxenguest from setup.py

Juergen Gross posted 38 patches 5 years, 5 months ago
Only 37 patches received!
There is a newer version of this series
[PATCH v3 11/38] tools/python: drop libxenguest from setup.py
Posted by Juergen Gross 5 years, 5 months ago
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>
---
 tools/python/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/python/setup.py b/tools/python/setup.py
index 8faf1c0ddc..44696b3998 100644
--- a/tools/python/setup.py
+++ b/tools/python/setup.py
@@ -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" ])
 
-- 
2.26.2


Re: [PATCH v3 11/38] tools/python: drop libxenguest from setup.py
Posted by Marek Marczykowski-Górecki 5 years, 5 months ago
On Sun, Aug 23, 2020 at 11:34:52AM +0200, Juergen Gross wrote:
> 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 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tools/python/setup.py b/tools/python/setup.py
> index 8faf1c0ddc..44696b3998 100644
> --- a/tools/python/setup.py
> +++ b/tools/python/setup.py
> @@ -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" ])
>  

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?