| Christian 2005-05-12, 7:56 am |
| <niraj.kumar.ait@gmail.com> a écrit dans le message de
news:1115878517.163191.167850@z14g2000cwz.googlegroups.com...
> I am using these four shared object.
> I have written this line in my Makefile.am
>
> lib_LTLIBRARIES = Apache.la apacheDbWriter.la Iptable.la
> iptablesDbWriter.la
>
>
>
> but when i run automake i get these error msg . I m using libtool 1.4.3
>
>
> 'Apache.la' is not a standard libtool library name
> 'Iptable.la' is not a standard libtool library name
> 'apacheDbWriter.la' is not a standard libtool library name
> 'iptablesDbWriter.la' is not a standard libtool library name
>
I think you should add the lib prefix to you library names, ie :
lib_LTLIBRARIES = libApache.la libapacheDbWriter.la libIptable.la
libiptablesDbWriter.la
Christian
|