diff options
author | Yuval Lifshitz <ylifshit@redhat.com> | 2023-06-11 20:22:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-11 20:22:17 +0200 |
commit | b1a443fec38c6890ace8f974356106b557c029e8 (patch) | |
tree | 82713d4f426df3c6cf7c606335696a21f965a803 | |
parent | Merge pull request #51468 from vedanshbhartia/coverity_time (diff) | |
parent | rgw: fix tests build w/o AMQP (diff) | |
download | ceph-b1a443fec38c6890ace8f974356106b557c029e8.tar.xz ceph-b1a443fec38c6890ace8f974356106b557c029e8.zip |
Merge pull request #51366 from SMIL-Infra/fix-test-build
rgw: fix tests build w/o AMQP
-rw-r--r-- | src/rgw/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rgw/CMakeLists.txt b/src/rgw/CMakeLists.txt index 4c43568b356..1027fc02e19 100644 --- a/src/rgw/CMakeLists.txt +++ b/src/rgw/CMakeLists.txt @@ -550,13 +550,13 @@ target_link_libraries(rgw ${LIB_RESOLV} ${CURL_LIBRARIES} ${EXPAT_LIBRARIES} + OpenSSL::SSL PUBLIC RapidJSON::RapidJSON dmclock::dmclock) if(WITH_RADOSGW_AMQP_ENDPOINT) target_link_libraries(rgw PRIVATE RabbitMQ::RabbitMQ) - target_link_libraries(rgw PRIVATE OpenSSL::SSL) endif() if(WITH_RADOSGW_KAFKA_ENDPOINT) |