search for: guestfs_c_actions

Displaying 20 results from an estimated 68 matches for "guestfs_c_actions".

2010 Nov 05
1
Missing stdarg.h include
Hi, building current git fails with gcc -std=gnu99 -std=gnu99 -I.. -I/usr/lib/ocaml -I../ocaml -I../src -I../src -g -O2 -fPIC -Wall -c guestfs_c_actions.c In file included from ../src/guestfs.h:84, from guestfs_c_actions.c:35: ../src/guestfs-actions.h:28: error: expected declaration specifiers or '...' before 'va_list' This is fixed by an #include <stdarg.h> but since this file is autogenrated in some ocam...
2009 Jul 29
1
[PATCH] build: avoid locale-specific changes in generated, VC'd file
...on that is checked in: diff --git a/po/POTFILES.in b/po/POTFILES.in index ca01b3d..154915a 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -63,12 +63,11 @@ fish/tilde.c fish/time.c inspector/virt-inspector.pl java/com_redhat_et_libguestfs_GuestFS.c -ocaml/guestfs_c_actions.c ocaml/guestfs_c.c +ocaml/guestfs_c_actions.c perl/bindtests.pl -perl/Guestfs.c -perl/lib/Sys/Guestfs/Lib.pm perl/lib/Sys/Guestfs.pm +perl/lib/Sys/Guestfs/Lib.pm python/guestfs-py.c ruby/ext/guestfs/_guestfs.c src/guestfs-actions.c If we generate that...
2012 Jan 18
4
[PATCH 1/4] ocaml: Add -Wno-missing-field-initializers to avoid a warning.
From: "Richard W.M. Jones" <rjones at redhat.com> --- configure.ac | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index fa97479..6e42423 100644 --- a/configure.ac +++ b/configure.ac @@ -141,6 +141,10 @@ if test "$gl_gcc_warnings" = yes; then # Work around warning in src/inspect.c. This seems to be a bug in gcc
2012 Jan 23
2
[PATCH libguestfs] build: don't use automake-internal variable
Hi Rich, I realized a day or two late that my suggestion was not quite right. Here's the fix: >From 5294c21cf07c4ec2f094182ba9f32696f3de2751 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 23 Jan 2012 10:01:40 +0100 Subject: [PATCH libguestfs] build: don't use automake-internal variable * ocaml/Makefile.am (mlguestfs.cma): Use the documented
2009 Aug 28
1
[PATCHES] avoid more warnings
>From 23740528cd2d75a236aae1fb5d073e8be2e5a295 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Fri, 28 Aug 2009 13:43:16 +0200 Subject: [PATCH libguestfs 1/3] generator.ml: avoid warnings in generated ocaml/guestfs_c_actions.c * src/generator.ml: Emit prototypes for ocaml_guestfs_* functions, to avoid warnings from gcc -Wmissing-prototypes. Normally we'd put these somewhere else, but in this unusual case, they're not needed anywhere else. Handle the >5-argument case, too, for these: ocaml_guestfs_test0_by...
2009 Nov 19
5
Fix various build dependency problems
Patch 1/5 is a repost. Only change is title update. These fix parallel make on my machine, and additionally make building from subdirectories more correct.
2009 Nov 18
1
[PATCH] Fix dependencies on generator.ml
...e.am b/ocaml/Makefile.am index bb7407a..4375337 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -15,12 +15,22 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +GENERATOR_ML = \ + guestfs.mli \ + guestfs.ml \ + guestfs_c_actions.c \ + bindtests.ml + +.PHONY: force + +$(GENERATOR_ML): force + $(MAKE) -C $(top_builddir)/src stamp-generator + EXTRA_DIST = \ - guestfs.mli guestfs.ml \ - guestfs_c.c guestfs_c.h guestfs_c_actions.c \ + $(GENERATOR_ML) \ + guestfs_c.c guestfs_c.h \ guestfs_inspector.mli guestfs_inspector.ml \...
2009 Aug 03
1
use gnulib, and begin to pass its "make syntax-check" tests
...isabled-tests list. >From 3d13b4e3062a3b06d9ed3acadb4cb55fb41a05c8 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 3 Aug 2009 06:58:16 -0400 Subject: [PATCH 1/4] build: add -I option to get config.h. * ocaml/Makefile.am (AM_CPPFLAGS): Define. (guestfs_c.o, guestfs_c_actions.o): Use it. --- ocaml/Makefile.am | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ocaml/Makefile.am b/ocaml/Makefile.am index 12522f2..1aa0cb6 100644 --- a/ocaml/Makefile.am +++ b/ocaml/Makefile.am @@ -28,6 +28,9 @@ SUBDIRS = examples CLEANFILES = *.cmi *.cmo *.cmx...
2012 Jul 21
5
[PATCH 1/5] mount: add a macro to resolve path or device
...ts.c gobject/src/optargs-set_e2attrs.c +gobject/src/optargs-test0.c gobject/src/optargs-tune2fs.c gobject/src/optargs-umount_local.c gobject/src/session.c @@ -180,6 +186,7 @@ inspector/virt-inspector.c java/com_redhat_et_libguestfs_GuestFS.c ocaml/guestfs-c-actions.c ocaml/guestfs-c.c +ocaml/guestfs_c_actions.c perl/Guestfs.c perl/bindtests.pl perl/lib/Sys/Guestfs.pm @@ -197,6 +204,7 @@ src/bindtests.c src/dbdump.c src/errnostring-gperf.c src/errnostring.c +src/errnostring_gperf.c src/events.c src/filearch.c src/fuse.c -- 1.7.11.2.249.g31c7954
2009 Nov 19
3
Fix parallel make (v3)
This new series condenses all of the previously posted patches into new patch 1/2. The second patch is a new fix for parallel build in the haskell directory.
2010 May 12
2
[PATCH 0/2] Actually translate our Perl programs (RHBZ#559963).
We observed a while back that the Perl-based libguestfs tools were not being localized. In fact I've tracked this problem down to a regression some time ago and some subsequent changes we made. These two patches fix everything. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones virt-top is 'top' for virtual machines. Tiny program with many
2011 Aug 14
6
[PATCH 1/6] out-of-tree build: fix documentation generation
--- cat/Makefile.am | 6 +++--- df/Makefile.am | 2 +- edit/Makefile.am | 2 +- examples/Makefile.am | 12 ++++++------ fish/Makefile.am | 18 +++++++++--------- fuse/Makefile.am | 2 +- inspector/Makefile.am | 2 +- java/examples/Makefile.am | 6 +++--- ocaml/examples/Makefile.am | 6 +++---
2011 Nov 09
6
[PATCH] Add tune2fs support to libguestfs.
At the moment OpenStack uses kpartx and nbd to resize filesystems and inject files to guests. I sincerely hope they don't allow untrusted users to upload guest images / AMIs :-( To fix this I'm looking into adding libguestfs support as an optional backend in OpenStack. The only missing feature in libguestfs is the ability to call tune2fs on a filesystem. This patch series adds tune2fs
2009 Jul 15
0
[PATCH] Make Perl strings translatable
...ree.c +df/virt-df.pl fish/alloc.c fish/cmds.c fish/completion.c @@ -8,6 +56,23 @@ fish/fish.c fish/glob.c fish/lcd.c fish/more.c +fish/rc.c +fish/rc_protocol.c +fish/reopen.c +fish/tilde.c fish/time.c -src/guestfs.c +inspector/virt-inspector.pl +java/com_redhat_et_libguestfs_GuestFS.c +ocaml/guestfs_c_actions.c +ocaml/guestfs_c.c +perl/bindtests.pl +perl/Guestfs.c +perl/lib/Sys/Guestfs/Lib.pm +perl/lib/Sys/Guestfs.pm +python/guestfs-py.c +ruby/ext/guestfs/_guestfs.c src/guestfs-actions.c +src/guestfs-bindtests.c +src/guestfs.c +src/guestfs_protocol.c +v2v/virt-v2v.pl diff --git a/po/libguestfs.pot b/po...
2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...uestfs(3)>, +L<guestfs(3)>, +L<http://libguestfs.org/>, +L<Sys::Virt(3)>, +L<http://libvirt.org/>, +L<guestfish(1)>. + +=cut diff --git a/po/POTFILES.in b/po/POTFILES.in index ca01b3d..694a831 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -67,8 +67,18 @@ ocaml/guestfs_c_actions.c ocaml/guestfs_c.c perl/bindtests.pl perl/Guestfs.c +perl/lib/Sys/Guestfs/GuestOS.pm +perl/lib/Sys/Guestfs/GuestOS/RedHat.pm +perl/lib/Sys/Guestfs/HVSource.pm +perl/lib/Sys/Guestfs/HVSource/Xen/Linux.pm +perl/lib/Sys/Guestfs/HVTarget/Linux.pm +perl/lib/Sys/Guestfs/HVTarget.pm perl/lib/Sys/Gues...
2012 Apr 30
5
[PATCH 0/4 v1] Remove gettextify, implement OCaml gettext.
Version 1 of the patch, for discussion, but not to be applied. It does work, but needs a lot more testing. This removes all the psychopathic gettextify cruft, and replaces it with a 99 line Makefile.am. A large win, I think. The third patch implements gettext support in the OCaml tools. The fourth patch is just for illustration. It shows the consequent changes to libguestfs.pot and the po
2011 Jan 14
0
builder-debian libguestfs success 4ffa2d6798f7a2bf0baec8e1084659cf6358bc31
...ritten src/libguestfs.syms written daemon/actions.h written daemon/stubs.c written daemon/names.c written capitests/tests.c written fish/cmds_gperf.gperf written fish/cmds.c written fish/completion.c written fish/guestfish-actions.pod written ocaml/guestfs.mli written ocaml/guestfs.ml written ocaml/guestfs_c_actions.c written perl/Guestfs.xs written perl/lib/Sys/Guestfs.pm written python/guestfs-py.c written python/guestfs.py written ruby/ext/guestfs/_guestfs.c written java/com/redhat/et/libguestfs/GuestFS.java written java/com_redhat_et_libguestfs_GuestFS.c written haskell/Guestfs.hs written csharp/Libguestfs...
2011 Jan 14
0
builder-ubuntu libguestfs success 4ffa2d6798f7a2bf0baec8e1084659cf6358bc31
...ritten src/libguestfs.syms written daemon/actions.h written daemon/stubs.c written daemon/names.c written capitests/tests.c written fish/cmds_gperf.gperf written fish/cmds.c written fish/completion.c written fish/guestfish-actions.pod written ocaml/guestfs.mli written ocaml/guestfs.ml written ocaml/guestfs_c_actions.c written perl/Guestfs.xs written perl/lib/Sys/Guestfs.pm written python/guestfs-py.c written python/guestfs.py written ruby/ext/guestfs/_guestfs.c written java/com/redhat/et/libguestfs/GuestFS.java written java/com_redhat_et_libguestfs_GuestFS.c written haskell/Guestfs.hs written csharp/Libguestfs...
2011 Jan 22
0
builder-ubuntu libguestfs success 78f1405de05ef1f2efebafd8245658d1707e59ef
...ernal-actions.h written src/actions.c written src/guestfs-actions.pod written src/libguestfs.syms written capitests/tests.c written fish/cmds_gperf.gperf written fish/cmds.c written fish/completion.c written fish/guestfish-actions.pod written ocaml/guestfs.mli written ocaml/guestfs.ml written ocaml/guestfs_c_actions.c written perl/Guestfs.xs written perl/lib/Sys/Guestfs.pm written python/guestfs-py.c written python/guestfs.py written ruby/ext/guestfs/_guestfs.c written java/com/redhat/et/libguestfs/GuestFS.java written java/com_redhat_et_libguestfs_GuestFS.c written csharp/Libguestfs.cs written php/extension/p...
2010 Dec 17
0
builder-debian libguestfs success acd25281bfa31b78fd03e25b495f66138a4dd987
...ritten src/libguestfs.syms written daemon/actions.h written daemon/stubs.c written daemon/names.c written capitests/tests.c written fish/cmds_gperf.gperf written fish/cmds.c written fish/completion.c written fish/guestfish-actions.pod written ocaml/guestfs.mli written ocaml/guestfs.ml written ocaml/guestfs_c_actions.c written perl/Guestfs.xs written perl/lib/Sys/Guestfs.pm written python/guestfs-py.c written python/guestfs.py written ruby/ext/guestfs/_guestfs.c written java/com/redhat/et/libguestfs/GuestFS.java written java/com_redhat_et_libguestfs_GuestFS.c written csharp/Libguestfs.cs written php/extension/p...