2019-06-09 20:44:26 +00:00
|
|
|
#ifndef DROPBEAR_OPTIONS_H
|
|
|
|
#define DROPBEAR_OPTIONS_H
|
2014-12-10 21:56:49 +00:00
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
/*
|
|
|
|
> > > Don't edit this file any more! < < <
|
|
|
|
|
|
|
|
Local compile-time configuration should be defined in localoptions.h
|
|
|
|
in the build directory.
|
|
|
|
See default_options.h.in for a description of the available options.
|
|
|
|
*/
|
2014-12-10 21:56:49 +00:00
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
/* Some configuration options or checks depend on system config */
|
|
|
|
#include "config.h"
|
2014-12-10 21:56:49 +00:00
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
#ifdef LOCALOPTIONS_H_EXISTS
|
|
|
|
#include "localoptions.h"
|
2014-12-10 21:56:49 +00:00
|
|
|
#endif
|
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
/* default_options.h is processed to add #ifndef guards */
|
|
|
|
#include "default_options_guard.h"
|
2014-12-10 21:56:49 +00:00
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
/* Some other defines that mostly should be left alone are defined
|
2014-12-10 21:56:49 +00:00
|
|
|
* in sysoptions.h */
|
|
|
|
#include "sysoptions.h"
|
|
|
|
|
2019-06-09 20:44:26 +00:00
|
|
|
#endif /* DROPBEAR_OPTIONS_H */
|