summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* configure: Make generated files read-only.Richard W.M. Jones2012-07-161-3/+3
| | | | Some of the generated files anyway.
* build: Change calls to podwrapper.sh to use $(PODWRAPPER).Richard W.M. Jones2012-07-161-0/+4
| | | | | This will allow us to easily change the location of this script in future.
* Version 1.19.19.1.19.19Richard W.M. Jones2012-07-161-1/+1
|
* Version 1.19.18.1.19.18Richard W.M. Jones2012-07-091-1/+1
|
* Version 1.19.17.1.19.17Richard W.M. Jones2012-07-061-1/+1
|
* Version 1.19.16.1.19.16Richard W.M. Jones2012-07-041-1/+1
|
* daemon: Run fsync on block devices after sync (RHBZ#836710).Richard W.M. Jones2012-07-021-0/+1
| | | | | | | | | | | | | | | | | | On Linux, sync(2) does not actually issue a write barrier, thus it doesn't force a flush of the underlying hardware write cache (or qemu's disk cache in the virtual case). This can be a problem, because libguestfs relies on running sync in the appliance, followed by killing qemu (using SIGTERM). In most cases, this is fine, because killing qemu with SIGTERM should cause it to flush out the disk cache before it exits. However we have found various bugs in qemu which cause qemu to crash while doing the flush, leaving the data unwritten (see RHBZ#836913). The solution is to issue fsync(2) to the block devices. This has a write barrier, so it ensures that qemu writes out its cache long before we get around to killing qemu.
* Version 1.19.15.1.19.15Richard W.M. Jones2012-06-291-1/+1
|
* ruby: Fix detection of library (thanks Hilko Bengen).Richard W.M. Jones2012-06-291-7/+25
| | | | | | | | | On Debian, the Ruby C extensions library isn't '-lruby', it's something like '-lruby1.8' or '-lruby-1.9.1' and these can even be parallel-installed. Fix detection so we use Ruby's own rbconfig.rb file to find the right library to use.
* ruby: Changing spacing in configure file.Richard W.M. Jones2012-06-291-5/+5
| | | | No functional change.
* ruby: Remove useless AC_SUBST in configure file.Richard W.M. Jones2012-06-291-1/+0
|
* Version 1.19.14.1.19.14Richard W.M. Jones2012-06-281-1/+1
|
* Version 1.19.13.1.19.13Richard W.M. Jones2012-06-261-1/+1
|
* Version 1.19.12.1.19.12Richard W.M. Jones2012-06-261-1/+1
|
* Version 1.19.11.1.19.11Richard W.M. Jones2012-06-251-1/+1
|
* Version 1.19.10.1.19.10Richard W.M. Jones2012-06-221-1/+1
|
* ruby: Add a replacement rb_hash_lookup function for Ruby 1.8.5.Richard W.M. Jones2012-06-221-0/+6
| | | | This function was first added to Ruby in 1.8.7.
* ruby: Fix libruby test.Richard W.M. Jones2012-06-221-3/+2
| | | | | | If -lruby was not available, this used to define HAVE_LIBRUBY=0. However this meant that the later test -n "$HAVE_LIBRUBY" would be successful, whereas it should fail in this case.
* build: Workaround for AC_PROG_SED not existing.Richard W.M. Jones2012-06-181-1/+7
| | | | This didn't exist on ancient autoconf in RHEL 5.
* Version 1.19.9.1.19.9Richard W.M. Jones2012-06-181-1/+1
|
* fuse: Add replacement for fuse_opt_add_opt_escaped.Richard W.M. Jones2012-06-181-1/+6
| | | | | | | RHEL 5-era FUSE didn't have this function. I copied the function out of upstream FUSE, since the license is compatible.
* configure: Look for mkisofs as well as genisoimage.Richard W.M. Jones2012-06-181-2/+2
| | | | For our purposes, the two tools are compatible.
* Version 1.19.8.1.19.8Richard W.M. Jones2012-06-141-1/+1
|
* tests: Add tests for extended attrs and SELinux, direct and via FUSE.Richard W.M. Jones2012-06-141-0/+1
| | | | | | | Note that the SELinux + FUSE test is disabled because of: https://bugzilla.redhat.com/show_bug.cgi?id=811217 https://bugzilla.redhat.com/show_bug.cgi?id=812798#c42
* Version 1.19.7.1.19.7Richard W.M. Jones2012-06-131-1/+1
|
* tests: Add a test which adds the maximum number of disks and uses them.Richard W.M. Jones2012-06-131-0/+1
|
* Version 1.19.6.1.19.6Richard W.M. Jones2012-06-121-1/+1
|
* Record output of qemu -device '?'.Richard W.M. Jones2012-06-121-0/+8
| | | | | This allows us to find out what qemu devices are supported at runtime.
* Require QEMU >= 1.0.Richard W.M. Jones2012-06-121-47/+21
| | | | | | | | | | | QEMU 1.0 was released at the end of 2011. Remove all the cruft about detecting broken -machine type which was only required for QEMU 0.15. This also reverts commit 30ecbf3ec2ada68f7e125a180553e31b069033b7. Even on ARM you can pass -machine accel=kvm:tcg and qemu does the right thing, so I'm not sure why we wanted to disable that.
* Remove ./configure --with-drive-if and --with-net-if options.Richard W.M. Jones2012-06-121-23/+0
| | | | | | | | | | | | These were used to select the default drive and network interface. They both default to 'virtio'. These were added back in the day when virtio was buggy, so that packagers could revert to using ide/ne2k_pci to work around distro bugs. However virtio has been stable in qemu for a very long time, so it seems unlikely that any packager would need to use these, and in any case it would be better to do this detection at runtime (cf. for virtio-scsi).
* Version 1.19.5.1.19.5Richard W.M. Jones2012-06-091-1/+1
|
* Version 1.19.4.1.19.4Richard W.M. Jones2012-06-071-1/+1
|
* Version 1.19.3.1.19.3Richard W.M. Jones2012-05-311-1/+1
|
* Version 1.19.2.1.19.2Richard W.M. Jones2012-05-271-1/+1
|
* Version 1.19.1.1.19.1Richard W.M. Jones2012-05-251-1/+1
|
* tests: Add a test of non-ASCII character fidelity on various filesystem ↵Richard W.M. Jones2012-05-251-0/+1
| | | | | | types (RHBZ#823887). Thanks Laszlo Ersek.
* Version 1.19.0.1.19.0Richard W.M. Jones2012-05-211-1/+1
|
* New stable branch: Version 1.18.0.1.18.0Richard W.M. Jones2012-05-211-2/+2
|
* Version 1.17.43.1.17.43Richard W.M. Jones2012-05-171-1/+1
|
* Version 1.17.42.1.17.42Richard W.M. Jones2012-05-131-1/+1
|
* arm: Add configure flag '--with-qemu-options'.Richard W.M. Jones2012-05-121-44/+62
| | | | | | | This flag allows extra QEMU options to be passed on the command line. This is useful mainly on arm (see the notes in the updated README file).
* configure: Fix valgrind --vgdb test.Richard W.M. Jones2012-05-121-1/+1
|
* configure: Add a comment about vmchannel_test.Richard W.M. Jones2012-05-121-2/+5
|
* Version 1.17.41.1.17.41Richard W.M. Jones2012-05-111-1/+1
|
* configure: Allow systemtap/DTrace userspace probes to be disabled.Richard W.M. Jones2012-05-111-3/+13
| | | | | | | | | './configure --disable-probes' will disable these probes. Otherwise they are autodetected as before. The <sys/sdt.h> produces lots of errors when you try to compile with these probes enabled under clang, so it is necessary to provide a way to disable them for clang users.
* configure: Replace 'echo -n' with 'AS_ECHO_N' macro (thanks Eric Blake).Richard W.M. Jones2012-05-091-13/+13
|
* Version 1.17.40.1.17.40Richard W.M. Jones2012-05-081-1/+1
|
* Version 1.17.39.1.17.39Richard W.M. Jones2012-05-031-1/+1
|
* tests: Regression test for RHBZ#701814.Richard W.M. Jones2012-05-031-0/+1
| | | | | | | | | | | | | | | | | This commit adds a tests/xml directory, and an LD_PRELOAD module which can fake arbitrary libvirt XML from an external file (and is therefore a much more flexible test than using the libvirt test:// driver alone). Also added is one regression test for: https://bugzilla.redhat.com/show_bug.cgi?id=701814 Loading the given libvirt XML using Sys::Guestfs::Lib::open_guest used to fail with the error: format parameter is empty or contains disallowed characters at /home/rjones/d/libguestfs/perl/blib/lib/Sys/Guestfs/Lib.pm line 256. Thanks to Tom Horsley for supplying the test data.
* Version 1.17.38.1.17.38Richard W.M. Jones2012-05-011-1/+1
|