Skip to content
Snippets Groups Projects
Commit f3fdef3c authored by Guido Günther's avatar Guido Günther
Browse files

Install systemtap tapsets on Linux

parent c4d72f29
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,7 @@ Build-Depends: cdbs (>= 0.4.90~),
libnetcf-dev [linux-any],
libsanlock-dev [linux-any],
libaudit-dev [linux-any],
systemtap-sdt-dev [linux-any],
# for --with-storage-sheepdog
sheepdog [linux-any],
# For "make check"
......@@ -70,7 +71,7 @@ Recommends: netcat-openbsd,
iproute,
parted,
pm-utils
Suggests: policykit-1, radvd, auditd
Suggests: policykit-1, radvd, auditd, systemtap
Description: programs for the libvirt library
Libvirt is a C toolkit to interact with the virtualization capabilities
of recent versions of Linux (and other OSes). The library aims at providing
......
......@@ -9,3 +9,4 @@ usr/share/augeas/*
usr/share/libvirt/*
usr/share/man/man8/*
lib/systemd/system
usr/share/systemtap
usr/lib/libvirt.so.*
usr/lib/libvirt-qemu.so.*
......@@ -32,6 +32,7 @@ ifneq (,$(findstring $(DEB_HOST_ARCH_OS), linux))
WITH_SANLOCK = --with-sanlock
WITH_INIT_SCRIPT = --with-init-script=systemd
WITH_AUDIT = --with-audit
WITH_DTRACE = --with-dtrace
ifneq (,$(findstring $(DEB_HOST_ARCH), amd64 i386 ia64 mips mipsel powerpc))
WITH_NUMA = --with-numactl
else
......@@ -58,6 +59,7 @@ else
WITH_NETCF = --without-netcf
WITH_INIT_SCRIPT = --with-init-script=none
WITH_AUDIT = --without-audit
WITH_DTRACE = --without-dtrace
endif
DEB_BUILDDIR := $(CURDIR)/debian/build
......@@ -88,7 +90,8 @@ DEB_CONFIGURE_EXTRA_FLAGS := \
$(WITH_NETCF) \
$(WITH_XEN) \
$(WITH_VBOX) \
$(WITH_LXC)
$(WITH_LXC) \
$(WITH_DTRACE)
DEB_COMPRESS_EXCLUDE = .o event-test hellolibvirt info1 suspend
DEB_PYTHON_SETUP_CMD = /dev/null
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment