search for: is_publ

Displaying 9 results from an estimated 9 matches for "is_publ".

Did you mean: is_public
2024 Jul 31
1
4.21-rc: ldb_version.h is missing
...the logic: target='include/ldb_version.h', public_headers='include/ldb_version.h', - public_headers_install=not private_library) + public_headers_install=not bld.env.ldb_is_public_library) t.env.LDB_VERSION = LDB_VERSION from "not private" to "not is_public"? Douglas
2024 Aug 03
1
4.21-rc: ldb_version.h is missing
...target='include/ldb_version.h', > public_headers='include/ldb_version.h', > - public_headers_install=not private_library) > + public_headers_install=not bld.env.ldb_is_public_library) > > t.env.LDB_VERSION = LDB_VERSION > > from "not private" to "not is_public"? The logic suggests "public_headers_install=bld.env.ldb_is_public_library" (without the "not" part). Lemme see... yes, the "not" should be...
2024 Aug 03
1
4.21-rc: ldb_version.h is missing
...target='include/ldb_version.h', > > public_headers='include/ldb_version.h', > > - public_headers_install=not private_library) > > + public_headers_install=not bld.env.ldb_is_public_library) > > > > t.env.LDB_VERSION = LDB_VERSION > > > > from "not private" to "not is_public"? > > The logic suggests "public_headers_install=bld.env.ldb_is_public_library" > (without the "not" part). Lemme see......
2016 Nov 08
0
[PATCH 2/3] Split internal stuff out of guestfs.h
...c/guestfs_protocol.c /src/guestfs_protocol.h /src/guestfs_protocol.x +/src/guestfs-private.h /src/guestfs-structs.pod /src/libguestfs.3 /src/libguestfs.pc diff --git a/generator/c.ml b/generator/c.ml index f0df5ea..4497c48 100644 --- a/generator/c.ml +++ b/generator/c.ml @@ -39,7 +39,13 @@ let is_public { visibility = v } = match v with | VPublic | VPublicNoFish | VStateTest | VDebug -> true | VBindTest | VInternal -> false -let is_private f = not (is_public f) +let is_private { visibility = v } = match v with + | VBindTest -> true + | VPublic | VPublicNoFish | VStateTest | VD...
2016 Nov 08
4
[PATCH 1/3] generator: c: move internal functions
Move the generate_all_structs and generate_all_headers functions, previously internal within the implementation of generate_guestfs_h, to be usable by other functions in the same "C" module (but not public). Only code motion. --- generator/c.ml | 163 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 82 insertions(+), 81 deletions(-) diff --git a/generator/c.ml
2024 Jul 30
1
4.21-rc: ldb_version.h is missing
When building libldb as public library, its install target does not install ldb_version.h header file, which is included from ldb.h, so the resulting header files are unusable. Thanks, /mjt -- GPG Key transition (from rsa2048 to rsa4096) since 2024-04-24. New key: rsa4096/61AD3D98ECDF2C8E 9D8B E14E 3F2A 9DD7 9199 28F1 61AD 3D98 ECDF 2C8E Old key: rsa2048/457CE0A0804465C5 6EE1 95D1 886E 8FFB
2016 Sep 02
6
[PATCH 0/4] generator: Some work to split large C files
By splitting up large C files we can make parallel compiles a bit faster. Rich.
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
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)