Displaying 4 results from an estimated 4 matches for "_libadd".
Did you mean:
libadd
2004 Sep 10
2
XMMS plugin build fix
Damn, back to this thread:
> I think I sent a bad patch for this one already, which used a _LIBS
> variable.
> There is no _LIBS variable. :-) So, the .la file should be specified
> directly
> in _LIBADD, with no linker flag syntax. libtool will figure it out.
>
> diff -u -r1.1.1.1 Makefile.am
> --- Makefile.am 29 Jan 2001 18:13:29 -0000 1.1.1.1
> +++ Makefile.am 21 Jun 2001 19:27:31 -0000
> @@ -9,5 +9,5 @@
>
> xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
> libxm...
2004 Sep 10
1
XMMS plugin build fix
I think I sent a bad patch for this one already, which used a _LIBS variable.
There is no _LIBS variable. :-) So, the .la file should be specified directly
in _LIBADD, with no linker flag syntax. libtool will figure it out.
diff -u -r1.1.1.1 Makefile.am
--- Makefile.am 29 Jan 2001 18:13:29 -0000 1.1.1.1
+++ Makefile.am 21 Jun 2001 19:27:31 -0000
@@ -9,5 +9,5 @@
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
libxmms_flac_la_SOURCES = plugin.c
-libxmms_f...
2004 Sep 10
0
XMMS plugin build fix
On Fri, Jul 20, 2001 at 01:06:53PM -0700, Josh Coalson wrote:
> > xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
> > libxmms_flac_la_SOURCES = plugin.c
> > -libxmms_flac_la_LIBADD = -L$(top_builddir)/src/libFLAC/.libs -lFLAC
> > @XMMS_LIBS@
> > +libxmms_flac_la_LIBADD = @XMMS_LIBS@
> > $(top_builddir)/src/libFLAC/libFLAC.la
> > libxmms_flac_la_LDFLAGS = -module -avoid-version
>
> now when I build the xmms plugin, upon linking I get:
>
>...
2004 Sep 10
2
XMMS plugin build fix
...-- Matt Zimmerman <mdz@debian.org> wrote:
> The only difference in the command lines seems to be that your
> xmms-config
> explicitly links with -lgthread, while I suppose mine lets the
> dynamic linker
> pull it in. The only significant difference between the old and new
> _LIBADD
> lines is that @XMMS_LIBS@ is at the beginning in the new one. Now
> that I think
> about it, it really should go at the end. I don't know if moving it
> will fix
> the problem, but give it a try.
nope, happens with @XMMS_LIBS@ at the end of line, and
still happens if I remov...