summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.0.67.1.0.67Richard Jones2009-08-131-1/+1
|
* build: enable automake's silent rules optionJim Meyering2009-08-101-0/+3
| | | | | | | * configure.ac: Use AM_SILENT_RULES([yes]). Those who want verbose build output may configure with --disable-silent-rules or use "make V=1". * daemon/configure.ac: Likewise.
* Allow network interface to be configured.Richard Jones2009-08-071-0/+11
| | | | | | | | Add ./configure --with-net-if=(virtio|ne2k_pci) option. This lets you workaround the following virtio_net bug: https://bugzilla.redhat.com/show_bug.cgi?id=516022
* Version 1.0.661.0.66Richard Jones2009-08-061-1/+1
|
* Convert all TABs-as-indentation to spaces.Jim Meyering2009-08-031-109/+109
| | | | | | | | | | | Do it by running this command: [exempted files are matched via .x-sc_TAB_in_indentation] git ls-files \ | pcregrep -vf .x-sc_TAB_in_indentation \ | xargs pcregrep -l '^ *\t' \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
* maint: use a git submodule for gnulibJim Meyering2009-08-031-0/+6
| | | | | | | | | | | | | | * .gitmodules: New file, to track gnulib. * .gnulib: Submodule directory. * Makefile.am (EXTRA_DIST): Don't list config.rpath or gitlog-to-changelog. * autogen.sh: Adapt to use the new submodule. * cfg.mk: New file. (SUBDIRS): Add gnulib/lib and gnulib/tests. (dist-hook): Reflect new location of getlog-to-changelog. * configure.ac: Set build-aux/ as AUX_DIR. Invoke gl_EARLY and gl_INIT. (AC_CONFIG_FILES): Add gnulib/lib/Makefile and gnulib/tests/Makefile.
* configure.ac: more quotingJim Meyering2009-07-301-11/+18
| | | | | Also, prohibit an invalid value of $JAVA_HOME, since it must be used unquoted below.
* build: If guestfwd test fails, need to print AC_MSG_RESULT 'no'Richard Jones2009-07-301-0/+1
|
* build: fix test for --nocompress optionJim Meyering2009-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | Richard W.M. Jones wrote: > On Wed, Jul 29, 2009 at 10:50:44PM +0200, Jim Meyering wrote: >> The test for febootstrap-to-initramfs' --nocompress option >> was always failing for me on F11. Here's why: > [...] > > Ouch that's obscure. I've applied this patch and the previous > one you sent too. Thanks! Our messages crossed. Rebasing my fixed patch and adjusting the log: >From 9e7846da50ceeee57187f703835bd3975e789719 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Wed, 29 Jul 2009 16:33:02 -0400 Subject: [PATCH] build: quote the other option test similarly * configure.ac: Quote properly.
* build: fix test for --nocompress optionJim Meyering2009-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test for febootstrap-to-initramfs' --nocompress option was always failing for me on F11. Here's why: $ bash ~/w/co/libguestfs:210-comment-fix $ t=`febootstrap-to-initramfs 2>&1` [Exit 1] $ if ! echo $t|grep -sq -- --nocompress; then echo not found; fi not found Notice: without quotes, the [--nocompress] term expands to "k", because I happen to have a temporary file named "k": $ echo $t Usage: febootstrap-to-initramfs [--files=filelist] k DIR Please read febootstrap-to-initramfs(8) man page for more information. $ echo "$t" Usage: febootstrap-to-initramfs [--files=filelist] [--nocompress] DIR Please read febootstrap-to-initramfs(8) man page for more information. a simpler example gives a clue: $ touch a b c $ echo [--z] a b c $ echo [--a] a $ echo [--b] a b it's interpreting [--nocompress] as a range: "-" through "n", plus the other characters, ocmpres. "k" falls in the --n range. Anyhow, here's the fix: >From 84855642ed41828d01d55123cfab8d8dede759c1 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering@redhat.com> Date: Wed, 29 Jul 2009 16:33:02 -0400 Subject: [PATCH] build: fix test for --nocompress option * configure.ac: Fix underquoting bug that would cause the test for febootstrap-to-initramfs' --nocompress option always to fail with certain-letter-named files in the top directory.
* Version 1.0.65.1.0.65Richard Jones2009-07-291-1/+1
|
* Remove hard-coded qemu-kvm, replace with $QEMU.1.0.64Richard Jones2009-07-231-2/+2
|
* Version 1.0.631.0.63Richard Jones2009-07-231-1/+1
|
* Add libguestfs-test-tool.Richard Jones2009-07-221-0/+1
| | | | | | | | | | | This is an end-user testing tool, designed to test basic functionality of libguestfs/qemu/kernel combination on the end-user's final host machine. It does not perform a thorough test, but should be enough to find most booting issues. Also this is intended to be used when reporting bugs.
* configure: Detect new-style guestfwd support (RHBZ#512957)Richard W.M. Jones2009-07-211-7/+13
| | | | However new qemu 0.10.5 still doesn't work.
* Version 1.0.62.1.0.62Richard Jones2009-07-171-1/+1
|
* RHEL 5.4 fix: Check for qemu-kvm binary in /usr/libexecRichard W.M. Jones2009-07-171-1/+1
|
* Build fix: perl-libintl is not required for the basic Perl bindings.Richard Jones2009-07-151-1/+1
|
* Version 1.0.611.0.61Richard Jones2009-07-151-1/+1
|
* New tool virt-cat: display a file in a virtual machine.Richard Jones2009-07-151-2/+7
| | | | | | | | | This script is just a simpler way to cat a file from a VM. It is otherwise equivalent to using guestfish. virt-cat someguest /etc/fstab virt-cat someguest /var/log/messages | tail
* Make Perl strings translatable using perl-libintl.Richard Jones2009-07-151-2/+2
| | | | | | | | | All Perl strings are now marked as translatable using __"string" or __x("string {placeholder}", placeholder => $_). Perl strings now get copied to the PO files. The po/POTFILES.in file is now updated automagically whenever we add new *.c, *.pl or *.pm files into the repository.
* Version 1.0.60.1.0.60Richard W.M. Jones2009-07-141-1/+1
|
* Version 1.0.59.1.0.59Richard W.M. Jones2009-07-141-1/+1
|
* Fix UPDATES and host_cpu in configure.ac.Richard W.M. Jones2009-07-111-3/+1
| | | | | | UPDATES does not need to be propagated into config.h. host_cpu was AC_DEFINE'd twice.
* Version 1.0.58.1.0.58Richard W.M. Jones2009-07-101-1/+1
|
* Add 'version' call to get true library version number.Richard Jones2009-07-101-1/+14
| | | | | | This patch also changes the way that the version is specified in configure.ac. It is now made out of four parts (major, minor, release and extra) and constructed for AC_INIT.
* Version 1.0.57.1.0.57Richard Jones2009-07-101-1/+1
|
* Added framework for 'virt-df' command.Richard Jones2009-07-101-2/+7
|
* Added outline of the virt-v2v script.Richard Jones2009-07-101-2/+7
|
* Update with links to the new mailing list.Richard Jones2009-07-081-2/+2
|
* Version 1.0.56.1.0.56Richard W.M. Jones2009-07-071-1/+1
|
* select proper kernel by architectureGuido Günther2009-07-041-0/+12
|
* Make it possible to build in a separate directoryMatthew Booth2009-07-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | This patch allows you to do: mkdir build cd build ../configure ... make This will output all generated files to the build directory. Given that autogen automatically runs configure, you can also do: BUILDDIR=./build ./autogen.sh which will do the right thing. Also: * Fix a dependency bug which means that guestfs_protocol.h isn't automatically rebuilt. * Re-running autogen.sh with no arguments won't blow away your previous configure arguments.
* Prepare for 1.0.55. PO files also updated.1.0.55Richard W.M. Jones2009-07-021-1/+1
|
* Add ./configure --with-drive-if=(ide|scsi|virtio)Richard W.M. Jones2009-07-021-0/+12
| | | | | | | | With this flag the packager can decide to default to a particular qemu drive model. The current default is 'ide', however note that we intend to change this in future to 'virtio' once some upstream regressions are fixed. Packagers can force a particular drive model if they wish.
* add debirf filesGuido Günther2009-07-021-0/+1
|
* define REDHAT and DEBIANGuido Günther2009-06-301-0/+3
| | | | so we can preprocess packagelist.in
* Version 1.0.541.0.54Richard W.M. Jones2009-06-291-1/+1
|
* Check for XML::Writer dependency for virt-inspector.Richard W.M. Jones2009-06-291-1/+1
|
* Version 1.0.53.1.0.53Richard W.M. Jones2009-06-241-1/+1
|
* Fix permissions on generated scripts in the appliance/ directory.Richard W.M. Jones2009-06-241-6/+11
|
* Version 1.0.52.1.0.52Richard W.M. Jones2009-06-241-1/+1
|
* Implement libtool library versioning.Richard W.M. Jones2009-06-231-0/+4
| | | | | | | | Use maximum proc_nr (MAX_PROC_NR) as a surrogate for the library ABI version, resulting in version numbers such as libguestfs.so.0.<MAX_PROC_NR>.0 for the final library. Add ABI guarantee to the documentation.
* Version 1.0.511.0.51Richard Jones2009-06-221-1/+1
|
* Version 1.0.50.1.0.50Richard Jones2009-06-221-1/+1
|
* Prepare for version 1.0.49.Richard W.M. Jones2009-06-191-1/+1
|
* check for Debian toolsGuido Günther2009-06-181-18/+28
|
* Rename guestfs-supermin-helper -> libguestfs-supermin-helper.Richard Jones2009-06-181-2/+2
|
* Version 1.0.48.1.0.48Richard Jones2009-06-161-1/+1
|
* Don't compress the supermin base initramfs.Richard Jones2009-06-161-0/+16
|