Displaying 4 results from an estimated 4 matches for "92e0d4e3".
2020 Mar 26
0
[PATCH nbdkit 4/9] vddk: Compile dummy libvixDiskLib.so with -no-undefined on all platforms.
...platforms since it
doesn't rely on external undefined symbols.
Reverts commit ba000b469c24ad69604137de975b255bbe70d056.
---
 configure.ac      | 9 ---------
 tests/Makefile.am | 6 +-----
 2 files changed, 1 insertion(+), 14 deletions(-)
diff --git a/configure.ac b/configure.ac
index 0a0ac60a..92e0d4e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -412,15 +412,6 @@ AS_CASE([$host_os],
 AC_MSG_RESULT([$SHARED_LDFLAGS])
 AC_SUBST([SHARED_LDFLAGS])
 
-AC_MSG_CHECKING([if we are on a windows platform])
-AS_CASE([$host_os],
-  [mingw*|msys*|cygwin*], [is_windows=yes],
-  [is_windows=no]
-)
-AC_MSG_R...
2020 Mar 26
0
[PATCH nbdkit 5/9 patch split 1/5] Create libnbdkit.so.
...| 48 +++++++++++++++++++++++++++++++
 lib/init.c         | 53 ++++++++++++++++++++++++++++++++++
 wrapper.c          | 18 ++++++++----
 lib/libnbdkit.syms | 47 ++++++++++++++++++++++++++++++
 9 files changed, 237 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index 92e0d4e3..bf720cec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1057,6 +1057,7 @@ AC_CONFIG_FILES([Makefile
                  filters/truncate/Makefile
                  filters/xz/Makefile
                  fuzzing/Makefile
+                 lib/Makefile
                  server/Makefile...
2020 Mar 26
15
[PATCH nbdkit 0/9] Create libnbdkit.so
This creates libnbdkit.so as discussed in the following thread:
https://www.redhat.com/archives/libguestfs/2020-March/thread.html#00203
test-delay-shutdown.sh fails for unclear reasons.
This series starts by reverting "tests: Don't strand hung nbdkit
processes" which is because several other tests fail randomly unless I
revert this patch.  I didn't investigate this yet so it
2020 Mar 26
9
[PATCH nbdkit 5/9 patch split 1/5] Create libnbdkit.so.
This is the previous 5/9 patch posted earlier today, split into
reviewable chunks.  This passes bisection with -x 'make && make
check', but I didn't work very hard on the commit messages, so I refer
you back to the original patch to explain how it works:
https://www.redhat.com/archives/libguestfs/2020-March/msg00248.html
Rich.