search for: libguestfs_minor

Displaying 11 results from an estimated 11 matches for "libguestfs_minor".

Did you mean: libguestfs_major
2013 Feb 19
0
[PATCH] build: Only add 'serial-tests' for automake >= 1.12.
...s. --- configure.ac | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 105b2e7..b0158c7 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,21 @@ m4_define([libguestfs_release], [11]) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([foreign serial-tests]) + +dnl Initialize automake. automake < 1.12 didn't have serial-tests and +dnl gives an error if it sees this, but for automake >= 1.13 +dnl serial-tests is required so we have to include it. So...
2009 Aug 12
1
[PATCH libguestfs] build: enable automake's color-tests option
...)/$1 $2/'\ + configure.ac daemon/configure.ac ;; +esac + mkdir -p daemon/m4 autoreconf -i diff --git a/configure.ac b/configure.ac index a78ca51..27e5be9 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ m4_define([libguestfs_extra], []) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release[]libguestfs_extra) AC_CONFIG_AUX_DIR([build-aux]) -AM_INIT_AUTOMAKE([foreign]) +AM_INIT_AUTOMAKE([foreign color-tests]) m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])]) AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. diff --git a/daemon/configu...
2009 Aug 10
1
[PATCH libguestfs] build: daemon/do_debug: parameters aren't always unused
...| 1 + daemon/configure.ac | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index cf0591d..f2d05dd 100644 --- a/configure.ac +++ b/configure.ac @@ -25,6 +25,7 @@ m4_define([libguestfs_extra], []) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release[]libguestfs_extra) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) +AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. AC_CONFIG_MACRO_DIR([m4]) diff --git a/daemon/configure.ac b/daemon/configure.ac index b038d17..3abc306 100644 --- a/daemon/configu...
2018 Aug 14
5
[PATCH 1/4] build: Use LT_INIT in configure.ac.
...AUTOMAKE(foreign subdir-objects tar-pax) dnl NB: Do not [quote] this parameter. @@ -40,6 +42,9 @@ AM_SILENT_RULES([yes]) # make --enable-silent-rules the default. AC_CONFIG_MACRO_DIR([m4]) +dnl Initialize libtool. +LT_INIT + dnl Stable or development version? BRANCH_NUMBER=libguestfs_major.libguestfs_minor AC_SUBST([BRANCH_NUMBER]) diff --git a/m4/guestfs-progs.m4 b/m4/guestfs-progs.m4 index d36c6531e..a36b9ad2d 100644 --- a/m4/guestfs-progs.m4 +++ b/m4/guestfs-progs.m4 @@ -37,7 +37,6 @@ m4_ifdef([AC_PROG_SED],[ # Define $(AWK). AC_PROG_AWK -AC_PROG_LIBTOOL AC_PROG_LN_S dnl Check for cpio wh...
2009 Aug 24
5
[0/5] guestfish: detect stdout-write failure
Nearly any program that writes to standard output can benefit from this sort of fix. Without it, running e.g., ./guestfish --version > /dev/full would exit successfully, even though it got ENOSPC when writing to the full device. That means regular output redirected to a file on a full partition may also fail to be written, and the error ignored. Before: $ guestfish --version >
2013 Feb 18
4
[PATCH for discussion only 0/3] Implement mutexes to limit number of concurrent instances of libguestfs.
These three patches (for discussion only, NOT to be applied) implement a mutex system that lets the user limit the number of libguestfs instances that can be launched per host. There are two uses that I have identified for this: firstly so we can enable parallel-tests (the default in automake >= 1.13) without blowing up the host. Secondly oVirt has raised concerns about how to limit the
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...y. -hardcode_minus_L="$hardcode_minus_L" - -EOF diff --git a/configure.ac b/configure.ac index ece7da7..df466fa 100644 --- a/configure.ac +++ b/configure.ac @@ -23,6 +23,7 @@ m4_define([libguestfs_release], [65]) m4_define([libguestfs_extra], []) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release[]libguestfs_extra) +AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_MACRO_DIR([m4]) @@ -40,6 +41,9 @@ AC_PROG_CC_STDC AC_PROG_INSTALL AC_PROG_CPP +gl_EARLY +gl_INIT + AC_C_PROTOTYPES test "x$U" != "x" && AC_MSG_ERROR([Compi...
2013 Aug 24
46
[PATCH 00/46] Proposed patches for libguestfs 1.20.11.
Tested with 'make check-release'. tests/parallel (in check-slow) failed, although it does regularly and that seems to be because of libvirt. Rich.
2017 Aug 12
2
[PATCH] configure: Further split blocks of text in the script output.
...------------------------------------ 1 file changed, 28 insertions(+), 46 deletions(-) diff --git a/configure.ac b/configure.ac index de247a36d..e4b6556c4 100644 --- a/configure.ac +++ b/configure.ac @@ -24,6 +24,11 @@ m4_define([libguestfs_release], [21]) AC_INIT([libguestfs],libguestfs_major.libguestfs_minor.libguestfs_release) +# Headings within the configure script output. +m4_define([HEADING], + [AS_ECHO + AS_ECHO(["--- $1 ---"])]) + AC_CONFIG_AUX_DIR([build-aux]) AC_REQUIRE_AUX_FILE([guestfs-test-driver]) @@ -76,15 +81,13 @@ AC_DEFINE_UNQUOTED([PACKAGE_VERSION_FUL...
2013 Aug 24
67
[PATCH 00/67] Proposed patches for libguestfs 1.22.6.
In the kernel and qemu communities it is routine for patches that will be backported to stable branches to be posted for review. I'm proposing we do the same for libguestfs stable branches. All of the attached have been tested with 'make check-release'. Rich.
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a