Skip to content

Commit

Permalink
LibSpatialIndex_jll build 2.0.0+0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlbuild committed Sep 26, 2024
1 parent 88dbe1c commit d7070a7
Show file tree
Hide file tree
Showing 29 changed files with 179 additions and 147 deletions.
182 changes: 95 additions & 87 deletions Artifacts.toml

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LibSpatialIndex_jll"
uuid = "00e98e2a-4326-5239-88cb-15dcbe1c18d0"
version = "1.9.3+0"
version = "2.0.0+0"

[deps]
JLLWrappers = "692b3bcd-3c85-4b1f-b108-f13ce0eb3210"
Expand All @@ -10,3 +10,5 @@ Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
[compat]
JLLWrappers = "1.2.0"
julia = "1.6"
Libdl = "< 0.0.1, 1"
Artifacts = "< 0.0.1, 1"
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# `LibSpatialIndex_jll.jl` (v1.9.3+0)
# `LibSpatialIndex_jll.jl` (v2.0.0+0)

[![deps](https://juliahub.com/docs/LibSpatialIndex_jll/deps.svg)](https://juliahub.com/ui/Packages/LibSpatialIndex_jll/aFgXE?page=2)
[![deps](https://juliahub.com/docs/LibSpatialIndex_jll/deps.svg)](https://juliahub.com/ui/Packages/General/LibSpatialIndex_jll/)

This is an autogenerated package constructed using [`BinaryBuilder.jl`](https://github.com/JuliaPackaging/BinaryBuilder.jl).

The originating [`build_tarballs.jl`](https://github.com/JuliaPackaging/Yggdrasil/blob/68d176dddf4f48b63e38a159d51603e0c5df7109/L/LibSpatialIndex/build_tarballs.jl) script can be found on [`Yggdrasil`](https://github.com/JuliaPackaging/Yggdrasil/), the community build tree.
The originating [`build_tarballs.jl`](https://github.com/JuliaPackaging/Yggdrasil/blob/3f205a987ee415a73d4729a942c9c178628b1878/L/LibSpatialIndex/build_tarballs.jl) script can be found on [`Yggdrasil`](https://github.com/JuliaPackaging/Yggdrasil/), the community build tree.

## Bug Reports

Expand All @@ -18,8 +18,7 @@ For more details about JLL packages and how to use them, see `BinaryBuilder.jl`

The tarballs for `LibSpatialIndex_jll.jl` have been built from these sources:

* compressed archive: https://github.com/libspatialindex/libspatialindex/releases/download/1.9.3/spatialindex-src-1.9.3.tar.bz2 (SHA256 checksum: `4a529431cfa80443ab4dcd45a4b25aebbabe1c0ce2fa1665039c80e999dcc50a`)
* files in directory, relative to originating `build_tarballs.jl`: [`./patches`](https://github.com/JuliaPackaging/Yggdrasil/tree/68d176dddf4f48b63e38a159d51603e0c5df7109/L/LibSpatialIndex/patches)
* compressed archive: https://github.com/libspatialindex/libspatialindex/releases/download/2.0.0/spatialindex-src-2.0.0.tar.bz2 (SHA256 checksum: `949e3fdcad406a63075811ab1b11afcc4afddc035fbc69a3acfc8b655b82e9a5`)

## Platforms

Expand All @@ -30,6 +29,7 @@ The tarballs for `LibSpatialIndex_jll.jl` have been built from these sources:
* `Linux aarch64 {cxxstring_abi=cxx11, libc=glibc}` (`aarch64-linux-gnu-cxx11`)
* `Linux aarch64 {cxxstring_abi=cxx03, libc=musl}` (`aarch64-linux-musl-cxx03`)
* `Linux aarch64 {cxxstring_abi=cxx11, libc=musl}` (`aarch64-linux-musl-cxx11`)
* `FreeBSD aarch64` (`aarch64-unknown-freebsd`)
* `Linux armv6l {call_abi=eabihf, cxxstring_abi=cxx03, libc=glibc}` (`armv6l-linux-gnueabihf-cxx03`)
* `Linux armv6l {call_abi=eabihf, cxxstring_abi=cxx11, libc=glibc}` (`armv6l-linux-gnueabihf-cxx11`)
* `Linux armv6l {call_abi=eabihf, cxxstring_abi=cxx03, libc=musl}` (`armv6l-linux-musleabihf-cxx03`)
Expand Down
8 changes: 4 additions & 4 deletions src/wrappers/aarch64-apple-darwin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "@rpath/libspatialindex.6.dylib")
JLLWrappers.@declare_library_product(libspatialindex_c, "@rpath/libspatialindex_c.6.dylib")
JLLWrappers.@declare_library_product(libspatialindex, "@rpath/libspatialindex.7.dylib")
JLLWrappers.@declare_library_product(libspatialindex_c, "@rpath/libspatialindex_c.7.dylib")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libspatialindex,
"lib/libspatialindex.6.1.1.dylib",
"lib/libspatialindex.7.0.0.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)

JLLWrappers.@init_library_product(
libspatialindex_c,
"lib/libspatialindex_c.6.1.1.dylib",
"lib/libspatialindex_c.7.0.0.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)

Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-linux-gnu-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-linux-gnu-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-linux-musl-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/aarch64-linux-musl-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
22 changes: 22 additions & 0 deletions src/wrappers/aarch64-unknown-freebsd.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Autogenerated wrapper script for LibSpatialIndex_jll for aarch64-unknown-freebsd
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libspatialindex,
"lib/libspatialindex.so",
RTLD_LAZY | RTLD_DEEPBIND,
)

JLLWrappers.@init_library_product(
libspatialindex_c,
"lib/libspatialindex_c.so",
RTLD_LAZY | RTLD_DEEPBIND,
)

JLLWrappers.@generate_init_footer()
end # __init__()
4 changes: 2 additions & 2 deletions src/wrappers/armv6l-linux-gnueabihf-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv6l-linux-gnueabihf-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv6l-linux-musleabihf-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv6l-linux-musleabihf-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv7l-linux-gnueabihf-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv7l-linux-gnueabihf-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv7l-linux-musleabihf-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/armv7l-linux-musleabihf-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/i686-linux-gnu-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/i686-linux-gnu-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/i686-linux-musl-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/i686-linux-musl-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/powerpc64le-linux-gnu-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/powerpc64le-linux-gnu-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
8 changes: 4 additions & 4 deletions src/wrappers/x86_64-apple-darwin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "@rpath/libspatialindex.6.dylib")
JLLWrappers.@declare_library_product(libspatialindex_c, "@rpath/libspatialindex_c.6.dylib")
JLLWrappers.@declare_library_product(libspatialindex, "@rpath/libspatialindex.7.dylib")
JLLWrappers.@declare_library_product(libspatialindex_c, "@rpath/libspatialindex_c.7.dylib")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
libspatialindex,
"lib/libspatialindex.6.1.1.dylib",
"lib/libspatialindex.7.0.0.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)

JLLWrappers.@init_library_product(
libspatialindex_c,
"lib/libspatialindex_c.6.1.1.dylib",
"lib/libspatialindex_c.7.0.0.dylib",
RTLD_LAZY | RTLD_DEEPBIND,
)

Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-linux-gnu-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-linux-gnu-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-linux-musl-cxx03.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-linux-musl-cxx11.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/x86_64-unknown-freebsd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
export libspatialindex, libspatialindex_c

JLLWrappers.@generate_wrapper_header("LibSpatialIndex")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.6")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.6")
JLLWrappers.@declare_library_product(libspatialindex, "libspatialindex.so.7")
JLLWrappers.@declare_library_product(libspatialindex_c, "libspatialindex_c.so.7")
function __init__()
JLLWrappers.@generate_init_header()
JLLWrappers.@init_library_product(
Expand Down

0 comments on commit d7070a7

Please sign in to comment.