dropbear: disable assertions to reduce code size
SVN-Revision: 30668
This commit is contained in:
parent
1a167905c6
commit
d679fa5f9f
14
package/dropbear/patches/140-disable_assert.patch
Normal file
14
package/dropbear/patches/140-disable_assert.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- a/dbutil.h
|
||||
+++ b/dbutil.h
|
||||
@@ -94,6 +94,10 @@
|
||||
#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
|
||||
|
||||
/* Dropbear assertion */
|
||||
-#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
||||
+#ifndef DROPBEAR_ASSERT_ENABLED
|
||||
+#define DROPBEAR_ASSERT_ENABLED 0
|
||||
+#endif
|
||||
+
|
||||
+#define dropbear_assert(X) do { if (DROPBEAR_ASSERT_ENABLED && !(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
||||
|
||||
#endif /* _DBUTIL_H_ */
|
Loading…
Reference in New Issue
Block a user