For libftd2xx1.0.4, which uses a different directory structure
than libftd2xx0.4.16

Note that this does not fix --with-ftd2xx-lib=shared
Also it assumes i386, not x86_64.

Signed-off-by: Steve Bennett <ste...@workware.net.au>
---
 configure.in |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/configure.in b/configure.in
index cb62c85..22f9e4e 100644
--- a/configure.in
+++ b/configure.in
@@ -863,14 +863,15 @@ if test $build_ft2232_ftd2xx = yes -o 
$build_presto_ftd2xx = yes ; then
     AC_MSG_ERROR([Option: --with-ftd2xx-linux-tardir appears wrong, cannot 
find: ${FTD2XX_H}])
     fi
     CFLAGS="$CFLAGS -I$with_ftd2xx_linux_tardir"
-    FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir"
-    FTD2XX_LIB="-lftd2xx"
-    if test $with_ftd2xx_lib != shared; then
-      # Test #1 - Future proof - if/when ftdichip fixes their distro.
-      # Try it with the simple ".a" suffix.
-      FTD2XX_LIB="$with_ftd2xx_linux_tardir/static_lib/libftd2xx.a"
-      if test -f "${FTD2XX_LIB}"; then
-        FTD2XX_LDFLAGS="${FTD2XX_LDFLAGS}/static_lib"
+    if test $with_ftd2xx_lib = shared; then
+       FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir"
+       FTD2XX_LIB="-lftd2xx"
+    else
+      # Test #1 - v1.0.x
+      if test -f "$with_ftd2xx_linux_tardir/build/i386/libftd2xx.a"; then
+        FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir/build/i386"
+        # Also needs -lrt
+        FTD2XX_LIB="-lftd2xx -lrt"
       else
         # Test Number2.
         # Grr.. perhaps it exists as a version number?
-- 
1.7.5.1

_______________________________________________
Openocd-development mailing list
Openocd-development@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/openocd-development

Reply via email to