Displaying 5 results from an estimated 5 matches for "c7166613".
2023 Apr 17
2
[PATCH libnbd v2] README: Document additional packages
When building from git we need autoconf, automake and libtool.
Signed-off-by: Nir Soffer <nsoffer at redhat.com>
---
Changes sinve v1:
- Remove `,` between package namses (Laszlo)
README.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/README.md b/README.md
index c7166613..7eed0e31 100644
--- a/README.md
+++ b/README.md
@@ -32,10 +32,17 @@ ## License
very liberal license.
## Building from source
+Building from source requires additional packages. On rpm based system
+use:
+
+```
+dnf install autoconf automake libtool
+```
+
To build from git:
```
autore...
2023 Apr 17
1
[PATCH libnbd] README: Document additional packages
When building from git we need autoconf, automake and libtool.
Signed-off-by: Nir Soffer <nsoffer at redhat.com>
---
README.md | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/README.md b/README.md
index c7166613..42a187c0 100644
--- a/README.md
+++ b/README.md
@@ -32,10 +32,17 @@ ## License
very liberal license.
## Building from source
+Building from source requires additional packages. On rpm based system
+use:
+
+```
+dnf install autoconf, automake, libtool
+```
+
To build from git:
```
auto...
2023 Apr 17
1
[PATCH libnbd] README: Document additional packages
...4/17/23 18:36, Nir Soffer wrote:
> When building from git we need autoconf, automake and libtool.
>
> Signed-off-by: Nir Soffer <nsoffer at redhat.com>
> ---
> README.md | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/README.md b/README.md
> index c7166613..42a187c0 100644
> --- a/README.md
> +++ b/README.md
> @@ -32,10 +32,17 @@ ## License
> very liberal license.
>
>
> ## Building from source
>
> +Building from source requires additional packages. On rpm based system
> +use:
> +
> +```
> +dnf install au...
2023 Aug 11
2
[libnbd PATCH] golang: Bump minimum Go version to 1.17
...lice() when we require Go 1.17.
- s := (*[1 << 30]uint32)(unsafe.Pointer(entries))[:count:count]
- copy(ret, s)
+ s := unsafe.Slice(entries, count)
+ for i, item := range s {
+ ret[i] = uint32(item)
+ }
return ret
}
";
diff --git a/README.md b/README.md
index c7166613..8524038e 100644
--- a/README.md
+++ b/README.md
@@ -105,7 +105,7 @@ ## Building from source
* Python >= 3.3 to build the Python 3 bindings and NBD shell (nbdsh).
* FUSE 3 to build the nbdfuse program.
* Linux >= 6.0 and ublksrv library to build nbdublk program.
-* go and cgo, for compilin...
2023 Apr 17
1
[PATCH libnbd v2] README: Document additional packages
...ke and libtool.
>
> Signed-off-by: Nir Soffer <nsoffer at redhat.com>
> ---
>
> Changes sinve v1:
> - Remove `,` between package namses (Laszlo)
>
> README.md | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/README.md b/README.md
> index c7166613..7eed0e31 100644
> --- a/README.md
> +++ b/README.md
> @@ -32,10 +32,17 @@ ## License
> very liberal license.
>
>
> ## Building from source
>
> +Building from source requires additional packages. On rpm based system
> +use:
> +
> +```
> +dnf install au...