search for: 4cc928a

Displaying 4 results from an estimated 4 matches for "4cc928a".

2017 Jan 25
0
[PATCH v2 1/7] lib: Share common protocol and errnostring libraries with the library and daemon.
...n/errnostring.c daemon/ext2.c daemon/fallocate.c daemon/file.c @@ -395,8 +395,6 @@ src/copy-in-out.c src/create.c src/dbdump.c src/drives.c -src/errnostring-gperf.c -src/errnostring.c src/errors.c src/event-string.c src/events.c diff --git a/src/Makefile.am b/src/Makefile.am index c315c5d..4cc928a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,7 +20,6 @@ include $(top_srcdir)/subdir-rules.mk noinst_PROGRAMS = generator_built = \ - guestfs_protocol.x \ guestfs.h \ guestfs-internal-actions.h \ guestfs-internal-frontend-cleanups.h \ @@ -33,9 +32,6 @@ generator_built = \ a...
2017 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...ECTS = $(BOBJECTS:.cmo=.cmx) # installed copy of libguestfs. OCAMLPACKAGES = \ -package str,unix \ + -I $(top_builddir)/common/utils/.libs \ -I $(top_builddir)/src/.libs \ -I $(top_builddir)/gnulib/lib/.libs \ -I $(top_builddir)/ocaml \ diff --git a/src/Makefile.am b/src/Makefile.am index 4cc928a..0f6a258 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -22,7 +22,6 @@ noinst_PROGRAMS = generator_built = \ guestfs.h \ guestfs-internal-actions.h \ - guestfs-internal-frontend-cleanups.h \ actions-0.c \ actions-1.c \ actions-2.c \ @@ -60,11 +59,11 @@ lib_LTLIBRARIES = libguestfs...
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
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.