Codebase list libvirt / 488910d
Enable numad support Thanks: Guilhem Moulin Closes: #843863 Guido Günther 7 years ago
4 changed file(s) with 33 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
3333 libyajl-dev,
3434 libpcap0.8-dev,
3535 libnuma-dev [amd64 arm64 i386 ia64 mips mipsel powerpc ppc64 ppc64el],
36 numad [amd64 arm64 i386 ia64 mips mipsel powerpc ppc64 ppc64el],
3637 radvd [linux-any],
3738 libnetcf-dev (>= 1:0.2.3-3~) [linux-any],
3839 libsanlock-dev [linux-any],
105106 netcat-openbsd,
106107 Suggests:
107108 libvirt-daemon-system,
109 numad,
108110 Description: Virtualization daemon
109111 Libvirt is a C toolkit to interact with the virtualization capabilities
110112 of recent versions of Linux (and other OSes). The library aims at providing
0 From: =?utf-8?q?Guido_G=C3=BCnther?= <agx@sigxcpu.org>
1 Date: Sat, 12 Nov 2016 14:24:53 +0100
2 Subject: configure: Prefer /usr/bin over /bin for numad
3
4 This makes sure the daemon is found in /usr/bin even with usrmerge
5 installed during build (where /bin/ is symlinked to /usr/bin) but not on
6 the system that runs the binary.
7
8 Submitted-By: Guilhem Moulin
9 ---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/configure.ac b/configure.ac
14 index a17874b..565a2cb 100644
15 --- a/configure.ac
16 +++ b/configure.ac
17 @@ -1501,7 +1501,7 @@ AC_ARG_WITH([numad],
18 if test "$with_numad" != "no" ; then
19 fail=0
20
21 - AC_PATH_PROG([NUMAD], [numad], [], [/bin:/usr/bin:/usr/sbin])
22 + AC_PATH_PROG([NUMAD], [numad], [], [/usr/bin:/bin:/usr/sbin])
23
24 if test "$with_numad" = "check"; then
25 test "$with_numactl" = "yes" || fail=1
1414 virt-aa-helper-apparmor-allow-usr-share-OVMF-too.patch
1515 Set-defaults-for-zfs-tools.patch
1616 Unbreak-rebuilding-docs-with-release-tarballs.patch
17 configure-Prefer-usr-bin-over-bin-for-numad.patch
4444 WITH_DTRACE = --without-dtrace
4545 endif
4646 ifneq (,$(findstring $(DEB_HOST_ARCH), amd64 arm64 i386 ia64 mips mipsel powerpc ppc64el))
47 WITH_NUMA = --with-numactl
48 else
49 WITH_NUMA = --without-numactl
47 WITH_NUMA = --with-numactl --with-numad
48 else
49 WITH_NUMA = --without-numactl --without-numad
5050 endif
5151 ifneq (,$(findstring $(DEB_HOST_ARCH), ia64))
5252 WITH_LXC = --without-lxc
6767 WITH_MACVTAP = --without-macvtap
6868 WITH_NETWORK = --without-network
6969 WITH_LXC = --without-lxc
70 WITH_NUMA = --without-numactl
70 WITH_NUMA = --without-numactl --without-numad
7171 WITH_NETCF = --without-netcf
7272 WITH_INIT_SCRIPT = --with-init-script=none
7373 WITH_SYSTEMD = --without-systemd-daemon