options.h 685 B

1234567891011121314151617181920212223242526
  1. #ifndef DROPBEAR_OPTIONS_H
  2. #define DROPBEAR_OPTIONS_H
  3. /*
  4. > > > Don't edit this file any more! < < <
  5. Local compile-time configuration should be defined in localoptions.h
  6. in the build directory.
  7. See default_options.h.in for a description of the available options.
  8. */
  9. /* Some configuration options or checks depend on system config */
  10. #include "config.h"
  11. #ifdef LOCALOPTIONS_H_EXISTS
  12. #include "localoptions.h"
  13. #endif
  14. /* default_options.h is processed to add #ifndef guards */
  15. #include "default_options_guard.h"
  16. /* Some other defines that mostly should be left alone are defined
  17. * in sysoptions.h */
  18. #include "sysoptions.h"
  19. #endif /* DROPBEAR_OPTIONS_H */