Displaying 2 results from an estimated 2 matches for "have_oggvorbi".
Did you mean:
have_oggvorbis
2004 Sep 10
0
XMMS plugin build fix
...s as well, such as the
particular versions of various libraries that you have on your system. My GTK
libraries include .la files; do yours?
That code is essentially the same code that is used to build the plugins in
XMMS itself. For instance, here's the Makefile.am for the vorbis plugin:
if HAVE_OGGVORBIS
lib_LTLIBRARIES = libvorbis.la
endif
libdir = $(plugindir)/$(INPUT_PLUGIN_DIR)
INCLUDES = @GTK_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ -I$(top_builddir)/intl
libvorbis_la_LDFLAGS = -module -avoid-version
libvorbis_la_LIBADD = @GTK_LIBS@ @PTHREAD_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@
libvorbis_la_SOURCE...
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