Skip to content

Commit 9a0f196

Browse files
committed
Remove boost dependency from pkg-config template file
Boost not provide pkg-config file, so if execute 'pkg-config --exist cppkafka' command with boost dependency, user always gets non-zero return. And PKG_SEARCH_MODULE in cmake use the command to check the status of cppkafka. The boost dependency should be removed for general usage can be works.
1 parent e5aec82 commit 9a0f196

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/cppkafka.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ Url: https://github.com/mfontanini/cppkafka
99
Description: C++ wrapper library on top of RdKafka
1010
Version: @CPPKAFKA_VERSION@
1111
Requires:
12-
Requires.private: rdkafka >= 0.9.4, boost
12+
Requires.private: rdkafka >= 0.9.4
1313
Libs: -L${libdir} -L${sharedlibdir} -lcppkafka
1414
Cflags: -I${includedir} -I${includedir}/cppkafka

0 commit comments

Comments
 (0)