summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-07-06 10:14:28 +0200
committerThomas Haller <thaller@redhat.com>2022-07-06 10:14:28 +0200
commit18f14d044d2a59ca3700893b11cc48b98c963ddc (patch)
treee6def3b4e40498e2d7535e3956c9dfeff6e6d615
parent8fdcd7030c97362793315b9df7e3d26cb57563b5 (diff)
parentf852f532b0f1a89e90b53969a131e69944329196 (diff)
downloadNetworkManager-18f14d044d2a59ca3700893b11cc48b98c963ddc.tar.gz
c-siphash: re-import git-subtree for 'src/c-siphash'
git subtree pull --prefix src/c-siphash git@github.com:c-util/c-siphash.git main --squash
-rw-r--r--src/c-siphash/NEWS.md8
-rw-r--r--src/c-siphash/src/meson.build5
2 files changed, 5 insertions, 8 deletions
diff --git a/src/c-siphash/NEWS.md b/src/c-siphash/NEWS.md
index 0110711ff7..a0227c0458 100644
--- a/src/c-siphash/NEWS.md
+++ b/src/c-siphash/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/c-siphash/src/meson.build b/src/c-siphash/src/meson.build
index 55c2e4f150..7300f355a9 100644
--- a/src/c-siphash/src/meson.build
+++ b/src/c-siphash/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,
)