Revision 11623 introduced a hard dependency on x86 in the contrib/dragscroll plugin as it adds virtual void InitDialog(){ asm("int3");} /*trap*/ which fails to compile/assemble on any non-x86 arch.
What is the purpose of this code? Can it replaced by some generic mean like __builtin_trap() or raise(SIGTRAP)?
Fix in trunk/master. Thanks for reporting.