Hi, libtool drops all interlibrary dependencies on the GNU platform, because it does not know how to support them. Those are then missing when compiling programs with the library generated with libtool. I think the following patch fixes that. Could one of the Hurd people review that? It's really sad that this slipped through, because it breaks package compilation and requires upstream to update the file. :-( --- ltconfig.in.old Fri May 19 19:07:18 2000 +++ ltconfig.in Fri May 19 19:08:49 2000 @@ -1904,6 +1904,7 @@ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so' soname_spec='${libname}${release}.so$major' shlibpath_var=LD_LIBRARY_PATH + deplibs_check_method='pass_all' ;; hpux9* | hpux10* | hpux11*) Thanks, Marcus