Displaying 2 results from an estimated 2 matches for "84c4106".
Did you mean:
44106
2013 Feb 07
0
[PATCH 1/4] xmms - Fix libtool usage.
...+++ b/Makefile.am
@@ -32,8 +32,6 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = doc include m4 man src examples test build objs
-DISTCLEANFILES = libtool-disable-static
-
EXTRA_DIST = \
COPYING.FDL \
COPYING.GPL \
diff --git a/src/plugin_xmms/Makefile.am b/src/plugin_xmms/Makefile.am
index 29879ed..84c4106 100644
--- a/src/plugin_xmms/Makefile.am
+++ b/src/plugin_xmms/Makefile.am
@@ -38,9 +38,6 @@ else
xmmsinputplugindir = @XMMS_INPUT_PLUGIN_DIR@
endif
-# Don't build a static library
-LIBTOOL = $(top_builddir)/libtool-disable-static
-
xmmsinputplugin_LTLIBRARIES = libxmms-flac.la
plugin_s...
2013 Apr 06
0
[PATCH 2/2] Only link against libogg (and libm) if needed
...D = \
$(top_builddir)/src/share/getopt/libgetopt.la \
$(top_builddir)/src/share/utf8/libutf8.la \
$(top_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@ \
@LIBICON...