diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-04-04 18:02:14 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-04-04 18:33:10 +0200 |
| commit | 5b4f4e626f696f4ab8717beff56f36365d87d7b4 (patch) | |
| tree | 5645324558a5e8b638f09b84f436843fcceefdab /lib/base64.c | |
| parent | 92d930ede593dba53d1cb66c6346c45e6d1ba051 (diff) | |
build: first header *must* be zebra.h or config.h
This has already been a requirement for Solaris, it is still a
requirement for some of the autoconf feature checks to work correctly,
and it will be a requirement for `-fms-extensions`.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/base64.c')
| -rw-r--r-- | lib/base64.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/base64.c b/lib/base64.c index e3f238969b..6f0be039f1 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -3,6 +3,10 @@ * For details, see http://sourceforge.net/projects/libb64 */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include "base64.h" static const int CHARS_PER_LINE = 72; |
