mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00

Plugins that were made using an older skeleton (e.g. from Bro 2.5.x) may still reference "bro-config.h", "bro-path-dev", or "bro" from the build tree, so we can simply provide compatibility symlinks/wrappers for the new files that use "zeek" in their names.
8 lines
175 B
C
8 lines
175 B
C
#ifndef BRO_CONFIG_H
|
|
#define BRO_CONFIG_H
|
|
|
|
#pragma message("Warning: bro-config.h is deprecated, use zeek-config.h instead")
|
|
|
|
#include "zeek-config.h"
|
|
|
|
#endif // BRO_CONFIG_H
|