# HG changeset patch # User reimar # Date 1280047245 0 # Node ID 94ba361e176610476f991397e6a347a926092c90 # Parent 8adcdb0b8ef6d3900fc2bb52077b4799d53e9e2b Refuse to compile without yasm unless it was explicitly requested. diff -r 8adcdb0b8ef6 -r 94ba361e1766 configure --- a/configure Sat Jul 24 21:43:29 2010 +0000 +++ b/configure Sun Jul 25 08:40:45 2010 +0000 @@ -2721,7 +2721,9 @@ fi echo "pabsw xmm0, xmm0" > $TMPS -yasm_check || _yasm="" +if test "$_yasm" ; then + yasm_check || die "yasm not found, use --yasm='' if you really want to compile without" +fi if test $_yasm ; then def_yasm='#define HAVE_YASM 1' have_yasm="yes"