summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-07-06 10:13:02 +0200
committerThomas Haller <thaller@redhat.com>2022-07-06 10:13:02 +0200
commitf852f532b0f1a89e90b53969a131e69944329196 (patch)
tree0e53c99da8d43c44744e4e74153670157fd6beff
parent2750002547fabd34343a24c518db5837ce888026 (diff)
downloadNetworkManager-f852f532b0f1a89e90b53969a131e69944329196.tar.gz
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
-rw-r--r--NEWS.md8
-rw-r--r--src/meson.build5
2 files changed, 5 insertions, 8 deletions
diff --git a/NEWS.md b/NEWS.md
index 0110711ff7..a0227c0458 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -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
diff --git a/src/meson.build b/src/meson.build
index 55c2e4f150..7300f355a9 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -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,
)