"chris" <[EMAIL PROTECTED]> writes:

> I can't figure out what to do to solve this conflict.

You have to rename one of the functions: as is, the two libraries
are not link-compatible.

One way to perform this rename is to recompile one of the libraries
from source, and rename all instances of list_delete in that source.

Alternatively, 'objcopy --redefine-sym' should solve your problem.
>From 'man objcopy':

   --redefine-sym old=new
       Change the name of a symbol old, to new.  This can be useful  when
       one  is  trying  link  two  things  together for which you have no
       source, and there are name collisions.

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
Help-gplusplus mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to