This is an automated email from Gerrit.

Stephan Linz (l...@li-pro.net) just uploaded a new patch set to Gerrit, which 
you can find at http://openocd.zylin.com/1614

-- gerrit

commit c03071213380ecb12366ab2685d0328bb043e0f4
Author: Stephan Linz <l...@li-pro.net>
Date:   Fri Sep 6 15:03:54 2013 +0200

    configure: expand library search for libftd2xx
    
    Error was:
    checking for library containing FT_GetLibraryVersion... no
    configure: error: You appear to be missing the FTD2xx driver library.
    
    Reason were two cases:
    
    Case one:
    The FTD2xx library uses clock_gettime() and in normal cases
    the linker will find the function in the libc library. Most
    (older) systems require the program be linked with the librt
    library to use these (see man clock_gettime: Link with -lrt).
    
    Case two:
    You can rebuild the FTD2xx library (relink from the object
    files) against the primary (system wide installed) libusb-1.0.
    So you avoid mixed code (GPL with proprietary code) in the
    FTD2xx library. In this case, the FTD2xx library provides no
    private (linked in) libusb-1.0 functionality and require the
    program be linked with the libftd2xx __AND__ the libusb-1.0
    to resolve all the libusb-1.0 symbols.
    
    Change-Id: Iaf9a35ab4257e37b98dccd47667378ad2a64b7ed
    Signed-off-by: Stephan Linz <l...@li-pro.net>

diff --git a/configure.ac b/configure.ac
index 1a64747..01f395b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -972,7 +972,7 @@ if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx 
= yes -o $build_usb_b
       ])
     AC_SEARCH_LIBS([FT_GetLibraryVersion],[ftd2xx],,[
         AC_MSG_ERROR([You appear to be missing the FTD2xx driver library.])
-      ],[])
+      ],[-lrt -lusb-1.0])
   fi
 fi
 fi # linux

-- 

------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk
_______________________________________________
OpenOCD-devel mailing list
OpenOCD-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to