From f49e5859fd49110099a7bd06f68966a8d237c5e2 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 28 Jun 2007 13:26:25 +0200 Subject: [PATCH] Fix the build of lfloat plugin Fixed the wrong check of softfloat in configure, which resulted in disablement of lfloat plugin. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.1