Thomas Guyot-Sionnest wrote: > The builds are now complaining about a missing rpl_open symbol. > ... > Any idea what's wrong?
First, you can determine whether the problem is in gnulib or in your package. Run $ gnulib-tool --test --with-tests open If this fails on Solaris 9, the problem is in gnulib. If it succeeds, the problem is in your package. You can run 'nm' on the various intermediate object files, libraries, and programs to see whether they define or need the 'rpl_open' symbol. Most likely, in the end, you only need to link some particular program or library with the gnulib-generated auxiliary library. Bruno