Blame SOURCES/libboost_thread.so

3c181a
changequote(`[', `]')dnl
3c181a
/* GNU ld script
3c181a
3c181a
   Boost.Thread header files pull in enough of Boost.System that
3c181a
   symbols from the latter library are referenced by a compiled object
3c181a
   that includes Boost.Thread headers.  libboost_system-mt.so is among
3c181a
   libboost_thread-mt.so's DT_NEEDED, but program linker requires that
3c181a
   missing symbols are satisfied by direct dependency, not by a
3c181a
   transitive one.  Hence this linker script, which brings in the
3c181a
   Boost.System DSO.  */
3c181a
3c181a
INPUT(libboost_thread.so.VERSION)
3c181a
INPUT(libboost_system.so.VERSION)
3c181a
ifdef([HAS_ATOMIC_FLAG_LOCKFREE],[],
3c181a
[
3c181a
/* If the given architecture doesn't have lock-free implementation of
3c181a
   boost::atomic_flag, the dependency on Boost.Atomic may leak from
3c181a
   the header files to client binaries.  */
3c181a
3c181a
INPUT(libboost_atomic.so.VERSION)
3c181a
])dnl