diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-10-21 15:26:25 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-10-21 15:26:25 +0300 |
commit | 5f8561a6bcdb66e05ca539365cce33a9fc1817a2 (patch) | |
tree | 3ceb20e3e0e8fc1a0759199ccdf7238f31fd4267 /storage/mroonga | |
parent | 3c2ab896b9642c43805a5dfc174c81fc5f902db0 (diff) | |
parent | 489ef007bec398c3b7b628325b225c3a015922cf (diff) | |
download | mariadb-git-5f8561a6bcdb66e05ca539365cce33a9fc1817a2.tar.gz |
Merge 10.4 into 10.5
Diffstat (limited to 'storage/mroonga')
-rw-r--r-- | storage/mroonga/vendor/groonga/lib/CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/mroonga/vendor/groonga/lib/CMakeLists.txt b/storage/mroonga/vendor/groonga/lib/CMakeLists.txt index 8c71563f722..4f076458a36 100644 --- a/storage/mroonga/vendor/groonga/lib/CMakeLists.txt +++ b/storage/mroonga/vendor/groonga/lib/CMakeLists.txt @@ -89,7 +89,12 @@ else() endif() set_target_properties(libgroonga PROPERTIES OUTPUT_NAME "groonga") +if (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC) + set(ATOMIC_LIBS atomic) +endif() + set(GRN_ALL_LIBRARIES + ${ATOMIC_LIBS} ${EXECINFO_LIBS} ${RT_LIBS} ${PTHREAD_LIBS} |