2016-05-04 13:33:40 +00:00
|
|
|
#ifndef DROPBEAR_OPTIONS_H
|
|
|
|
#define DROPBEAR_OPTIONS_H
|
2004-06-01 02:46:09 +00:00
|
|
|
|
2016-05-04 13:33:40 +00:00
|
|
|
/*
|
2017-06-24 15:32:25 +00:00
|
|
|
> > > Don't edit this file any more! < < <
|
|
|
|
|
2016-05-04 13:33:40 +00:00
|
|
|
Local compile-time configuration should be defined in localoptions.h
|
2018-03-01 14:12:30 +00:00
|
|
|
in the build directory.
|
2016-05-04 13:33:40 +00:00
|
|
|
See default_options.h.in for a description of the available options.
|
|
|
|
*/
|
2004-06-01 02:46:09 +00:00
|
|
|
|
2018-02-18 03:22:13 +00:00
|
|
|
/* Some configuration options or checks depend on system config */
|
|
|
|
#include "config.h"
|
|
|
|
|
2016-05-04 13:33:40 +00:00
|
|
|
#ifdef LOCALOPTIONS_H_EXISTS
|
|
|
|
#include "localoptions.h"
|
2006-03-08 12:41:27 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-19 14:16:50 +00:00
|
|
|
/* default_options.h is processed to add #ifndef guards */
|
|
|
|
#include "default_options_guard.h"
|
2008-11-05 13:30:23 +00:00
|
|
|
|
2016-05-04 13:33:40 +00:00
|
|
|
/* Some other defines that mostly should be left alone are defined
|
2008-09-23 16:02:51 +00:00
|
|
|
* in sysoptions.h */
|
|
|
|
#include "sysoptions.h"
|
2004-06-01 02:46:09 +00:00
|
|
|
|
2016-05-04 13:33:40 +00:00
|
|
|
#endif /* DROPBEAR_OPTIONS_H */
|