summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.10.9.Richard W.M. Jones2011-09-161-1/+1
|
* python: Newer versions want parentheses around arguments of "print"Hilko Bengen2011-09-161-2/+2
| | | | (cherry picked from commit 54911bdd325393d1f7f2861f298463c364b45469)
* configure: Add --with-extra flag to allow setting the extra version string.Richard W.M. Jones2011-09-161-9/+19
| | | | | | | | Intended use in Fedora and RHEL is to encode the release string, eg. ./configure [...] --with-extra="-%{release}" (cherry picked from commit a4db75521d6026410425187fc2c5c9cb931a69b5)
* Vesion 1.10.8.1.10.8Richard W.M. Jones2011-08-171-1/+1
|
* Version 1.10.7.1.10.7Richard W.M. Jones2011-08-071-1/+1
|
* debian: bash is required to run libtool replacement script.Richard W.M. Jones2011-08-071-1/+1
| | | | | This was failing on Debian where $(SHELL) is the minimal dash shell. (cherry picked from commit 6a98ed953b1e3b0d3251385f0ca2dd1dee80b63d)
* configure: Fix info about virt-resize when OCaml bindings are disabled.Richard W.M. Jones2011-08-071-1/+1
| | | | (cherry picked from commit e1c6d1738a2b9123dd08fb4ecff8176daf558f35)
* Version 1.10.6.1.10.6Richard W.M. Jones2011-07-271-1/+1
|
* build: Redirect ./configure errors in general to config.log.Richard W.M. Jones2011-07-271-6/+6
| | | | (cherry picked from commit 71eb0bf45649eefa1f0cd4b1372cfc2653c8e7a5)
* build: Send failed Perl test configure output to config.log.Richard W.M. Jones2011-07-271-1/+1
| | | | (cherry picked from commit 610642491a4846f45c7b233060ffde46f6ca09f0)
* Partially revert d82438431c1551610eb7d9945fa76d6387534582.Richard W.M. Jones2011-07-271-11/+1
| | | | | | | | It appears qemu-kvm does *not* require -machine accel=tcg option. That problem disappeared after upgrading seabios(!) However leave the test for qemu -help option, since that's useful to determine if qemu is completely broken or not. (cherry picked from commit 5dec7842655dd872bb0fd9fe07f6a9eab6b13bfd)
* build: Fix virtio-serial test for qemu 0.15.Richard W.M. Jones2011-07-271-1/+24
| | | | | | Now qemu 0.15 won't even start up unless the -machine accel=... option is specified. Essentially this is a regression in qemu. (cherry picked from commit d82438431c1551610eb7d9945fa76d6387534582)
* Version 1.10.5.1.10.5Richard W.M. Jones2011-07-131-1/+1
|
* Add caution subdirectory containing safety and liveness tests.Richard W.M. Jones2011-07-131-0/+1
| | | | | | Not that I'm paranoid about qemu breaking snapshots of anything like that ... (cherry picked from commit f3ada2c7653866f2529c9f18aaa99f76cd984844)
* Version 1.10.4.1.10.4Richard W.M. Jones2011-06-131-1/+1
|
* Version 1.10.3.1.10.3Richard W.M. Jones2011-05-181-1/+1
|
* configure: Sort output files in AC_CONFIG_FILES section.Richard W.M. Jones2011-05-181-21/+30
| | | | (cherry picked from commit 8ee0ad0caf2f90f4883909cd9b61c4dd6f9cffbf)
* Version 1.10.2.1.10.2Richard W.M. Jones2011-04-241-1/+1
|
* Version 1.10.11.10.1Richard W.M. Jones2011-04-181-1/+1
|
* Version 1.10.0.1.10.0Richard W.M. Jones2011-04-121-2/+2
|
* Version 1.9.18.1.9.18Richard W.M. Jones2011-04-091-1/+1
|
* Rewrite virt-resize in OCaml.Richard W.M. Jones2011-04-091-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a fairly straightforward translation of Perl virt-resize into OCaml. It is bug-for-bug and feature-for-feature identical to the Perl version, except as noted below. The motivation is to have a more solid, high-level, statically safe compiled language to go forwards with fixing some of the harder bugs in virt-resize. In particular contracts between different parts of the program are now handled by statically typed structures checked at compile time, instead of the very ad-hoc unchecked hash tables used by the Perl version. OCaml and the ocaml-pcre library (Perl-Compatible Regular Expressions bindings for OCaml) are required. Extra features in this version: - 32 bit hosts are now supported. - We try hard to handle the case where the target disk is not "clean" (ie. all zeroes). It usually works for this case, whereas the previous version would usually fail. However it is still recommended that the system administrator creates a fresh blank disk for the target before running the program. - User messages are a bit more verbose and helpful. You can turn these off with the -q (--quiet) option. There is one lost feature: - Ability to specify >= T (terabytes) sizes in command line size expressions has been removed. This probably didn't work in the Perl version. Other differences: - The first partition on the target is no longer aligned; instead we place it at the same sector as on the source. I suspect that aligning it was causing the bootloader failures. - Because it's easier, we do more sanity checking on the source disk. This might lead to more failures, but they'd be failures you'd want to know about. - The order in which operations are performed has been changed to make it more logical. The user should not notice any functional difference, but debug messages will be quite a bit different. - virt-resize is a compiled binary, not a script.
* Version 1.9.17.1.9.17Richard W.M. Jones2011-04-051-1/+1
|
* mkisofs is obsolete. Require genisoimage everywhere instead.Nikita A Menkovich2011-04-021-3/+3
|
* Pull translations from Transifex.Richard W.M. Jones2011-04-021-0/+1
| | | | New Ukrainian po-docs translation added.
* Version 1.9.16.1.9.16Richard W.M. Jones2011-04-011-1/+1
|
* Version 1.9.15.1.9.15Richard W.M. Jones2011-04-011-1/+1
|
* examples: Add virt-dhcp-address program.Richard W.M. Jones2011-03-311-0/+1
| | | | | | This is like the mythical 'virt-ifconfig'. There is not enough certainty around the right way to be doing this for us to make a full virt tool for this. Therefore the code is just an example.
* Add /etc/libguestfs-tools.conf configuration file.Richard W.M. Jones2011-03-311-0/+9
| | | | | This allows the default for --ro or --rw to be controlled for the three tools guestfish, guestmount and virt-rescue.
* Version 1.9.14.1.9.14Richard W.M. Jones2011-03-281-1/+1
|
* Version 1.9.13.1.9.13Richard W.M. Jones2011-03-241-1/+1
|
* Version 1.9.12.1.9.12Richard W.M. Jones2011-03-181-1/+1
|
* Version 1.9.11.1.9.11Richard W.M. Jones2011-03-151-1/+1
|
* RHEL5: Old pod2man didn't have --stderr or -u options.Richard W.M. Jones2011-03-111-0/+21
|
* configure: Remove unnecessary variable assignment.Richard W.M. Jones2011-03-111-1/+0
| | | | Left over from pre-virtio-serial days.
* RHEL5: Make use of 'futimens' function optional.Richard W.M. Jones2011-03-111-1/+1
|
* Version 1.9.10.1.9.10Richard W.M. Jones2011-03-081-1/+1
|
* Version 1.9.9.1.9.9Richard W.M. Jones2011-03-041-1/+1
|
* Version 1.9.8.1.9.8Richard W.M. Jones2011-02-061-1/+1
|
* Version 1.9.7.1.9.7Richard W.M. Jones2011-01-301-1/+1
|
* perl: Translate C examples into Perl and include a manual page.Richard W.M. Jones2011-01-301-1/+1
|
* Version 1.9.6.1.9.6Richard W.M. Jones2011-01-221-1/+1
|
* Version 1.9.51.9.5Richard W.M. Jones2011-01-181-1/+1
|
* Version 1.9.4.1.9.4Richard W.M. Jones2011-01-151-1/+1
|
* Version 1.9.3.1.9.3Richard W.M. Jones2011-01-111-1/+1
|
* Version 1.9.2.1.9.2Richard W.M. Jones2011-01-031-1/+1
|
* Version 1.9.1.1.9.1Richard W.M. Jones2010-12-311-2/+2
|
* Version 1.9.0.1.9.0Richard W.M. Jones2010-12-191-1/+1
|
* Prepare for next stable branch: version 1.8.0.Richard W.M. Jones2010-12-191-2/+2
|
* appliance: Don't hard-code febootstrap --exclude parameters.Richard W.M. Jones2010-12-191-1/+2
| | | | | Create a separate file 'excludelist.in' that contains these regular expressions, and process it the same way as packagelist.in.