From ab4b82c3299778ff259945141349a4748b1b3ded Mon Sep 17 00:00:00 2001 From: Jim Fehlig Date: Mon, 7 Jan 2013 10:15:56 -0700 Subject: [PATCH] build: Add libxenctrl to LIBXL_LIBS Commit dfa1e1dd removed libxenctrl from LIBXL_LIBS, but the libxl driver uses a symbol from this library. Explicitly link with libxenctrl instead of relying on the build system to support implicit DSO linking. (cherry picked from commit 68e7bc4561783d742d1e266b7f1f0e3516d5117e) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c3fa6edcdc..66b384b1f1 100644 --- a/configure.ac +++ b/configure.ac @@ -717,7 +717,7 @@ if test "$with_libxl" != "no" ; then LIBS="$LIBS $LIBXL_LIBS" AC_CHECK_LIB([xenlight], [libxl_ctx_alloc], [ with_libxl=yes - LIBXL_LIBS="$LIBXL_LIBS -lxenlight" + LIBXL_LIBS="$LIBXL_LIBS -lxenlight -lxenctrl" ],[ if test "$with_libxl" = "yes"; then fail=1 -- 2.47.2