how to install library in a specific directory?

2009-07-22 Thread bonami
I have two projects. One generates a shared library and the other uses it. The library is to be installed in /usr/local/lib/ezproject, while the project' s name is ezcommon. I have problems in both the projects. ezcommon's configure.ac, … AC_INIT(ezcommon, 3.0) AC_DISABLE_STATIC … ezcommon'

how to build a library in a specified directory?

2009-07-22 Thread A117
I have two projects. One generates a shared library and the other uses it. The library is to be installed in /usr/local/lib/ezproject, while the project’s name is ezcommon. I have problems in both the projects. ezcommon’s configure.ac, … AC_INIT(ezcommon, 3.0) AC_DISABLE_STATIC … ezcommon's M

Re: how to install library in a specific directory?

2009-07-22 Thread John Calcote
On 7/22/2009 2:12 AM, bonami wrote: I have two projects. One generates a shared library and the other uses it. The library is to be installed in /usr/local/lib/ezproject, while the project's name is ezcommon. I have problems in both the projects. ezcommon's configure.ac, … AC_INIT(ezcommon,

Re: how to install library in a specific directory?

2009-07-22 Thread A117
Thank you. I've decided to put the library in /usr/local/lib, while its header files in /usr/local/include/ezproject. It's strange though /usr/local/lib is in /etc/ld.so.conf (actually in another file it includes), and I can build other programs acting much as mine, I have difficulty with mine o

Re: how to install library in a specific directory?

2009-07-22 Thread John Calcote
On 7/22/2009 9:15 PM, A117 wrote: Thank you. I've decided to put the library in /usr/local/lib, while its header files in /usr/local/include/ezproject. It's strange though /usr/local/lib is in /etc/ld.so.conf (actually in another file it includes), and I can build other programs acting much as