Displaying 20 results from an estimated 300 matches similar to: "[PATCH v2] build: Drop serial_tests."
2015 Nov 06
1
[PATCH v3] build: Drop serial_tests.
Same as v2, except:
- Drop the RUN_OUTPUT_FILE functionality completely. It will be
replaced with enhanced .trs files as discussed.
- Rebase on head.
Rich.
2015 Nov 05
1
[PATCH 1/2] test-data: phony-guests: Don't use *.tmp.* temporary files.
---
test-data/phony-guests/Makefile.am | 3 +--
test-data/phony-guests/make-archlinux-img.sh | 4 ++--
test-data/phony-guests/make-coreos-img.sh | 10 ++++----
test-data/phony-guests/make-debian-img.sh | 10 ++++----
test-data/phony-guests/make-fedora-img.pl | 34 ++++++++++++++--------------
test-data/phony-guests/make-ubuntu-img.sh | 14 ++++++------
2015 Aug 04
2
[PATCH] automake: Admit defeat and use 'subdir-objects'.
Because this 'feature' is broken (since 2013):
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928
we have to replace all instances of $(top_srcdir) in *_SOURCES lines
with a relative path. According to what I read, this shouldn't break
split builds, but I didn't test it.
The only things automake moans about now are:
* Unescaped left brace in regex is deprecated, passed
2015 Nov 04
1
[PATCH] build: Remove support for automake < 1.13.
RHEL 6 has automake 1.13.4. Since we have stopped supporting RHEL 5,
there is no need for the complex macro to check for older versions of
automake that didn't have 'serial_tests'.
---
configure.ac | 17 +----------------
1 file changed, 1 insertion(+), 16 deletions(-)
diff --git a/configure.ac b/configure.ac
index 88f5568..9fde5c5 100644
--- a/configure.ac
+++ b/configure.ac
@@
2010 Mar 21
2
Observations on compiling on Mac OS X 10.5 (Leopard)
I started with:
- Mac OS X 10.5.8
- Xcode installed
- OCaml from GODI
- qemu from git
autoconf is really ancient (2.61). It doesn't have AM_SILENT_RULES
and although we tried to make things work when autoconf lacks this by
having:
m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
this nevertheless
2009 Aug 10
1
[PATCH libguestfs] build: daemon/do_debug: parameters aren't always unused
Thanks to the reminder from Dan Berrange,
here's a patch to make build output less verbose, by default.
E.g., instead of the redundant multi-line compilation/linking commands,
you'll see something like this by default:
CC guestfsd-fsck.o
CC guestfsd-grep.o
CC guestfsd-grub.o
CC guestfsd-glob.o
CC guestfsd-guestfsd.o
CC guestfsd-headtail.o
CC
2010 Oct 25
2
[nut-commits] svn commit r2610 - branches/silent_build
Citeren Arnaud Quette <aquette op alioth.debian.org>:
> Log:
> Optionaly enable silent build rules, using AM_SILENT_RULES, only if
> it's supported (requires automake 1.11)
Why do we need a new branch for this? As far as I can see, only the
below lines are really needed
> +dnl Currently, we only (force) enable silent rules if available
> +dnl Verbose mode can be
2012 Feb 02
2
PATCH: Don't force automake 1.11 AM_SILENT_RULES
Don't force automake 1.11 AM_SILENT_RULES on folks who don't have it.
diff --git a/configure.ac b/configure.ac
index 6a65fcc..36ac6c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@
?AC_INIT(src/flac/main.c)
?AM_INIT_AUTOMAKE(flac, 1.2.1)
-AM_SILENT_RULES([yes])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
?# Don't automagically regenerate autoconf/automake
2013 Feb 19
0
[PATCH] build: Only add 'serial-tests' for automake >= 1.12.
From: "Richard W.M. Jones" <rjones at redhat.com>
Earlier versions of automake complain if they get a configuration
parameter which they don't understand. The error is:
configure.ac:27: error: option 'serial-tests' not recognized
Use some m4 hackery to work around this.
---
configure.ac | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff
2017 Jan 15
4
Updated CFLAGS patches and make test compilation conditional
Hi Erik,
I've found a middleground for the problem of setting default CFLAGS. I've gone back
to setting them if {C,CXX,CPP,LD}FLAGS are unset at the onset of the configure script
(i.e., the user hasn't specified anything) and then proceed to set them to the defaults
as before. This has been suggested before:
https://lists.gnu.org/archive/html/autoconf/2006-04/msg00022.html
In
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
2012 Sep 20
1
[PATCH 1/2] ./run: Make sure that the temporary directory exists so test scripts can produce output files
---
run.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/run.in b/run.in
index ed4971b..548ac20 100644
--- a/run.in
+++ b/run.in
@@ -51,6 +51,7 @@ b=@abs_builddir@
#
# chcon --reference=/tmp tmp
export TMPDIR="$b/tmp"
+mkdir -p "$b/tmp"
# Set local environment relative to this script.
export LIBGUESTFS_PATH="$b/appliance"
--
1.7.10.4
2019 Jan 21
18
[PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
Series of cleanups to autotools build config files to utilize the available
xorg-server macros, defaults and more closely match other modern Xorg drivers.
Notable improvements:
- gitignore fully covers potential build artifacts
- Simplify logic given stated minimum required version of xorg-server 1.8
- Remove use of deprecated, outdated or no longer required macros
- Utilize xorg macros where
2015 Nov 06
1
Re: [PATCH supermin] build: use a custom test driver
On Friday 06 November 2015 13:00:03 Richard W.M. Jones wrote:
> On Fri, Nov 06, 2015 at 01:24:07PM +0100, Pino Toscano wrote:
> > Use a custom test driver for running the tests: based on the test-driver
> > provided by automake, it adds the running time of the test in each .trs
> > file.
> > ---
> > configure.ac | 1 +
> > guestfs-test-driver | 151
2016 Dec 02
1
[PATCH NOT TO BE APPLIED] builder: make-template: Add --encrypted
I was attempting one way to solve:
https://bugzilla.redhat.com/show_bug.cgi?id=1400332
"RFE: virt-builder should support templates with encrypted filesystems"
However this approach doesn't really work because templates containing
encrypted partitions cannot be compressed, and therefore the guest
template would be a multi-gigabyte download.
I better approach will likely be to use
2017 Jul 10
7
[PATCH 0/5] various improvements for make-template.mk
Hi,
this series improves the generation of Debian templates, automating
basically almost all the steps needed.
Also, it fixes the generation of aarch64 images with NVRAM, which is
currently removed too soon, and thus not saved and compressed.
Thanks,
Pino Toscano (5):
builder: templates: update Debian preseed from Stretch
builder: templates: generalize debian location
builder: templates:
2011 Jun 12
1
dovecot-metadata-8 released
Hello everyone!
I just released dovecot-metadata-8, which is an implementation of RFC 5464
(IMAP METADATA), allowing to add comments/annotations/metadata to folders of
an email account.
The major feature is that it works with Akonadi, or more specifically the
Kolab backend thereof, while being dovecot-2.0 compatible.
The module consists of 3 plugins, two IMAP frontends and one backend:
*
2009 Jul 13
2
[PATCH] Add shave support
Defaults to disabled
---
.gitignore | 2 +
acinclude.m4 | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++
configure.ac | 4 +++
shave-libtool.in | 69 +++++++++++++++++++++++++++++++++++++++++++++++
shave.in | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
5 files changed, 231 insertions(+), 0 deletions(-)
create mode 100644 acinclude.m4
2012 Sep 10
11
Cleanup/build improvement for opus
Hello all,
after FOMS I decided to take a look at the opus library and I found
that I could improve a bit the build system and cleanup the code a
little bit.
Most of the changes to the code has been suggested by my two tools
cowstats and missingstatic (part of the ruby-elf gem if you care).
HTH,
Diego
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi,
as it was already discussed on this list, here it is my attempt in
splitting virt-p2v in an own repository. Sadly there are things that
must be copied from libguestfs, as it cannot be avoided.
The approach taken was to run a script (will send separately) to just
get the "p2v" subdirectory with its history as own repository, and then
add in few followup commits all the bits needed