search for: librc_protocol

Displaying 20 results from an estimated 71 matches for "librc_protocol".

2009 Aug 18
1
[PATCH libguestfs] avoid compiler warnings about unused vars in generated code
....5bf3fbd 100644 --- a/fish/Makefile.am +++ b/fish/Makefile.am @@ -35,12 +35,15 @@ guestfish_SOURCES = \ lcd.c \ more.c \ rc.c \ - rc_protocol.c \ - rc_protocol.h \ reopen.c \ tilde.c \ time.c +# This convenience library is solely to avoid compiler warnings +# in its generated sources. +librc_protocol_la_SOURCES = rc_protocol.c +librc_protocol_la_CFLAGS = -Wall -Wno-unused + BUILT_SOURCES = \ rc_protocol.c \ rc_protocol.h @@ -50,8 +53,13 @@ guestfish_CFLAGS = \ -I$(top_srcdir)/fish -I$(top_builddir)/fish \ -Wall \ -DGUESTFS_DEFAULT_PATH='"$(libdir)/guestfs"' + guest...
2016 Sep 26
0
[PATCH 3/3] tools: build common fish sources in a static library
...ir)/src/libguestfs.la \ + $(top_builddir)/src/libutils.la \ + $(LIBXML2_LIBS) \ + $(LTLIBINTL) + guestfish_SOURCES = \ $(generator_built) \ $(SHARED_SOURCE_FILES) \ @@ -159,7 +182,7 @@ guestfish_LDADD = \ -lm # Make guestfish use the convenience libraries. -noinst_LTLIBRARIES = libcmds.la librc_protocol.la +noinst_LTLIBRARIES = libcmds.la librc_protocol.la libfishcommon.la guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la if HAVE_RPCGEN diff --git a/format/Makefile.am b/format/Makefile.am index 6c22beb..6eabd8a 100644 --- a/format/Makefile.am +++ b/format/Makefile.am @@ -...
2016 Sep 26
3
[PATCH 1/3] build: remove extra libconfig linkage
Some of the C tools were building also config.c as part of the shared sources from guestfish, and thus bringing a dependency on libconfig. Since none of them actually read the libguestfs configuration at all, then exclude fish/config.c from their build, and stop linking to libconfig. --- align/Makefile.am | 3 --- df/Makefile.am | 3 --- edit/Makefile.am | 3 ---
2017 Mar 06
0
[PATCH] lib: Prefer tirpc for XDR, and rationlise how we search for alternatives.
...ARN_CFLAGS) $(WERROR_CFLAGS) \ + $(RPC_CFLAGS) \ $(LIBCONFIG_CFLAGS) \ $(LIBXML2_CFLAGS) @@ -147,32 +148,23 @@ guestfish_LDADD = \ $(LIBREADLINE) \ $(LIBTINFO_LIBS) \ $(LTLIBINTL) \ + $(RPC_LIBS) \ -lm # Make guestfish use the convenience libraries. noinst_LTLIBRARIES = libcmds.la librc_protocol.la guestfish_LDADD += libcmds.la librc_protocol.la ../gnulib/lib/libgnu.la -if HAVE_RPCGEN -RPCGEN_DEFS = -if HAVE_XDR_U_INT64_T -RPCGEN_DEFS += -DHAVE_XDR_U_INT64_T=1 -else -if HAVE_XDR_UINT64_T -RPCGEN_DEFS += -DHAVE_XDR_UINT64_T=1 -endif -endif - rc_protocol.c: rc_protocol.x rm -f $@-t $@-...
2017 Mar 07
1
[PATCH v2] lib: Prefer tirpc for XDR, and rationalise how we search for alternatives.
v1 -> v2: - No functional changes to the patch, just fixes a few bugs. Rich.
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 >
2012 Jul 24
11
[PATCH 01/12] configure: Add -nographic command line option to qemu.
Without this option, configure will fail when there is no display. Signed-off-by: Masami HIRATA <msmhrt at gmail.com> --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index de8a064..61d6f69 100644 --- a/configure.ac +++ b/configure.ac @@ -593,16 +593,16 @@ working. AC_MSG_FAILURE([$QEMU version must be >=
2014 May 29
2
Re: libguestfs error
Hi Rich I using ubuntu 13.10 with powerpc arch. I tried the above stepss and below are the output of the related commands.. nm -D /usr/lib/powerpc-linux-gnu/libtinfo.so | grep tgetent 0000def0 T tgetent ubuntu@t4240-ubuntu1310:~$ dpkg -S /usr/lib/powerpc-linux-gnu/libtinfo.so libtinfo-dev:powerpc: /usr/lib/powerpc-linux-gnu/libtinfo.so However I'm not able to perform rm -f config.cache
2010 Aug 31
13
[PATCH v2] Add progress bars
This is an updated and extended version of the original patch: https://www.redhat.com/archives/libguestfs/2010-August/msg00163.html This adds OCaml and Perl bindings (both tested), support for progress bars in virt-resize, and adds progress notifications to a number of the simpler commands. Still to do is to add progress messages to more commands. There are still a few commands which would be
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2014 May 29
3
Re: libguestfs error
Here's the output of configure.... sudo ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables...
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.
2011 Jun 21
0
builder-ubuntu libguestfs FAILED build step e1e78bcef5e4654bd2456bd696840329359d35cd
...sh test -z "stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod" || rm -f stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Mar 04
1
builder-debian libguestfs FAILED build step eda9826d25336bcf661700270c580d4d62128750
...rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/cat' Making clean in fish make[1]: Entering directory `/home/rjones/d/libguestfs/fish' rm -f guestfish test -z "stamp-guestfish.pod" || rm -f stamp-guestfish.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Feb 15
4
builder-debian libguestfs FAILED build step f455dc3814bf9f7e7e894ba81360acb0edd92464
...rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/cat' Making clean in fish make[1]: Entering directory `/home/rjones/d/libguestfs/fish' rm -f guestfish test -z "stamp-guestfish.pod" || rm -f stamp-guestfish.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Jan 28
0
builder-debian libguestfs FAILED build step f060d5bcd40b4a6506d7994e67d57dccab1651b8
...rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/cat' Making clean in fish make[1]: Entering directory `/home/rjones/d/libguestfs/fish' rm -f guestfish test -z "stamp-guestfish.pod" || rm -f stamp-guestfish.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Mar 15
0
builder-debian libguestfs FAILED build step d1f1f74e5f45fa5b94ebb096fa65fa33ecc23d09
...rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/cat' Making clean in fish make[1]: Entering directory `/home/rjones/d/libguestfs/fish' rm -f guestfish test -z "stamp-guestfish.pod" || rm -f stamp-guestfish.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Mar 22
1
builder-debian libguestfs FAILED build step 0daf7e81a659bcdc1ce327151cc1207b124a35a1
...sh test -z "stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod" || rm -f stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Mar 29
1
builder-debian libguestfs FAILED build step 58f7a5a4ac8cce77dfaded1c29f3ad382b4cc9a8
...sh test -z "stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod" || rm -f stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...
2011 Apr 01
0
builder-debian libguestfs FAILED build step 05dbe09a5c5be3d5f68dc6eb033c4f642fbac8bf
...sh test -z "stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod" || rm -f stamp-guestfish.pod stamp-virt-copy-in.pod stamp-virt-copy-out.pod stamp-virt-tar-in.pod stamp-virt-tar-out.pod rm -rf .libs _libs test -z "libcmds.la librc_protocol.la" || rm -f libcmds.la librc_protocol.la rm -f "./so_locations" rm -f "./so_locations" rm -f *.o rm -f *.lo make[1]: Leaving directory `/home/rjones/d/libguestfs/fish' Making clean in test-tool make[1]: Entering directory `/home/rjones/d/libguestfs/test-tool' rm -...