search for: 2fe5b24

Displaying 3 results from an estimated 3 matches for "2fe5b24".

Did you mean: 0fe5b28
2017 Jan 25
0
[PATCH v2 1/7] lib: Share common protocol and errnostring libraries with the library and daemon.
...,7 @@ SUBDIRS += gnulib/tests endif # Basic source for the library. +SUBDIRS += common/errnostring common/protocol SUBDIRS += src docs examples po # The daemon and the appliance. diff --git a/common/errnostring/Makefile.am b/common/errnostring/Makefile.am new file mode 100644 index 0000000..2fe5b24 --- /dev/null +++ b/common/errnostring/Makefile.am @@ -0,0 +1,45 @@ +# libguestfs +# Copyright (C) 2017 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; ei...
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.