Squashed 'src/c-siphash/' changes from 1da8a0d46bfd..04187aa367ee

04187aa367ee build: prepare v1.0.0 release
0e41909e19e1 build: use libcstdaux.version-scripts
203347c4d3e4 build: drop --no-undefined

git-subtree-dir: src/c-siphash
git-subtree-split: 04187aa367ee24dcbfb23678558b6efa31fd6511
This commit is contained in:
Thomas Haller 2022-07-06 10:13:02 +02:00
parent 2750002547
commit f852f532b0
2 changed files with 5 additions and 8 deletions

View file

@ -1,11 +1,9 @@
# c-siphash - Streaming-capable SipHash Implementation
## CHANGES WITH 1:
## CHANGES WITH 1.0.0:
* Initial release of c-siphash.
* TBD
Contributions from: David Rheinsberg, Tom Gundersen
Contributions from: TBD
- TBD, YYYY-MM-DD
- Brno, 2022-06-22

View file

@ -19,10 +19,9 @@ libcsiphash_both = both_libraries(
],
dependencies: libcsiphash_deps,
install: not meson.is_subproject(),
link_args: [
'-Wl,--no-undefined',
link_args: dep_cstdaux.get_variable('version-scripts') == 'yes' ? [
'-Wl,--version-script=@0@'.format(libcsiphash_symfile),
],
] : [],
link_depends: libcsiphash_symfile,
soversion: 0,
)