diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-04-07 01:26:07 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-04-07 01:26:07 +0700 |
commit | 094df1d5210d15b2e05fd98b47e9a91221c283f5 (patch) | |
tree | 86a6b9073c8133396d6f04bf0c4305f416ac639a /development/snappy/73.patch | |
parent | 6547be4996ee58951c779c0f17be4a33f57b4719 (diff) | |
download | slackbuilds-094df1d5210d15b2e05fd98b47e9a91221c283f5.tar.gz |
development/snappy: Fix build with gtest installed.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/snappy/73.patch')
-rw-r--r-- | development/snappy/73.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/development/snappy/73.patch b/development/snappy/73.patch new file mode 100644 index 0000000000..20f7bfada6 --- /dev/null +++ b/development/snappy/73.patch @@ -0,0 +1,23 @@ +From 89342ecf34894461cc64c9cbe3f8bc0d18df5073 Mon Sep 17 00:00:00 2001 +From: "liangyukun.lyk" <lyk19961210@gmail.com> +Date: Mon, 27 Aug 2018 18:08:46 +0800 +Subject: [PATCH] fix cmake build error + +--- + CMakeLists.txt | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 41a2124..2a822dd 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -145,6 +145,9 @@ if(SNAPPY_BUILD_TESTS) + target_compile_definitions(snappy_unittest PRIVATE -DHAVE_CONFIG_H) + target_link_libraries(snappy_unittest snappy ${GFLAGS_LIBRARIES}) + ++ if(HAVE_GTEST) ++ target_link_libraries(snappy_unittest gtest) ++ endif(HAVE_GTEST) + if(HAVE_LIBZ) + target_link_libraries(snappy_unittest z) + endif(HAVE_LIBZ) |