aboutsummaryrefslogtreecommitdiff
path: root/tools/depends
diff options
context:
space:
mode:
authorAlwin Esch <alwin.esch@web.de>2015-09-06 23:15:57 +0200
committerAlwin Esch <alwin.esch@web.de>2015-09-06 23:33:01 +0200
commitcebf7df42fcc4e65d2bc35a1698d3d81a9e1cdeb (patch)
treed2d6117f4197e3816b9bb7e6c4f68b2c81ce3524 /tools/depends
parentd58ddc67714d7c02df59b7bff3391ba8f3191be1 (diff)
[depends] remove libmp3lame
Diffstat (limited to 'tools/depends')
-rw-r--r--tools/depends/target/Makefile3
-rw-r--r--tools/depends/target/libmp3lame/Makefile41
2 files changed, 1 insertions, 43 deletions
diff --git a/tools/depends/target/Makefile b/tools/depends/target/Makefile
index 0cb0c0c6bc..ba3e6a6f0c 100644
--- a/tools/depends/target/Makefile
+++ b/tools/depends/target/Makefile
@@ -14,7 +14,7 @@ DEPENDS = \
libmodplug librtmp libxml2 yajl libmicrohttpd mysql libffi \
python26 libshairplay \
libplist libcec libbluray boost tinyxml dummy-libxbmc \
- libamplayer libssh taglib libusb libnfs libmp3lame \
+ libamplayer libssh taglib libusb libnfs \
pythonmodule-pil libxslt ffmpeg platform crossguid libdcadec
FFMPEG_DEPENDS = gnutls libdcadec
@@ -89,7 +89,6 @@ libbluray: $(ICONV) libxml2
libssh: openssl
mysql: openssl
libzip: $(ZLIB)
-libmp3lame: $(ICONV)
libpng: $(ZLIB)
openssl: $(ZLIB)
gnutls: nettle $(ZLIB)
diff --git a/tools/depends/target/libmp3lame/Makefile b/tools/depends/target/libmp3lame/Makefile
deleted file mode 100644
index 666939e9b6..0000000000
--- a/tools/depends/target/libmp3lame/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
-
-# lib name, version
-LIBNAME=lame
-VERSION=3.99.5
-SOURCE=$(LIBNAME)-$(VERSION)
-ARCHIVE=$(SOURCE).tar.gz
-
-# configuration settings
-CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
- ./configure --prefix=$(PREFIX) --disable-gtktest --disable-frontend --disable-decoder
-
-LIBDYLIB=$(PLATFORM)/libmp3lame/.libs/libmp3lame.a
-
-CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
-
-all: .installed-$(PLATFORM)
-
-$(TARBALLS_LOCATION)/$(ARCHIVE):
- cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
-
-$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
- rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
- cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
- cd $(PLATFORM); $(CONFIGURE)
-
-$(LIBDYLIB): $(PLATFORM)
- $(MAKE) -C $(PLATFORM)/libmp3lame
-
-.installed-$(PLATFORM): $(LIBDYLIB)
- $(MAKE) -C $(PLATFORM)/include install
- $(MAKE) -C $(PLATFORM)/libmp3lame install
- touch $@
-
-clean:
- $(MAKE) -C $(PLATFORM) clean
- rm -f .installed-$(PLATFORM)
-
-distclean::
- rm -rf $(PLATFORM) .installed-$(PLATFORM)