search for: ac71b39

Displaying 3 results from an estimated 3 matches for "ac71b39".

2017 Feb 27
1
[PATCH] lib: Require libmagic.
...version of libguestfs was compiled without the libmagic library")); \ - return r - -char * -guestfs_impl_file_architecture (guestfs_h *g, const char *path) -{ - NOT_IMPL(NULL); -} - -#endif /* no libmagic at compile time */ diff --git a/m4/guestfs_libraries.m4 b/m4/guestfs_libraries.m4 index ac71b39..0882d27 100644 --- a/m4/guestfs_libraries.m4 +++ b/m4/guestfs_libraries.m4 @@ -230,13 +230,14 @@ PKG_CHECK_MODULES([PCRE], [libpcre]) dnl Check for Augeas >= 1.0.0 (required). PKG_CHECK_MODULES([AUGEAS],[augeas >= 1.0.0]) -dnl libmagic (highly recommended) +dnl libmagic (required) AC_CH...
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.