ref: 09f57eed9ac6cf4aef4980b224379fa70585990a
parent: 588f58881659672f919dd91027e408f12ad3a05a
author: menno <menno>
date: Mon Sep 25 15:52:53 EDT 2006
Removed beepmp dependencies
--- a/configure.in
+++ b/configure.in
@@ -29,9 +29,6 @@
AC_ARG_WITH(xmms,[ --with-xmms compile XMMS-1 plugin],
WITHXMMS=$withval, WITHXMMS=no)
-AC_ARG_WITH(bmp,[ --with-bmp compile beep media player plugin],
- [WITHBMP=$withval;WITHXMMS=$withval], [WITHBMP=no])
-
AC_ARG_WITH(drm,[ --with-drm compile libfaad with DRM support],
WITHDRM=$withval, WITHDRM=no)
@@ -149,15 +146,6 @@
else
AC_MSG_NOTICE(no xmms build configured)
AM_CONDITIONAL(HAVE_XMMS, false)
-fi
-
-if test x$WITHBMP = xyes; then
- AC_DEFINE([HAVE_BMP], 1, [User wants beep media player plugin built])
- AM_CONDITIONAL([HAVE_XMMS], true)
- AM_CONDITIONAL([HAVE_BMP], true)
-else
- AC_MSG_NOTICE(no beepmp build configured)
- AM_CONDITIONAL(HAVE_BMP, false)
fi
if test x$WITHDRM = xyes; then
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -8,10 +8,6 @@
if HAVE_XMMS
SUBDIRS = xmms
else
-if HAVE_BMP
-SUBDIRS = xmms
-else
SUBDIRS =
-endif #HAVE_BMP
endif #HAVE_XMMS
endif #HAVE_MPEG4IP_PLUG
--- a/plugins/xmms/src/Makefile.am
+++ b/plugins/xmms/src/Makefile.am
@@ -1,12 +1,6 @@
-if HAVE_BMP
-libdir=$(shell pkg-config --variable=input-plugin-dir bmp)
-local_CFLAGS=$(shell pkg-config --cflags bmp)
-local_LDFLAGS=$(shell pkg-config --libs bmp)
-else
local_CFLAGS=`$(XMMS_CONFIG) --cflags` -Wall
local_LDFLAGS=`$(XMMS_CONFIG) --libs`
libdir = `$(XMMS_CONFIG) --input-plugin-dir`
-endif #HAVE_BMP
lib_LTLIBRARIES = libmp4.la
libmp4_la_CFLAGS = $(local_CFLAGS) -Wall \