Changes between Version 3 and Version 4 of Ticket #1462


Ignore:
Timestamp:
Mar 8, 2012 7:20:46 AM (12 years ago)
Author:
bennylp
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1462 – Description

    v3 v4  
    11We already have Visual Studio project for building libresample (under third_party) as DLL. This ticket adds similar support for building libresample as shared library for GNU targets and linking with it. 
    22 
    3 To use this feature: 
    4  
     3To build the libraries and samples with libresample as shared library: 
    54 
    65{{{ 
    76 $ ./aconfigure --enable-resample-dll 
    87 $ make dep && make 
    9  $ export LD_LIBRARY_PATH=`pwd`/third_party/lib 
     8}}} 
    109 
    11  $ # or set DYLD_LIBRARY_PATH instead on Mac 
    12  $  
     10The libresample is placed in {{{third_party/lib}}}, hence don't forget to set '''{{{LD_LIBRARY_PATH}}}''' (or '''{{{DYLD_LIBRARY_PATH}}}''' on Mac) accordingly before running an executable. 
    1311 
    14 }}}