Displaying 3 results from an estimated 3 matches for "777471b".
2020 Mar 12
0
[PATCH libnbd 3/3] build: Test new pkgconf file.
...ests the ./run version rather than the real one.
---
.gitignore | 1 +
configure.ac | 2 ++
tests/Makefile.am | 4 +++-
tests/pkgconf.sh.in | 38 ++++++++++++++++++++++++++++++++++++++
4 files changed, 44 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index 777471b..dea9274 100644
--- a/.gitignore
+++ b/.gitignore
@@ -159,6 +159,7 @@ Makefile.in
/tests/keys.psk
/tests/meta-base-allocation
/tests/oldstyle
+/tests/pkgconf.sh
/tests/pki/
/tests/read-only-flag
/tests/read-write-flag
diff --git a/configure.ac b/configure.ac
index 9fd284b..0200394 100644
---...
2020 Mar 12
5
[PATCH libnbd 1/3] tests: Don't use <config.h> in simple compile tests.
For these simple compile tests where we want to ensure that a basic
external program could be compiled using libnbd, we shouldn't include
<config.h>. This is because we want to test here that <libnbd.h> can
stand alone, without needing anything defined by the GNU autotools
infrastructure.
Of course we can use <config.h> in other test programs where we aren't
evaluating
2020 Mar 12
0
[PATCH libnbd 2/3] build: Allow C programs using libnbd to be compiled against build dir.
...tignore | 1 +
configure.ac | 1 +
lib/Makefile.am | 1 +
lib/local/libnbd.pc.in | 36 ++++++++++++++++++++++++++++++++++++
run.in | 12 +++++++++++-
5 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
index ec54b53..777471b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,6 +90,7 @@ Makefile.in
/lib/api.c
/lib/libnbd.pc
/lib/libnbd.syms
+/lib/local/libnbd.pc
/lib/states-run.c
/lib/states.c
/lib/states.h
diff --git a/configure.ac b/configure.ac
index 5e9bac4..9fd284b 100644
--- a/configure.ac
+++ b/configure.ac
@@...