Hi,
I have something like this,
plugindir = $(libdir)/plugins
plugin_LTLIBRARIES =
and
plugin_LTLIBRARIES += libfoo.la
libfoo_la_SOURCES = foo.cc
libfoo_la_LDFLAGS = "-no-undefined"
Now when I do 'make install' with --prefix=install I see this,
on linux, I get install/lib/plugins/libfo
Hello Bob,
* Bob Rossi wrote on Tue, Jan 08, 2008 at 08:18:56PM CET:
>
> plugindir = $(libdir)/plugins
> plugin_LTLIBRARIES =
> plugin_LTLIBRARIES += libfoo.la
> libfoo_la_SOURCES = foo.cc
> libfoo_la_LDFLAGS = "-no-undefined"
>
> Now when I do 'make install' with --prefix=install I se
On Tue, Jan 08, 2008 at 09:53:24PM +0100, Ralf Wildenhues wrote:
> Hello Bob,
>
> * Bob Rossi wrote on Tue, Jan 08, 2008 at 08:18:56PM CET:
> >
> > plugindir = $(libdir)/plugins
> > plugin_LTLIBRARIES =
> > plugin_LTLIBRARIES += libfoo.la
> > libfoo_la_SOURCES = foo.cc
> > libfoo_la_LDF
Shouldn't plug-in -type shared libraries be built with the -module
-avoid-version libtool flags? I think with those flags, such
libtool-built DLLs get installed in the libdir of the Makefile in
question, not libdir/../bin like normal DLLs.
--tml
___
ht
On Tue, 8 Jan 2008, Ralf Wildenhues wrote:
General question before fixing this: on w32, should even plugins have
their DLLs go to $bindir?
Plugin modules should be installed adjacent to the .la files in the
directory the user specifies since the plugin module should be loaded
directly withou
Hi Ralf,
Attached are the two logs that you have requested. I hope this helps you
further. At least my assumption that libtool should get a library's path
information from libx.la is not wrong. ;)
Sorry for sending the logs unzipped previously.
Many thanks for your help.
- Richard
config.lo
Hello Richard,
* Richard Hacker wrote on Wed, Jan 09, 2008 at 07:40:57AM CET:
>
> Attached are the two logs that you have requested. I hope this helps you
> further. At least my assumption that libtool should get a library's path
> information from libx.la is not wrong. ;)
>
> Sorry for sendin
Bob Friesenhahn <> wrote:
> On Tue, 8 Jan 2008, Ralf Wildenhues wrote:
>>
>> General question before fixing this: on w32, should even plugins have
>> their DLLs go to $bindir?
Yes, i'd agree to this... ;o) If you try to load a library by yourself,
you will have to know what you're doing. If the D
Hm, sorry, as i reread my mail, i realized that the text is in the wrong
position ;) of course my comment is targeted ar bob's text, not ralf's
question...
Duft Markus <> wrote:
> Bob Friesenhahn <> wrote:
>> On Tue, 8 Jan 2008, Ralf Wildenhues wrote:
>>>
>>> General question before fixing this: