From d679fa5f9f8147737da0f8b948b44124e43d5ae4 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 21 Feb 2012 00:52:43 +0000 Subject: [PATCH] dropbear: disable assertions to reduce code size SVN-Revision: 30668 --- package/dropbear/patches/140-disable_assert.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/dropbear/patches/140-disable_assert.patch diff --git a/package/dropbear/patches/140-disable_assert.patch b/package/dropbear/patches/140-disable_assert.patch new file mode 100644 index 0000000000..2628f34071 --- /dev/null +++ b/package/dropbear/patches/140-disable_assert.patch @@ -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_ */ -- 2.25.1