Show
Ignore:
Timestamp:
06/12/12 18:39:07 (12 years ago)
Author:
jwoithe
Message:

Address ticket #355, patch by oget. Some distributions are becoming more conservative in what libraries are brought in by packages. In particular, when compiling under Fedora now, pthread is no longer automatically brought in for ffado-dbus-server, so we need to do it ourselves.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/dbus/SConscript

    r2089 r2165  
    3535env.AppendUnique( CPPPATH=["#/", "#/src"] ) 
    3636env.PrependUnique( LIBPATH=[env['build_base']+"src"] ) 
    37 env.PrependUnique( LIBS=["ffado"] ) 
     37env.PrependUnique( LIBS=["ffado", "pthread"] ) 
    3838 
    3939if not env.GetOption( "clean" ):