Also, the libjournal autoconf test I wrote test doesn't work in this case (when
all Pythia libs are static). AC_CHECK_LIB (or whatever) is always done in C,
but libjournal is a C++ library -> unresolved symbols.
I'm not sure if C++ dependencies are represented by libtool libraries, but this
brings up a related issue: Autoconf tests are sloppy at checking against
libtool libraries. In theory, a libtool lib's dependences are represented in
the lib itself (even for static libs), so I should be able to check-lib it
without worrying about dependencies. But Autoconf doesn't know about libtool,
so the burden falls upon the Autoconf test.
|