Petr Machata 44a7aa
/* GNU ld script
Petr Machata 44a7aa
Petr Machata 44a7aa
   Boost.Thread header files pull in enough of Boost.System that
Petr Machata 44a7aa
   symbols from the latter library are referenced by a compiled object
Denis Arnaud bcaac6
   that includes Boost.Thread headers.  libboost_system-mt.so is among
Denis Arnaud bcaac6
   libboost_thread-mt.so's DT_NEEDED, but program linker requires that
Denis Arnaud bcaac6
   missing symbols are satisfied by direct dependency, not by a
Petr Machata 44a7aa
   transitive one.  Hence this linker script, which brings in the
Petr Machata 44a7aa
   Boost.System DSO.  */
Petr Machata 44a7aa
Petr Machata 7a2b4d
INPUT(libboost_thread.so.%{version})
Petr Machata 7a2b4d
INPUT(libboost_system.so.%{version})