name clash between libunzip.so and zlib library
"gobigred" <[email protected]>
| Newsgroups | gmane.comp.gnu.utils |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
have to use both libraries for different purpose both have function named as "inflate" $ nm libunzip.so | grep "inflate" 0000beb0 T inflate $ nm libz.so | grep "inflate" 000034ca T inflate is there anyway to avoid the name clash, through compiler or linker? thanks!