From: Takashi Iwai Date: Thu, 28 Jun 2007 11:26:25 +0000 (+0200) Subject: Fix the build of lfloat plugin X-Git-Tag: v1.0.15rc1~25 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=f49e5859fd49110099a7bd06f68966a8d237c5e2;p=alsa-lib.git Fix the build of lfloat plugin Fixed the wrong check of softfloat in configure, which resulted in disablement of lfloat plugin. --- diff --git a/configure.in b/configure.in index 48df6cae..77ebdcdc 100644 --- a/configure.in +++ b/configure.in @@ -414,7 +414,7 @@ if test "$HAVE_LIBPTHREAD" != "yes"; then build_pcm_share="no" fi -if test "$softfloat" != "yes"; then +if test "$softfloat" = "yes"; then build_pcm_lfloat="no" fi