search for: libxmms_flac_la_libadd

Displaying 11 results from an estimated 11 matches for "libxmms_flac_la_libadd".

2004 Sep 10
2
XMMS plugin build fix
...ol 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_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: ../../libtool-disable-static --mode=lin...
2004 Sep 10
1
XMMS plugin build fix
...n _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_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 -- - mdz
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
1
plugin_xmms/Makefile.am incorrectly references .libs directory
...ry or an object file. Nothing should ever reference the .libs directory directly. diff -u -r1.1.1.1 Makefile.am --- Makefile.am 2001/01/29 18:13:29 1.1.1.1 +++ Makefile.am 2001/06/14 20:13:20 @@ -9,5 +9,6 @@ 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_LIBS = $(top_builddir)/src/libFLAC/libFLAC.la +libxmms_flac_la_LIBADD = @XMMS_LIBS@ libxmms_flac_la_LDFLAGS = -module -avoid-version -- - mdz
2004 Sep 10
2
Mac OS X - xmms plugin probs
--- Ben Hines <bhines@alumni.ucsd.edu> wrote: > I guess the problem is really why is it trying to relink it? > > The "parse error: condition expected:" is suspicious, though.. maybe > it's another "zsh as sh" problem... hmm.. I don't remember having any trouble building the plugin on my ibook but that was a few months ago, so my memory may be fuzzy.
2004 Sep 10
2
Mac OS X - xmms plugin probs
...the "The loadable module bug" libtool patch which is > > listed at this page: > http://fink.sourceforge.net/doc/porting/libtool.php Ben, I ran across a possible fix on another mailing list: http://lists.freshrpms.net/pipermail/rpm-list/2002-April/000746.html Try changing the libxmms_flac_la_LIBADD line in flac/src/plugin_xmms/Makefile.am to: libxmms_flac_la_LIBADD = $(top_builddir)/src/libFLAC/libFLAC.la -L$(top_builddir)/src/libFLAC/.libs @XMMS_LIBS@ If this works, let me know and I'll check it in. Josh __________________________________________________ Do You Yahoo!? Yahoo! - Offi...
2004 Sep 10
3
patches for flac build
...command="$command $1" + fi + fi + shift +done +echo $command +exec $command --- src/plugin_xmms/Makefile.am.orig Fri Jan 19 12:48:18 2001 +++ src/plugin_xmms/Makefile.am @@ -9,5 +9,5 @@ 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 = -L$(top_builddir)/src/libFLAC -lFLAC @XMMS_LIBS@ libxmms_flac_la_LDFLAGS = -module -avoid-version
2004 Sep 10
2
getting framesize in client
...n_xmms/Makefile.am 16 Oct 2002 22:06:06 -0000 1.17 +++ src/plugin_xmms/Makefile.am 9 Nov 2002 16:51:49 -0000 @@ -52,5 +52,5 @@ # for fix info see: # http://lists.freshrpms.net/pipermail/rpm-list/2002-April/000746.html # the workaround is the extra '-L$(top_builddir)/src/libFLAC/.libs' -libxmms_flac_la_LIBADD = $(top_builddir)/src/plugin_common/libplugin_common.a $(top_builddir)/src/libFLAC/libFLAC.la -L$(top_builddir)/src/libFLAC/.libs @XMMS_LIBS@ @ID3LIB_LIBS@ +libxmms_flac_la_LIBADD = @SHARE_LIBS@ $(top_builddir)/src/plugin_common/libplugin_common.a $(top_builddir)/src/libFLAC/libFLAC.la -L$(top_buil...
2004 Sep 10
3
getting framesize in client
On Fri, Nov 08, 2002 at 12:39:52PM -0800, Josh Coalson wrote: > --- Miroslav Lichvar <lichvarm@phoenix.inf.upol.cz> wrote: > > I have few notes: > > > > It seems there is changed API in CVS again. So, what about adding > > function like > > unsigned FLAC__format_frame_size(const FLAC__Frame *frame) > > which returns size of the frame in bytes. This
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...builddir)/src/libFLAC/libFLAC.la \ - @OGG_LIBS@ \ - @LIBICONV@ \ - -lm + @LIBICONV@ CLEANFILES = metaflac.exe diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am index 84c4106..ffb76a1 100644 --- a/src/plugin_xmms/Makefile.am +++ b/src/plugin_xmms/Makefile.am @@ -60,7 +60,6 @@ libxmms_flac_la_LIBADD = \ $(top_builddir)/src/share/utf8/libutf8.la \ $(top_builddir)/src/libFLAC/libFLAC.la \ -L$(top_builddir)/src/libFLAC/.libs \ - @OGG_LIBS@ \ @XMMS_LIBS@ \ @LIBICONV@ libxmms_flac_la_LDFLAGS = -module -avoid-version diff --git a/src/test_grabbag/cuesheet/Makefile.am b/src/test_grabbag/cu...
2004 Sep 10
1
flac-1.1.0: libtool warnings
...1.0~/src/plugin_xmms/Makefile.am 2003-01-14 04:33:03 +0300 +++ flac-1.1.0/src/plugin_xmms/Makefile.am 2004-02-05 03:52:31 +0300 @@ -57,10 +57,10 @@ # http://lists.freshrpms.net/pipermail/rpm-list/2002-April/000746.html # the workaround is the extra '-L$(top_builddir)/src/libFLAC/.libs' libxmms_flac_la_LIBADD = \ - $(top_builddir)/src/plugin_common/libplugin_common.a \ - $(top_builddir)/src/share/grabbag/libgrabbag.a \ - $(top_builddir)/src/share/gain_analysis/libgain_analysis.a \ - $(top_builddir)/src/share/utf8/libutf8.a \ + $(top_builddir)/src/plugin_common/libplugin_common.la \ + $(top_builddir)/src...