On Wed, Jan 07, 2015 at 01:29:02PM +0100, Steven Barth wrote: > > On 07.01.2015 13:22, Pablo Neira Ayuso wrote: > > > >I think you mentioned to me already but > > > > configure: error: --with-mini-gmp MUST be used with --disable-debug > > > >any reason to enforce this? > > The problem here is that pr_debug expands to gmp_printf which is not > part of mini-gmp and the little replacement mpz_printf I added only > allows for formatting a single mpz_t (which is enough for all the > non-debug cases). > > So there are 3 options basically. > 1. Try to make gmp_printf standalone and port it from libgmp to mini-gmp. > This looked like a huge and complicated effort and would likely > blow up stuff considerably again. > 2. Replace pr_debug's gmp_printf with regular printf and rewrite all > the debug-calls to mpz_get_str() > and free() which sounds painful. > 3. Simply disabling debugging with mini-gmp. > Easy way out without obstructing things too much otherwise. I see. pr_debug() seems to be only relevant in sec/segtree.c, other spots can be replaced by printf in src/proto.c I think it would be good for us to have the debugging option enabled in embedded builds at this stage, at least as much as we can get in some easy way. We can ask people to run commands with --debug and paste the result of it. We can probably have something like: #ifdef DEBUG && !MINIGMP #define pr_debug(fmt, arg...) gmp_printf(fmt, ##arg) #else #define pr_debug(fmt, arg...) ({ if (false) {}; 0; }) #endif so only segtree debugging is turned off and document this in the INSTALL file. -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html