search for: a83f257

Displaying 7 results from an estimated 7 matches for "a83f257".

2015 Feb 02
1
Re: [PATCH 5/6] New APIs: copy-in and copy-out
...> --- a/po/POTFILES > +++ b/po/POTFILES > @@ -297,6 +297,7 @@ src/canonical-name.c > src/cleanup.c > src/command.c > src/conn-socket.c > +src/copy-in-out.c > src/create.c > src/dbdump.c > src/drives.c > diff --git a/src/Makefile.am b/src/Makefile.am > index a83f257..2496887 100644 > --- a/src/Makefile.am > +++ b/src/Makefile.am > @@ -90,6 +90,7 @@ libguestfs_la_SOURCES = \ > canonical-name.c \ > command.c \ > conn-socket.c \ > + copy-in-out.c \ > create.c \ > dbdump.c \ > drives.c \ > diff --git a/src/copy-in-out.c...
2015 Jan 26
0
[PATCH 5/6] New APIs: copy-in and copy-out
...t a/po/POTFILES b/po/POTFILES index 4194e5f..6e65377 100644 --- a/po/POTFILES +++ b/po/POTFILES @@ -297,6 +297,7 @@ src/canonical-name.c src/cleanup.c src/command.c src/conn-socket.c +src/copy-in-out.c src/create.c src/dbdump.c src/drives.c diff --git a/src/Makefile.am b/src/Makefile.am index a83f257..2496887 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -90,6 +90,7 @@ libguestfs_la_SOURCES = \ canonical-name.c \ command.c \ conn-socket.c \ + copy-in-out.c \ create.c \ dbdump.c \ drives.c \ diff --git a/src/copy-in-out.c b/src/copy-in-out.c new file mode 100644 index 0000000...
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...GS = $(OCAML_FLAGS) $(OCAML_WARN_ERROR) $(OCAMLPACKAGES) OCAMLOPTFLAGS = $(OCAMLCFLAGS) OCAMLCLIBS = \ - $(LIBXML2_LIBS) -lncurses \ + $(LIBXML2_LIBS) $(LIBINTL) -lncurses \ -L../src/.libs -lutils \ -L../gnulib/lib/.libs -lgnu diff --git a/src/Makefile.am b/src/Makefile.am index be8d3a3..a83f257 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -159,7 +159,7 @@ libguestfs_la_LIBADD = \ $(INET_NTOP_LIB) \ $(LIBSOCKET) \ $(LIB_CLOCK_GETTIME) \ - $(LIBINTL) \ + $(LTLIBINTL) \ $(LTLIBTHREAD) \ $(LTLIBICONV) \ $(SERVENT_LIB) @@ -238,7 +238,8 @@ noinst_PROGRAMS += libvirt-is-vers...
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...KAGES) > OCAMLOPTFLAGS = $(OCAMLCFLAGS) > > OCAMLCLIBS = \ > - $(LIBXML2_LIBS) -lncurses \ > + $(LIBXML2_LIBS) $(LIBINTL) -lncurses \ > -L../src/.libs -lutils \ > -L../gnulib/lib/.libs -lgnu > > diff --git a/src/Makefile.am b/src/Makefile.am > index be8d3a3..a83f257 100644 > --- a/src/Makefile.am > +++ b/src/Makefile.am > @@ -159,7 +159,7 @@ libguestfs_la_LIBADD = \ > $(INET_NTOP_LIB) \ > $(LIBSOCKET) \ > $(LIB_CLOCK_GETTIME) \ > - $(LIBINTL) \ > + $(LTLIBINTL) \ > $(LTLIBTHREAD) \ > $(LTLIBICONV) \ > $(SERVENT_LIB)...
2015 Jan 26
6
[PATCH 1/6] cmd: add a way to run (and wait) asynchronously commands
--- src/command.c | 64 +++++++++++++++++++++++++++++++++++++++++++------- src/guestfs-internal.h | 3 +++ 2 files changed, 58 insertions(+), 9 deletions(-) diff --git a/src/command.c b/src/command.c index 4bb469b..e26573d 100644 --- a/src/command.c +++ b/src/command.c @@ -360,7 +360,7 @@ debug_command (struct command *cmd) } static int -run_command (struct command *cmd)
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi, continuing what started a couple of weeks ago [1], the attached patch series continues the work in making it easier to build and run libguestfs (in fixed appliance mode) on OSes different than Linux. The provided changes should cause no functional changes on Linux. [1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html Thanks, -- Pino Pino Toscano (9): build: check
2015 Feb 02
8
[PATCH 0/7 v2] Make copy_in & copy_out APIs, and use copy_in in customize
Hi, attached there is the second version of the patch series adding copy_in and copy_out in the library, mostly moving them from guestfish. It also adds the copy_in usage in virt-customize, as aid in a new image building. Thanks, Pino Toscano (7): cmd: add a way to run (and wait) asynchronously commands cmd: add a child-setup callback cmd: add the possibility to get a fd to the process