search for: v2v_minor

Displaying 5 results from an estimated 5 matches for "v2v_minor".

2019 Dec 16
2
[v2v PATCH] build: add --with-extra configure parameter
...Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([virt-v2v],1.41.8) +# The major, minor, and release fields MUST be numbers. Packagers can +# add extra information using --with-extra="..." which may be any +# freeform string. +m4_define([v2v_major], [1]) +m4_define([v2v_minor], [41]) +m4_define([v2v_release], [8]) + +AC_INIT([virt-v2v],v2v_major.v2v_minor.v2v_release) # Headings within the configure script output. m4_define([HEADING], @@ -37,6 +44,25 @@ AC_CONFIG_MACRO_DIR([m4]) dnl Initialize libtool. LT_INIT +dnl Extra string, a freeform string defined by pa...
2019 Dec 16
0
Re: [v2v PATCH] build: add --with-extra configure parameter
...on, MA 02110-1301 USA. > > -AC_INIT([virt-v2v],1.41.8) > +# The major, minor, and release fields MUST be numbers. Packagers can > +# add extra information using --with-extra="..." which may be any > +# freeform string. > +m4_define([v2v_major], [1]) > +m4_define([v2v_minor], [41]) > +m4_define([v2v_release], [8]) > + > +AC_INIT([virt-v2v],v2v_major.v2v_minor.v2v_release) > > # Headings within the configure script output. > m4_define([HEADING], > @@ -37,6 +44,25 @@ AC_CONFIG_MACRO_DIR([m4]) > dnl Initialize libtool. > LT_INIT >...
2015 Nov 16
0
[PATCH] p2v: Send physical server 'dmesg' output to debug dir on conversion server.
...endor (const char *if_name, int truncate); extern void wait_network_online (const struct config *); +/* whole-file.c */ +extern int read_whole_file (const char *filename, char **data_r, size_t *size_r); + /* virt-v2v version and features (read from remote). */ extern int v2v_major; extern int v2v_minor; diff --git a/p2v/ssh.c b/p2v/ssh.c index cd059c5..6dc6854 100644 --- a/p2v/ssh.c +++ b/p2v/ssh.c @@ -848,7 +848,8 @@ wait_for_prompt (mexp_h *h) mexp_h * start_remote_connection (struct config *config, - const char *remote_dir, const char *libvirt_xml) +...
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.