]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Fix the build of lfloat plugin
authorTakashi Iwai <tiwai@suse.de>
Thu, 28 Jun 2007 11:26:25 +0000 (13:26 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 28 Jun 2007 11:26:25 +0000 (13:26 +0200)
Fixed the wrong check of softfloat in configure, which resulted in
disablement of lfloat plugin.

configure.in

index 48df6cae36f96f1b511a35412e0928f6ad349d10..77ebdcdca99d20204afcc286e5a12d74a041d874 100644 (file)
@@ -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