summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.18.4.1.18.4stable-1.18Richard W.M. Jones2012-07-071-1/+1
|
* daemon: Run fsync on block devices after sync (RHBZ#836710).Richard W.M. Jones2012-07-061-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. (cherry picked from commit c0a3c9ce70b98171e737e49e6dccc4457963f2ec)
* ruby: Fix detection of library (thanks Hilko Bengen).Richard W.M. Jones2012-07-061-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. (cherry picked from commit cba49169094f04dead9b165b6b5991afa92132ff)
* ruby: Changing spacing in configure file.Richard W.M. Jones2012-07-061-5/+5
| | | | | No functional change. (cherry picked from commit b07d0968823d008776345a1c724713d2320e1571)
* ruby: Remove useless AC_SUBST in configure file.Richard W.M. Jones2012-07-061-1/+0
| | | | (cherry picked from commit b9f858e5eefa0d2abae5ff0a61a39b0d34334bc1)
* Version 1.18.3.1.18.3Richard W.M. Jones2012-06-281-1/+1
|
* ruby: Add a replacement rb_hash_lookup function for Ruby 1.8.5.Richard W.M. Jones2012-06-281-0/+6
| | | | | This function was first added to Ruby in 1.8.7. (cherry picked from commit 8098d062b4cb70defd4aecba0ba8cd75cf893751)
* ruby: Fix libruby test.Richard W.M. Jones2012-06-281-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. (cherry picked from commit 823ba05ebd8f1a12574a3f154aaf7c8b4f2aeeac)
* Version 1.18.2.1.18.2Richard W.M. Jones2012-06-211-1/+1
|
* build: Workaround for AC_PROG_SED not existing.Richard W.M. Jones2012-06-211-1/+7
| | | | | This didn't exist on ancient autoconf in RHEL 5. (cherry picked from commit 489da3ccdf96e995d3f53fe68eced37b16baa1d2)
* fuse: Add replacement for fuse_opt_add_opt_escaped.Richard W.M. Jones2012-06-211-1/+6
| | | | | | | | RHEL 5-era FUSE didn't have this function. I copied the function out of upstream FUSE, since the license is compatible. (cherry picked from commit 4846b84476015874d569c14c2c30fcd71aa4d54c)
* configure: Look for mkisofs as well as genisoimage.Richard W.M. Jones2012-06-211-2/+2
| | | | | For our purposes, the two tools are compatible. (cherry picked from commit 87de36670108a19b832e8f5ded8d413e7b575d70)
* Version 1.18.1.1.18.1Richard W.M. Jones2012-06-011-1/+1
|
* tests: Add a test of non-ASCII character fidelity on various filesystem ↵Richard W.M. Jones2012-06-011-0/+1
| | | | | | | types (RHBZ#823887). Thanks Laszlo Ersek. (cherry picked from commit 8e8a5764293d1b6bc3dbfb9409722e4c13384aec)
* 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
|
* Version 1.17.37.1.17.37Richard W.M. Jones2012-05-011-1/+1
|
* Add gettext support for OCaml tools (virt-resize, virt-sparsify, virt-sysprep).Richard W.M. Jones2012-05-011-0/+89
| | | | | | | | Note that this support is optional: To enable it, install the ocaml-gettext library from http://forge.ocamlcore.org/projects/ocaml-gettext . If this library is not installed, then configure detects this and inserts dummy gettext functions that do nothing.
* Remove gettextize.Richard W.M. Jones2012-05-011-4/+20
| | | | | Replace the sociopathic nonsense in gettextize with a simple Makefile.am which does the same ... and is faster.
* configure: There are now more OCaml tools than just virt-resize.Richard W.M. Jones2012-04-301-1/+1
| | | | | virt-resize, virt-sparsify, virt-sysprep are all OCaml tools, so change what is printed in the report.
* configure: Comment fix.Richard W.M. Jones2012-04-301-2/+2
|
* Move 'libguestfs.pc' (pkgconfig file) to src/ directory.Richard W.M. Jones2012-04-301-1/+1
| | | | Since it describes the C library, it's better in the src/ directory.
* Version 1.17.36.1.17.36Richard W.M. Jones2012-04-261-1/+1
|
* Version 1.17.35.1.17.35Richard W.M. Jones2012-04-251-1/+1
|
* New btrfs APIs.Richard W.M. Jones2012-04-251-0/+1
| | | | | | | | | | | | | | | | Bind the easy parts of the 'btrfs' program. The new APIs are: btrfs-device-add: add devices to a btrfs filesystem btrfs-device-delete: remove devices from a btrfs filesystem btrfs-filesystem-sync: sync a btrfs filesystem btrfs-filesystem-balance: balance a btrfs filesystem btrfs-subvolume-create: create a btrfs snapshot btrfs-subvolume-delete: delete a btrfs snapshot btrfs-subvolume-list: list btrfs snapshots and subvolumes btrfs-subvolume-set-default: set default btrfs subvolume btrfs-subvolume-snapshot: create a writable btrfs snapshot
* Version 1.17.34.1.17.34Richard W.M. Jones2012-04-241-1/+1
|
* Version 1.17.33.1.17.33Richard W.M. Jones2012-04-221-1/+1
|
* configure: Test for tgetent, tputs and 'UP' symbols (from libtinfo).Richard W.M. Jones2012-04-191-0/+14
|
* maint: fix doc typosJim Meyering2012-04-181-1/+1
| | | | | | | Fix typos spotted by http://github.com/lyda/misspell-check. * configure.ac: As above. * ocaml/examples/guestfs-ocaml.pod: Likewise. * fish/guestfish.pod: Likewise.
* extra-tests: Check if valgrind supports --vgdb=no option.Richard W.M. Jones2012-04-181-0/+14
| | | | This option didn't exist in RHEL 6 valgrind.
* Version 1.17.32.1.17.32Richard W.M. Jones2012-04-171-1/+1
|
* Version 1.17.31.1.17.31Richard W.M. Jones2012-04-151-1/+1
|
* Version 1.17.30.1.17.30Richard W.M. Jones2012-04-131-1/+1
|
* Version 1.17.29.1.17.29Richard W.M. Jones2012-04-121-1/+1
|
* Version 1.17.28.1.17.28Richard W.M. Jones2012-04-111-1/+1
|
* Version 1.17.27.1.17.27Richard W.M. Jones2012-04-101-1/+1
|
* Use posix_fadvise when uploading or downloading files.Richard W.M. Jones2012-04-091-0/+1
| | | | | But ignore it if the call fails, since the file descriptor could be a non-file (eg. /dev/stdout).
* Version 1.17.26.1.17.26Richard W.M. Jones2012-04-031-1/+1
|
* Version 1.17.25.1.17.25Richard W.M. Jones2012-04-021-1/+1
|