Merge 093c757d7c into merged_master (Bitcoin PR bitcoin/bitcoin#32000)

This commit is contained in:
ivanlele 2026-04-16 14:02:23 +00:00
commit 94cfb3fcee
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -68,12 +68,12 @@ Below we compare the PinSketch algorithm (which `libminisketch` is an implementa
## Building
The build system is very rudimentary for now, and [improvements](https://github.com/sipa/minisketch/pulls) are welcome.
The build system is very rudimentary for now, and [improvements](https://github.com/bitcoin-core/minisketch/pulls) are welcome.
The following may work and produce a `libminisketch.a` file you can link against:
```bash
git clone https://github.com/sipa/minisketch
git clone https://github.com/bitcoin-core/minisketch
cd minisketch
./autogen.sh && ./configure && make
```

View file

@ -1,4 +1,4 @@
AC_INIT([minisketch], [0.0.1], [http://github.com/sipa/minisketch/])
AC_INIT([minisketch], [0.0.1], [http://github.com/bitcoin-core/minisketch/])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])