RE: share libraries on UNIX
"Samuel Soliz" <[email protected]> Mon, 8 Nov 2004 08:42:47 -0600
| Newsgroups | gmane.comp.lib.libwww |
|---|---|
| Message-ID | <3F6DD81755D3C1469D08E8A2F2981170E93FC8@is~houmbxw01.quest.com> |
Fred, Create a script with symbolic links from the .so to the actual libraries. For example: ln -s libwwwapp.0.1.0 libwwwapp.so ln -s libwwwapp.0.1.0 libwwwapp.so.0 ln -s libwwwcache.0.1.0 libwwwcache.so ln -s libwwwcache.0.1.0 libwwwcache.so.0 . . . Sam -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of F. Heitkamp Sent: Sunday, November 07, 2004 3:55 PM To: [email protected] Subject: share libraries on UNIX When I compile libwww on Linux, the library names are not according to convention. running ./configure --enable-shared=yes --enable-static=no gives libraries named like: libwwwapp.0.1.0 libwwwcache.0.1.0 libwwwcore.0.1.0 libwwwdir.0.1.0 libwwwfile.0.1.0 libwwwftp.0.1.0 libwwwgopher.0.1.0 libwwwhtml.0.1.0 libwwwhttp.0.1.0 libwwwinit.0.1.0 libwwwmime.0.1.0 libwwwmux.0.1.0 libwwwnews.0.1.0 libwwwstream.0.1.0 libwwwtelnet.0.1.0 libwwwtrans.0.1.0 libwwwutils.0.1.0 libwwwxml.0.1.0 Anyone know how to fix? Fred