src: Add DMA localagent
[barometer.git] / src / dma / vendor / github.com / libvirt / libvirt-go / FAQ.md
1 #libvirt-go
2
3 ##FAQ - Frequently asked questions
4
5 If your question is a good one, please ask it as a well-formatted patch to this
6 repository, and we'll merge it along with the answer.
7
8 ###Why does this fail when added to my project in travis?
9
10 This lib requires a newish version of the libvirt-dev library to compile. These
11 are only available in the newer travis environment. You can add:
12
13 ```
14 sudo: true
15 dist: trusty
16 install: sudo apt-get install -y libvirt-dev
17 ```
18
19 to your `.travis.yaml` file to avoid these errors.