Displaying 3 results from an estimated 3 matches for "xmmsinputplugindir".
2013 Feb 07
0
[PATCH 1/4] xmms - Fix libtool usage.
...st 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_sources = charset.c configure.c fileinfo.c http.c plugin.c tag.c
--
1.7.12
--------------070004020404090404040108--
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
...e.am
--- src/plugin_xmms/Makefile.am 25 Jan 2005 04:18:40 -0000 1.28
+++ src/plugin_xmms/Makefile.am 30 Jan 2005 05:23:55 -0000
@@ -29,7 +29,7 @@
plugin.h \
tag.h
-CFLAGS = @CFLAGS@ @XMMS_CFLAGS@
+AM_CFLAGS = @XMMS_CFLAGS@
INCLUDES = -I$(top_srcdir)/src
if FLaC__INSTALL_XMMS_PLUGIN_LOCALLY
xmmsinputplugindir = $(HOME)/.xmms/Plugins
Index: src/test_grabbag/cuesheet/Makefile.am
===================================================================
RCS file: /cvsroot/flac/flac/src/test_grabbag/cuesheet/Makefile.am,v
retrieving revision 1.8
diff -u -r1.8 Makefile.am
--- src/test_grabbag/cuesheet/Makefile.am 2...
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...efile.am
+++ b/src/plugin_xmms/Makefile.am
@@ -31,8 +31,7 @@ noinst_HEADERS = \
tag.h
AM_CFLAGS = @OGG_CFLAGS@ @XMMS_CFLAGS@
-
-INCLUDES = -I$(top_srcdir)/src
+AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include -I$(top_srcdir)/src
if FLaC__INSTALL_XMMS_PLUGIN_LOCALLY
xmmsinputplugindir = $(HOME)/.xmms/Plugins
else
diff --git a/src/share/getopt/Makefile.am b/src/share/getopt/Makefile.am
index f40464e..70ea506 100644
--- a/src/share/getopt/Makefile.am
+++ b/src/share/getopt/Makefile.am
@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = foreign
-INCLUDES = -I$(top_srcdir)/include/share
+AM_CP...