diff options
| author | Paul Durrant <paul.durrant@citrix.com> | 2017-03-07 10:55:33 +0000 |
|---|---|---|
| committer | Stefano Stabellini <sstabellini@kernel.org> | 2017-04-21 12:39:36 -0700 |
| commit | da8090ccb7735aed5a46ce27dfbe8486cfce61f5 (patch) | |
| tree | c4283a88e587ba32843b91819857ed3b2342fb09 | |
| parent | 8f25e7544150abd4bfd4ef35fe152c049b5ea5e7 (diff) | |
| download | focaccia-qemu-da8090ccb7735aed5a46ce27dfbe8486cfce61f5.tar.gz focaccia-qemu-da8090ccb7735aed5a46ce27dfbe8486cfce61f5.zip | |
configure: detect presence of libxendevicemodel
This patch adds code in configure to set CONFIG_XEN_CTRL_INTERFACE_VERSION to a new value of 490 if libxendevicemodel is present in the build environment. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Signed-off-by: Stefano Stabellini <sstabellini@kernel.org> Reviewed-by: Anthony Perard <anthony.perard@citrix.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
| -rwxr-xr-x | configure | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/configure b/configure index 3291603844..e3335478cc 100755 --- a/configure +++ b/configure @@ -1976,7 +1976,7 @@ fi if test "$xen" != "no" ; then xen_libs="-lxenstore -lxenctrl -lxenguest" - xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn" + xen_stable_libs="-lxencall -lxenforeignmemory -lxengnttab -lxenevtchn" # First we test whether Xen headers and libraries are available. # If no, we are done and there is no Xen support. @@ -1999,6 +1999,25 @@ EOF # Xen unstable elif cat > $TMPC <<EOF && +#undef XC_WANT_COMPAT_DEVICEMODEL_API +#define __XEN_TOOLS__ +#include <xendevicemodel.h> +int main(void) { + xendevicemodel_handle *xd; + + xd = xendevicemodel_open(0, 0); + xendevicemodel_close(xd); + + return 0; +} +EOF + compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs" + then + xen_stable_libs="-lxendevicemodel $xen_stable_libs" + xen_ctrl_version=490 + xen=yes + elif + cat > $TMPC <<EOF && /* * If we have stable libs the we don't want the libxc compat * layers, regardless of what CFLAGS we may have been given. |