150-dbconvert_standalone.patch 628 B

12345678910111213141516
  1. Index: dropbear-0.50/options.h
  2. ===================================================================
  3. --- dropbear-0.50.orig/options.h 2007-08-10 23:47:47.000000000 +0200
  4. +++ dropbear-0.50/options.h 2007-08-10 23:47:49.000000000 +0200
  5. @@ -5,6 +5,11 @@
  6. #ifndef _OPTIONS_H_
  7. #define _OPTIONS_H_
  8. +#if !defined(DROPBEAR_CLIENT) && !defined(DROPBEAR_SERVER)
  9. +#define DROPBEAR_SERVER
  10. +#define DROPBEAR_CLIENT
  11. +#endif
  12. +
  13. /******************************************************************
  14. * Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif"
  15. * parts are to allow for commandline -DDROPBEAR_XXX options etc.