search for: gnulib_tool

Displaying 20 results from an estimated 28 matches for "gnulib_tool".

2013 Sep 04
3
[PATCH 0/2] Clean up compilation from git a little bit
SSIA Martin Kletzander (2): Don't redefine _FORTIFY_SOURCE Get rid of gnulib error bootstrap | 2 +- configure.ac | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) -- 1.8.3.2
2009 Aug 05
0
[PATCH] build: generate some just-removed files in po/
..."$EXTRA_LOCALE_CATEGORIES"'/ + /^MSGID_BUGS_ADDRESS *=/s/=.*/= '"$MSGID_BUGS_ADDRESS"'/ + /^XGETTEXT_OPTIONS *=/{ + s/$/ \\/ + a\ + '"$XGETTEXT_OPTIONS"' $${end_of_xgettext_options+} + } +' po/Makevars.template >po/Makevars + gnulib_tool=$GNULIB_SRCDIR/gnulib-tool <$gnulib_tool || exit -- 1.6.4.226.g08063
2009 Sep 04
1
[PATCH libguestfs] avoid build-from-scratch failure due to missing daemon/configure
...require the default --recursive behavior in order to create daemon/configure. Reported by Matthew Booth. --- bootstrap | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index c3f7d6e..60e71fd 100755 --- a/bootstrap +++ b/bootstrap @@ -82,5 +82,4 @@ $gnulib_tool \ --import $modules # Disable autopoint and libtoolize, since they were already done above. -AUTOPOINT=true LIBTOOLIZE=true \ - autoreconf --verbose --install --no-recursive +AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install -- 1.6.4.2.409.g85dc3
2009 Oct 26
1
[PATCH libguestfs] build: tell gnulib-tool that this is an lgplv2+ library
...nulib-tool that this is an lgplv2+ library * bootstrap: Invoke gnulib-tool with --lgpl=2. --- bootstrap | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/bootstrap b/bootstrap index c92d1e1..a4ea29d 100755 --- a/bootstrap +++ b/bootstrap @@ -77,6 +77,7 @@ warnings ' $gnulib_tool \ + --lgpl=2 \ --avoid=dummy \ --with-tests \ --m4-base=m4 \ -- 1.6.5.2.344.ga473e
2012 Jun 11
1
[hivex][PATCH v2] OS X, bootstrap: Locate pkg.m4
...eal problem is a deficiency in aclocal on OS X. Signed-off-by: Alex Nelson <ajnelson at cs.ucsc.edu> --- bootstrap | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index b2960c1..52c05d5 100755 --- a/bootstrap +++ b/bootstrap @@ -86,4 +86,4 @@ $gnulib_tool \ --import $modules # Disable autopoint and libtoolize, since they were already done above. -AUTOPOINT=true LIBTOOLIZE=true autoreconf --verbose --install +AUTOPOINT=true LIBTOOLIZE=true ACLOCAL_PATH=$(aclocal --print-ac-dir) autoreconf --verbose --install -- 1.7.3.1
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 >
2009 Aug 05
2
using gnulib from daemon/
Hi Rich, Prompted by your "New commands to list devices by UUID and label" patch, I've adjusted it to use gnulib. While just compiling hash.[ch] is probably ok, in general (given the strict requirements of libguestfs) using the C files of a module is usually not an option, since you don't get the benefit of the module's m4 tests or automake snippets. For other modules,
2012 Jun 11
1
[hivex][PATCH] OS X, bootstrap: Locate pkg.m4
...does not fail invoking PKG_CHECK_MODULES. Signed-off-by: Alex Nelson <ajnelson at cs.ucsc.edu> --- bootstrap | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/bootstrap b/bootstrap index b2960c1..8e4cb86 100755 --- a/bootstrap +++ b/bootstrap @@ -85,5 +85,10 @@ $gnulib_tool \ --tests-base=gnulib/tests \ --import $modules +# Locate pkg.m4 (installed in non-default location in OS X) +# (Passing non-existent paths with -I causes aclocal, invoked by autoreconf, to die.) +pkgm4dir=$(test -f /opt/local/share/aclocal/pkg.m4 && dirname /opt/local/share/acloc...
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap
2011 Jun 28
13
[PATCH hivex 02/14] maint: remove unnecessary test-before-free
From: Jim Meyering <meyering at redhat.com> * lib/hivex.c (hivex_node_set_value): Remove unnecessary test-before-free. --- lib/hivex.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/lib/hivex.c b/lib/hivex.c index d042f4f..a72fa77 100644 --- a/lib/hivex.c +++ b/lib/hivex.c @@ -2748,8 +2748,7 @@ hivex_node_set_value (hive_h *h, hive_node_h node, leave_partial:
2010 Oct 27
1
[PATCH] Remove ocaml/.depend from git
ocaml/.depend is automatically generated. This patch removes it from git. --- .gitignore | 1 + ocaml/.depend | 5 ----- 2 files changed, 1 insertions(+), 5 deletions(-) delete mode 100644 ocaml/.depend -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Remove-ocaml-.depend-from-git.patch Type: text/x-patch Size: 495 bytes Desc: not available URL:
2010 Oct 29
1
[PATCH] Bootstrap ocaml/.depend more thoroughly
Although I haven't experienced a specific problem with bootstrapping an empty .depend file, this commit bootstraps it properly using ocamldep. This may or may not solve any real problem, but it's quite simple and more obviously correct. --- bootstrap | 2 +- ocaml/Makefile.am | 10 +++------- ocaml/Makefile.depend | 6 ++++++ 3 files changed, 10 insertions(+), 8
2019 Sep 18
2
[PATCH] build: remove unused gnulib modules
...| 9 --------- daemon/Makefile.am | 4 ---- lib/Makefile.am | 4 ---- m4/.gitignore | 39 --------------------------------------- 4 files changed, 56 deletions(-) diff --git a/bootstrap b/bootstrap index aaf038d98..ee253b471 100755 --- a/bootstrap +++ b/bootstrap @@ -104,7 +104,6 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' accept4 -areadlink areadlinkat arpa_inet base64 @@ -113,15 +112,11 @@ c-ctype cloexec closeout connect -dup3 error -filevercmp fstatat -fts full-read full-write futimens -getaddrinfo getline getprogname gitlog-to-changelog @@ -143,22 +138,1...
2019 Dec 03
7
[p2v PATCH 0/6] Use GLib a bit more
In an effort to reduce the code, start to use few bits of GLib: - replace the gnulib c-type module - replace the gnulib getprogname module - use g_spawn_sync to launch curl, and drop a file reading function Pino Toscano (6): Include glib.h in p2v.h Use g_ascii_isspace instead of c_isspace from gnulib Use g_get_prgname instead of getprogname from gnulib build: remove no more used gnulib
2019 Sep 18
0
Re: [PATCH] build: remove unused gnulib modules
...--- > lib/Makefile.am | 4 ---- > m4/.gitignore | 39 --------------------------------------- > 4 files changed, 56 deletions(-) > > diff --git a/bootstrap b/bootstrap > index aaf038d98..ee253b471 100755 > --- a/bootstrap > +++ b/bootstrap > @@ -104,7 +104,6 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool > > modules=' > accept4 > -areadlink > areadlinkat > arpa_inet > base64 > @@ -113,15 +112,11 @@ c-ctype > cloexec > closeout > connect > -dup3 > error > -filevercmp > fstatat > -fts > full-read > full...
2019 Sep 23
0
[PATCH v2 5/5] build: remove unused gnulib modules
...-------- daemon/Makefile.am | 4 ---- lib/Makefile.am | 5 ----- m4/.gitignore | 52 ---------------------------------------------- 4 files changed, 78 deletions(-) diff --git a/bootstrap b/bootstrap index aaf038d98..9e5a8b72d 100755 --- a/bootstrap +++ b/bootstrap @@ -104,34 +104,26 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' accept4 -areadlink areadlinkat -arpa_inet base64 byteswap c-ctype cloexec closeout connect -dup3 error -filevercmp fstatat -fts full-read full-write futimens -getaddrinfo getline getprogname gitlog-to-changelog glob -gnu-make gnumakefile...
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...wd` + git config --replace-all submodule.gnulib.url $GNULIB_SRCDIR + echo "$0: getting gnulib files..." + git submodule update || exit $? + GNULIB_SRCDIR=.gnulib + else + echo >&2 "$0: invalid gnulib srcdir: $GNULIB_SRCDIR" + exit 1 + fi + ;; +esac + +gnulib_tool=$GNULIB_SRCDIR/gnulib-tool +<$gnulib_tool || exit + +modules=' +gitlog-to-changelog +gnu-make +gnumakefile +maintainer-makefile +manywarnings +warnings +vc-list-files +' + +$gnulib_tool \ + --avoid=dummy \ + --with-tests \ + --m4-base=gnulib/m4 \ + --source-base=gnulib/lib \ +...
2018 Feb 09
2
[PATCH] Add a cache for iconv_t handles to hive_t
...--- lib/write.c | 4 ++-- m4/.gitignore | 2 ++ 10 files changed, 96 insertions(+), 42 deletions(-) diff --git a/bootstrap b/bootstrap index bd82477..373fad8 100755 --- a/bootstrap +++ b/bootstrap @@ -75,6 +75,7 @@ vc-list-files warnings xstrtol xstrtoll +threadlib ' $gnulib_tool \ diff --git a/configure.ac b/configure.ac index 547fb0d..8405774 100644 --- a/configure.ac +++ b/configure.ac @@ -38,7 +38,9 @@ AC_DEFINE([PACKAGE_VERSION_RELEASE],[hivex_release],[Release number]) AC_DEFINE([PACKAGE_VERSION_EXTRA],["hivex_extra"],[Extra version string]) gl_EARLY +...
2009 Sep 24
1
enabling more syntax-checks
...6 +++--- fish/tilde.c | 1 - src/generator.ml | 10 +++++----- src/guestfs.c | 4 ++-- 13 files changed, 29 insertions(+), 27 deletions(-) diff --git a/bootstrap b/bootstrap index 1e32517..c92d1e1 100755 --- a/bootstrap +++ b/bootstrap @@ -58,6 +58,7 @@ gnulib_tool=$GNULIB_SRCDIR/gnulib-tool modules=' arpa_inet +c-ctype closeout gitlog-to-changelog gnu-make diff --git a/cfg.mk b/cfg.mk index 09a3231..134725a 100644 --- a/cfg.mk +++ b/cfg.mk @@ -50,7 +50,6 @@ disable_temporarily = \ sc_unmarked_diagnostics \ sc_prohibit_ctype_h \ sc_pro...