shithub: sox

Download patch

ref: 87e11103d8784a031f27cf1012c484d147e59ff4
parent: c0fd1892b017204adf4f2bb8bf855370c33b284c
author: cbagwell <cbagwell>
date: Mon Sep 10 22:53:13 EDT 2007

Auto disable libltdl on cygwin since its not working.

--- a/configure.ac
+++ b/configure.ac
@@ -30,6 +30,13 @@
     if test "$enable_shared" != "no"; then
         using_libltdl=yes
     fi
+    dnl Force off using libltdl on targets that are know to have
+    dnl problems.
+    case $target in
+      *cygwin*)
+        using_libltdl=no
+        ;;
+    esac
 fi
 
 if test "$using_libltdl" != "no"; then