mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
5ec179377a
They have been superseded by a new include resolution configuration that lives outside clickhouse source tree.
6 lines
142 B
C++
6 lines
142 B
C++
#if __has_include(<rdkafka.h>) // maybe bundled
|
|
# include_next <rdkafka.h>
|
|
#else // system
|
|
# include_next <librdkafka/rdkafka.h>
|
|
#endif
|