fre 2008-03-07 klockan 22:40 -0700 skrev Alex Rousskov: > I think we should link with group/libgroup.la libraries and compile with > group/name.h headers rather than adding Squid prefixes everywhere. If we > want Squid prefix as an extra protection, we could use > squid/group/name.*
group/libgroup.la is no magic wand which solves the library namespace. On many platforms this is simply translated into -Lgroup/ -lgroup solving nothing... On some platforms it expands into a direct reference of group/libgroup.a which works when linking statically. On dynamic linking it has the same problem as when using -lgroup.. the search path is not library specific, just expanded to the areas mentioned by your link scripts.. Regards Henrik
