From: nbd Date: Tue, 21 Feb 2012 00:52:43 +0000 (+0000) Subject: dropbear: disable assertions to reduce code size X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/3b80853a651001772ad2c6ab0b3a4abe3eb00bec?ds=sidebyside dropbear: disable assertions to reduce code size git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30668 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/dropbear/patches/140-disable_assert.patch b/package/dropbear/patches/140-disable_assert.patch new file mode 100644 index 000000000..2628f3407 --- /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_ */