summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2015-03-06Post-release version bump to 0.0.3Daniel P. Berrange1-1/+1
2014-01-30virtxml: Rename to virt-designerMichal Privoznik1-1/+1
Our example utility is called virtxml. However with Cole's latest work, where he introduced virt-xml binary for editing libvirt XML on CLI [1]. It would be better if our example is called virt-designer so we don't confuse users. 1: https://www.redhat.com/archives/libvir-list/2014-January/msg01226.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
2013-06-06Implement gvir_designer_domain_add_graphics()Christophe Fergeau1-1/+1
This allows to choose between SPICE, VNC or a local display, which will go through SDL or 'desktop' depending on the hypervisor.
2013-04-22Add gvir_designer_domain_get_supported_devices()Christophe Fergeau1-1/+1
This method gathers the list of devices supported by the hypervisor, and intersects this list with the list of devices supported by the OS, natively or using a driver (added with gvir_designer_domain_add_driver()). The lists can be filtered if needed. This commit changes gvir_designer_domain_get_supported_disk_bus_types() to make use of that new helper. This will slightly change its behaviour as before this commit, it will consider any block devices from GVirDesignerDomain::os, while after this commit, it will only consider block devices from GVirDesignerDomain::os that are supported by GVirDesignerDomain::platform. This will cause a change for example for OSes that only list virtio-block as a supported block device, such as Fedora as described in libosinfo v0.2.6-9-g7a8deb4
2013-04-22Set min versions from configure in .spec fileChristophe Fergeau1-1/+1
Minimum libvirt-gobject, libvirt-gconfig and libosinfo versions are set in configure.ac, it's better not to duplicate them in libvirt-designer.spec.in, it's too easy to get them out of sync.
2013-04-22Automatically set min versions in READMEChristophe Fergeau1-0/+5
Minimum libvirt-gconfig and libosinfo versions appear in both README and configure.ac, which means they easily get out of sync. This commit renames README to README.in so that we can substitute the configure.ac version in the README file. This way they are always in sync.
2013-04-19Increment soname + symbol versionsDaniel P. Berrange1-1/+1
The ABI of some methods was explicitly broken, so the soname and symbol versions must all be incremented to reflect the ABI incompatibility
2013-04-19Adapt saner libtool versioning scheme from libvirtDaniel P. Berrange1-1/+39
The current way libtool versioning is calculated has a timebomb when the package version number changes to 1.0.0, which will cause the library soname to change. Adapt to the latest libvirt macros for libtool versioning, which use an explicit variable LIBVIRT_DESIGNER_SONUM setting for changing soname.
2013-04-18Add Vala APIZeeshan Ali (Khattak)1-0/+37
This is mostly (modified) copy&paste from libvirt-glib.
2013-01-23virtxml: Switch to use osinfo_db_identify_mediaChristophe Fergeau1-1/+1
virtxml is using osinfo_db_guess_os_from_media for that which is deprecated.
2012-10-09Post release version bumpDaniel P. Berrange1-1/+1
2012-09-18Create basic documentationMichal Privoznik1-0/+1
In fact, it's only bare skeleton for gtkdoc
2012-09-17virtxml: Detect platform from libvirt connection URIMichal Privoznik1-1/+1
as in nearly all cases users will install the guest on current libvirt we've just obtained capabilities from.
2012-09-11virtxml: Drop direct libvirt usageMichal Privoznik1-3/+21
and switch to libvirt-gobject when connecting to libvirtd and fetching capabilities.
2012-09-10examples: Create an example of usage programMichal Privoznik1-1/+10
2012-07-30Import basic library frameworkDaniel P. Berrange1-0/+65
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>