Bruce Korb wrote: > I'll need the `pkg-config --libs libposix` output > to result in all the stuff libposix (aka gnulib for posix) is going > to require.
Really? Why not rely on the dependencies of the shared library libposix.so? > I am open to suggestions, but my first guess is > going to be to write some script that strips out all the > names by grepping for '^libposix_la.*_LIBM\)' from Makefile.am libtool has already collected this information. I would try to extract it from libposix.la. If that does not work, why don't you just write a Makefile rule that essentially does an echo $(libposix_la_LDFLAGS) ? Bruno
