aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRechi <Rechi@users.noreply.github.com>2018-01-25 13:49:41 +0100
committerGitHub <noreply@github.com>2018-01-25 13:49:41 +0100
commit17f52c135c033efa317d395b7a6a61f7a3822400 (patch)
treeacbdb0afc1ea30bba7a612532432bddd7adb22fc /tools
parent227514674bf0b375f0eee47c57a9c5f1fdeeac5b (diff)
parentb1c1ca6f7aa70bfdfe0fe1d4901023f39422f14d (diff)
Merge pull request #13436 from Rechi/depends/cleanup
[depends] improve rebuilding detection
Diffstat (limited to 'tools')
-rw-r--r--tools/depends/.gitignore2
-rw-r--r--tools/depends/Makefile.include.in1
-rw-r--r--tools/depends/configure.ac10
-rw-r--r--tools/depends/native/JsonSchemaBuilder/Makefile6
-rw-r--r--tools/depends/native/TexturePacker/Makefile4
-rw-r--r--tools/depends/native/autoconf-native/Makefile2
-rw-r--r--tools/depends/native/automake-native/Makefile4
-rw-r--r--tools/depends/native/distribute-native/Makefile2
-rw-r--r--tools/depends/native/distutilscross-native/Makefile2
-rw-r--r--tools/depends/native/fakeroot-native/Makefile2
-rw-r--r--tools/depends/native/gettext-native/Makefile2
-rw-r--r--tools/depends/native/libjpeg-turbo-native/Makefile5
-rw-r--r--tools/depends/native/liblzo2-native/Makefile2
-rw-r--r--tools/depends/native/libpng-native/Makefile5
-rw-r--r--tools/depends/native/libtool-native/Makefile3
-rw-r--r--tools/depends/native/m4-native/Makefile2
-rw-r--r--tools/depends/native/pcre-native/Makefile2
-rw-r--r--tools/depends/native/pkg-config-native/Makefile2
-rw-r--r--tools/depends/native/python27-native/Makefile6
-rw-r--r--tools/depends/native/swig-native/Makefile2
-rw-r--r--tools/depends/native/tar-native/Makefile4
-rw-r--r--tools/depends/native/xz-native/Makefile4
-rw-r--r--tools/depends/native/yasm-native/Makefile2
-rw-r--r--tools/depends/native/zlib-native/Makefile2
-rw-r--r--tools/depends/target/boblight/Makefile2
-rw-r--r--tools/depends/target/crossguid/Makefile6
-rw-r--r--tools/depends/target/dbus/Makefile2
-rw-r--r--tools/depends/target/expat/Makefile2
-rw-r--r--tools/depends/target/ffmpeg/Makefile5
-rw-r--r--tools/depends/target/gnutls/Makefile2
-rw-r--r--tools/depends/target/libbluray/Makefile4
-rw-r--r--tools/depends/target/libcdio-gplv3/Makefile2
-rw-r--r--tools/depends/target/libcdio/Makefile2
-rw-r--r--tools/depends/target/libcec/Makefile5
-rw-r--r--tools/depends/target/libfmt/Makefile4
-rw-r--r--tools/depends/target/libgcrypt/Makefile2
-rw-r--r--tools/depends/target/libmicrohttpd/Makefile10
-rw-r--r--tools/depends/target/libnfs/Makefile2
-rw-r--r--tools/depends/target/libpng/Makefile2
-rw-r--r--tools/depends/target/libsdl/Makefile2
-rw-r--r--tools/depends/target/libshairplay/Makefile2
-rw-r--r--tools/depends/target/libssh/Makefile2
-rw-r--r--tools/depends/target/libusb/Makefile2
-rw-r--r--tools/depends/target/libxslt/Makefile1
-rw-r--r--tools/depends/target/mysql/Makefile2
-rw-r--r--tools/depends/target/nettle/Makefile2
-rw-r--r--tools/depends/target/p8-platform/Makefile2
-rw-r--r--tools/depends/target/pcre/Makefile2
-rw-r--r--tools/depends/target/platform/Makefile2
-rw-r--r--tools/depends/target/pythonmodule-pil/Makefile4
-rw-r--r--tools/depends/target/pythonmodule-pycryptodome/Makefile7
-rw-r--r--tools/depends/target/pythonmodule-setuptools/Makefile2
-rw-r--r--tools/depends/target/sqlite3/Makefile2
-rw-r--r--tools/depends/target/taglib/Makefile2
54 files changed, 85 insertions, 81 deletions
diff --git a/tools/depends/.gitignore b/tools/depends/.gitignore
index 20dc4b7d3a..5595d05d9b 100644
--- a/tools/depends/.gitignore
+++ b/tools/depends/.gitignore
@@ -10,7 +10,6 @@
/native/*/x86_64-darwin*.*.*-native/
/native/*/armeabi-v7a-native/*
-/target/*/.patched-*
/target/*/.installed-*
/target/*/native/*
/target/*/x86/*
@@ -42,6 +41,7 @@ config.site.native
/native/*/*native/
/JsonSchemaBuilder/bin/
/TexturePacker/bin/
+/target/ffmpeg/.build-*
/target/ffmpeg/.ffmpeg-installed
/target/ffmpeg/ffmpeg-*-*.tar.gz
/target/ffmpeg/ffmpeg-*-*/
diff --git a/tools/depends/Makefile.include.in b/tools/depends/Makefile.include.in
index 254d249b34..3e8dd800d4 100644
--- a/tools/depends/Makefile.include.in
+++ b/tools/depends/Makefile.include.in
@@ -33,7 +33,6 @@ NEED_LIBICONV=@need_libiconv@
LINK_ICONV=@link_iconv@
ENABLE_GPLV3=@use_gplv3@
ENABLE_WAYLAND=@enable_wayland@
-HAS_LIBCRYSTAX=@has_libcrystax@
BASE_URL=http://mirrors.kodi.tv/build-deps/sources
ifneq ($(KODI_MIRROR),)
diff --git a/tools/depends/configure.ac b/tools/depends/configure.ac
index 232f741e4b..503b588543 100644
--- a/tools/depends/configure.ac
+++ b/tools/depends/configure.ac
@@ -406,8 +406,8 @@ case $host in
found_sdk_version=[`$use_xcodebuild -showsdks | grep $target_platform | sort | tail -n 1 | awk '{ print $2}'`]
use_sdk="${use_sdk:-$found_sdk_version}"
- platform_cflags+=" -fembed-bitcode"
- platform_cxxflags+=" -fembed-bitcode"
+ platform_cflags+=" -fembed-bitcode"
+ platform_cxxflags+=" -fembed-bitcode"
sdk_name=$target_platform$use_sdk
platform_min_version="$target_platform-version-min=9.0"
else
@@ -423,7 +423,7 @@ case $host in
sdk_name=$target_platform$use_sdk
platform_min_version="$target_platform-version-min=6.0"
fi
- case $use_sdk in
+ case $use_sdk in
4.*);;
5.*);;
6.*);;
@@ -476,7 +476,6 @@ esac
case $use_platform in
raspberry-pi)
target_platform=raspberry-pi
- use_neon=no
use_cpu=arm1176jzf-s
ffmpeg_options_default="--cpu=arm1176jzf-s"
platform_cflags="-mcpu=arm1176jzf-s -mtune=arm1176jzf-s -mfloat-abi=hard -mfpu=vfp"
@@ -486,7 +485,6 @@ case $use_platform in
;;
raspberry-pi2)
target_platform=raspberry-pi
- use_neon=yes
use_cpu=cortex-a7
ffmpeg_options_default="--cpu=cortex-a7"
platform_cflags="-fPIC -mcpu=cortex-a7 -mfloat-abi=hard -mfpu=neon-vfpv4"
@@ -562,7 +560,6 @@ AC_PATH_PROG([CXX_FOR_BUILD],[g++ llvm-g++ $platform_cxx], g++, $PATH_FOR_BUILD)
AC_SEARCH_LIBS([iconv_open],iconv, link_iconv=$ac_cv_search_iconv_open, link_iconv=-liconv; AC_MSG_WARN("No iconv support in toolchain. Will build libiconv."); need_libiconv=1)
AC_TRY_LINK([#include <locale.h>],[struct lconv* test=localeconv();], has_localeconv=yes, AC_MSG_WARN("No localeconv support in toolchain. Using replacement."); has_localeconv=no)
-AC_CHECK_LIB([crystax], [main], has_libcrystax=1, has_libcrystax=0)
if test "$link_iconv" = "none required"; then
link_iconv=
@@ -764,7 +761,6 @@ AC_SUBST(link_iconv)
AC_SUBST(need_libiconv)
AC_SUBST(use_gplv3)
AC_SUBST(enable_wayland)
-AC_SUBST(has_libcrystax)
AC_SUBST(use_xcode)
AC_SUBST(use_ccache)
AC_SUBST(native_platform_min_version)
diff --git a/tools/depends/native/JsonSchemaBuilder/Makefile b/tools/depends/native/JsonSchemaBuilder/Makefile
index cf5d20b055..78c44339c4 100644
--- a/tools/depends/native/JsonSchemaBuilder/Makefile
+++ b/tools/depends/native/JsonSchemaBuilder/Makefile
@@ -1,5 +1,6 @@
ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
-include ../../Makefile.include
+DEPS=Makefile
ifeq ($(NATIVEPREFIX),)
PREFIX = $(ROOT_DIR)
@@ -11,17 +12,18 @@ ifeq ($(NATIVEPLATFORM),)
PLATFORM = native
else
PLATFORM = $(NATIVEPLATFORM)
+ DEPS += ../../Makefile.include
endif
SOURCE=$(ROOT_DIR)/src
CONFIGURE=./configure --prefix=$(PREFIX)
-APP=$(SOURCE)/JsonSchemaBuilder
+APP=$(PLATFORM)/JsonSchemaBuilder
APPBIN=$(PREFIX)/bin/JsonSchemaBuilder
all: .installed-$(PLATFORM)
-$(PLATFORM):
+$(PLATFORM): $(DEPS)
-rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
cd $(PLATFORM); cp -a $(SOURCE)/* .
cd $(PLATFORM); ./autogen.sh
diff --git a/tools/depends/native/TexturePacker/Makefile b/tools/depends/native/TexturePacker/Makefile
index d12677617f..f50dc87903 100644
--- a/tools/depends/native/TexturePacker/Makefile
+++ b/tools/depends/native/TexturePacker/Makefile
@@ -1,5 +1,6 @@
ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
-include ../../Makefile.include
+DEPS=Makefile
ifeq ($(NATIVEPREFIX),)
PREFIX = $(ROOT_DIR)
@@ -12,6 +13,7 @@ ifeq ($(NATIVEPLATFORM),)
EXTRA_CONFIGURE = --enable-static
else
PLATFORM = $(NATIVEPLATFORM)
+ DEPS += ../../Makefile.include
endif
ifeq ($(NATIVE_OS), linux)
@@ -32,7 +34,7 @@ APPBIN=$(PREFIX)/bin/TexturePacker
all: .installed-$(PLATFORM)
-$(PLATFORM):
+$(PLATFORM): $(DEPS)
-rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
cd $(PLATFORM); cp -a $(SOURCE)/* .
cd $(PLATFORM); ./autogen.sh
diff --git a/tools/depends/native/autoconf-native/Makefile b/tools/depends/native/autoconf-native/Makefile
index a78cfa9969..61a27e4347 100644
--- a/tools/depends/native/autoconf-native/Makefile
+++ b/tools/depends/native/autoconf-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile endian-c++11-narrowing.patch
+DEPS= ../../Makefile.include Makefile endian-c++11-narrowing.patch
# lib name, version
LIBNAME=autoconf
diff --git a/tools/depends/native/automake-native/Makefile b/tools/depends/native/automake-native/Makefile
index 28b70346c3..bdeaf34fa8 100644
--- a/tools/depends/native/automake-native/Makefile
+++ b/tools/depends/native/automake-native/Makefile
@@ -1,6 +1,6 @@
include ../../Makefile.include
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=automake
@@ -11,7 +11,7 @@ ARCHIVE=$(SOURCE).tar.gz
# configuration settings
CONFIGURE=./configure --prefix=$(NATIVEPREFIX)
-LIBDYLIB=$(PLATFORM)/automake
+LIBDYLIB=$(PLATFORM)/bin/automake
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
diff --git a/tools/depends/native/distribute-native/Makefile b/tools/depends/native/distribute-native/Makefile
index 1ff0075620..e9aced11d2 100644
--- a/tools/depends/native/distribute-native/Makefile
+++ b/tools/depends/native/distribute-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=distribute
diff --git a/tools/depends/native/distutilscross-native/Makefile b/tools/depends/native/distutilscross-native/Makefile
index 7c1a424ac8..987b43b37c 100644
--- a/tools/depends/native/distutilscross-native/Makefile
+++ b/tools/depends/native/distutilscross-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=distutilscross
diff --git a/tools/depends/native/fakeroot-native/Makefile b/tools/depends/native/fakeroot-native/Makefile
index ed3e813be4..d3b3c2e527 100644
--- a/tools/depends/native/fakeroot-native/Makefile
+++ b/tools/depends/native/fakeroot-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile 01-darwin14-openat.patch
APPNAME=fakeroot
VERSION=macosx-v3.3
diff --git a/tools/depends/native/gettext-native/Makefile b/tools/depends/native/gettext-native/Makefile
index 8c75a28c6d..7dca64bd5c 100644
--- a/tools/depends/native/gettext-native/Makefile
+++ b/tools/depends/native/gettext-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile 01-gettext-tools-stpncpy.patch
# lib name, version
LIBNAME=gettext
diff --git a/tools/depends/native/libjpeg-turbo-native/Makefile b/tools/depends/native/libjpeg-turbo-native/Makefile
index 373caf0fe1..fecb2b1560 100644
--- a/tools/depends/native/libjpeg-turbo-native/Makefile
+++ b/tools/depends/native/libjpeg-turbo-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=libjpeg-turbo
@@ -18,7 +18,7 @@ LIBDYLIB=$(PLATFORM)/.libs/libjpeg.a
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
-jpegtest: .installed-$(PLATFORM)
+all: .installed-$(PLATFORM)
$(TARBALLS_LOCATION)/$(ARCHIVE):
cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
@@ -30,6 +30,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
$(LIBDYLIB): $(PLATFORM)
$(MAKE) -j 1 -C $(PLATFORM)
+ touch $@
.installed-$(PLATFORM): $(LIBDYLIB)
$(MAKE) -C $(PLATFORM) install
diff --git a/tools/depends/native/liblzo2-native/Makefile b/tools/depends/native/liblzo2-native/Makefile
index 927ffb55b4..4c661096e4 100644
--- a/tools/depends/native/liblzo2-native/Makefile
+++ b/tools/depends/native/liblzo2-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=lzo
diff --git a/tools/depends/native/libpng-native/Makefile b/tools/depends/native/libpng-native/Makefile
index 9cc55d7901..7fcc0904d0 100644
--- a/tools/depends/native/libpng-native/Makefile
+++ b/tools/depends/native/libpng-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=libpng
@@ -13,7 +13,7 @@ ARCHIVE=$(SOURCE).tar.gz
CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
./configure --prefix=$(PREFIX)
-LIBDYLIB=$(PLATFORM)/.libs/$(LIBNAME).a
+LIBDYLIB=$(PLATFORM)/.libs/$(LIBNAME)16.a
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
@@ -29,6 +29,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
$(LIBDYLIB): $(PLATFORM)
$(MAKE) -C $(PLATFORM)
+ touch $@
.installed-$(PLATFORM): $(LIBDYLIB)
$(MAKE) -C $(PLATFORM) install
diff --git a/tools/depends/native/libtool-native/Makefile b/tools/depends/native/libtool-native/Makefile
index f3d1297f86..d28d4e6b5e 100644
--- a/tools/depends/native/libtool-native/Makefile
+++ b/tools/depends/native/libtool-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=libtool
@@ -29,6 +29,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
$(LIBDYLIB): $(PLATFORM)
$(MAKE) -C $(PLATFORM)
+ touch $@
.installed-$(PLATFORM): $(LIBDYLIB)
$(MAKE) -C $(PLATFORM) install
diff --git a/tools/depends/native/m4-native/Makefile b/tools/depends/native/m4-native/Makefile
index d981db7caa..f734c96922 100644
--- a/tools/depends/native/m4-native/Makefile
+++ b/tools/depends/native/m4-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile osx_snprintf.patch
+DEPS= ../../Makefile.include Makefile osx_snprintf.patch
# lib name, version
LIBNAME=m4
diff --git a/tools/depends/native/pcre-native/Makefile b/tools/depends/native/pcre-native/Makefile
index 34b07540a6..dfee8688bb 100644
--- a/tools/depends/native/pcre-native/Makefile
+++ b/tools/depends/native/pcre-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=pcre
diff --git a/tools/depends/native/pkg-config-native/Makefile b/tools/depends/native/pkg-config-native/Makefile
index d866d0164e..a0526261c9 100644
--- a/tools/depends/native/pkg-config-native/Makefile
+++ b/tools/depends/native/pkg-config-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
# lib name, version
diff --git a/tools/depends/native/python27-native/Makefile b/tools/depends/native/python27-native/Makefile
index 842d4f01c3..8f7fb37f90 100644
--- a/tools/depends/native/python27-native/Makefile
+++ b/tools/depends/native/python27-native/Makefile
@@ -1,6 +1,6 @@
include ../../Makefile.include
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=Python
@@ -13,6 +13,9 @@ HOSTPYTHONDIR=$(CWD)/$(PLATFORM)/hostpython
CONFIGURE=./configure --prefix=$(NATIVEPREFIX) --disable-shared --disable-toolbox-glue --disable-framework
LIBDYLIB=$(PLATFORM)/python
+ifeq ($(NATIVE_OS), osx)
+ LIBDYLIB=$(PLATFORM)/python.exe
+endif
all: .installed-$(PLATFORM)
@@ -31,6 +34,7 @@ $(LIBDYLIB): $(PLATFORM)
.installed-$(PLATFORM): $(LIBDYLIB)
cd $(PLATFORM); $(MAKE) install
install $(PLATFORM)/Parser/pgen $(NATIVEPREFIX)/bin
+ touch $(LIBDYLIB)
touch $@
clean:
diff --git a/tools/depends/native/swig-native/Makefile b/tools/depends/native/swig-native/Makefile
index f16b4dd071..33d683a28f 100644
--- a/tools/depends/native/swig-native/Makefile
+++ b/tools/depends/native/swig-native/Makefile
@@ -2,7 +2,7 @@ include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=swig
diff --git a/tools/depends/native/tar-native/Makefile b/tools/depends/native/tar-native/Makefile
index b98ecaf4f8..ea72e2ec4e 100644
--- a/tools/depends/native/tar-native/Makefile
+++ b/tools/depends/native/tar-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile fix_xattrs_configure.patch
# app name, version
APPNAME=tar
@@ -21,7 +21,7 @@ CONFIGURE=./configure --prefix=$(PREFIX) \
--disable-dependency-tracking ac_cv_func_fdopendir=no \
$(PLATFORM_CONFIGURE)
-APP=$(SOURCE)/src/tar
+APP=$(PLATFORM)/src/tar
APPBIN=$(PREFIX)/bin/tar
all: .installed-$(PLATFORM)
diff --git a/tools/depends/native/xz-native/Makefile b/tools/depends/native/xz-native/Makefile
index 6fa7d00ae8..c6c2bf7a8b 100644
--- a/tools/depends/native/xz-native/Makefile
+++ b/tools/depends/native/xz-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
# app name, version
APPNAME=xz
@@ -13,7 +13,7 @@ export LIBTOOL=builds/unix/libtool
export PATH:=$(PREFIX)/bin:$(PATH)
CONFIGURE=./configure --prefix=$(PREFIX)
-APP=$(SOURCE)/src/xz/xz
+APP=$(PLATFORM)/src/xz/xz
all: .installed-$(PLATFORM)
diff --git a/tools/depends/native/yasm-native/Makefile b/tools/depends/native/yasm-native/Makefile
index b9bfec11c2..63a1f1c915 100644
--- a/tools/depends/native/yasm-native/Makefile
+++ b/tools/depends/native/yasm-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include.in Makefile
+DEPS= ../../Makefile.include Makefile
APPNAME=yasm
VERSION=1.1.0
diff --git a/tools/depends/native/zlib-native/Makefile b/tools/depends/native/zlib-native/Makefile
index 125258fdb6..625118acf6 100644
--- a/tools/depends/native/zlib-native/Makefile
+++ b/tools/depends/native/zlib-native/Makefile
@@ -1,7 +1,7 @@
include ../../Makefile.include
PREFIX=$(NATIVEPREFIX)
PLATFORM=$(NATIVEPLATFORM)
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile visibility.patch
# lib name, version
LIBNAME=zlib
diff --git a/tools/depends/target/boblight/Makefile b/tools/depends/target/boblight/Makefile
index f461b86fb3..5b8e3587b6 100644
--- a/tools/depends/target/boblight/Makefile
+++ b/tools/depends/target/boblight/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile 01-fix_fpermissive.patch 02-fixandroid.patch 03-fixtvos.patch
#hint for building a fat lib - "lipo -arch i386 libboblight-i386.dylib -arch x86_64 libboblight-x86_64.dylib -output libboblight-fat.dylib"
diff --git a/tools/depends/target/crossguid/Makefile b/tools/depends/target/crossguid/Makefile
index 487ab2a617..7e3b466c0c 100644
--- a/tools/depends/target/crossguid/Makefile
+++ b/tools/depends/target/crossguid/Makefile
@@ -35,11 +35,9 @@ endif
LIBDYLIB=$(PLATFORM)/lib$(LIBNAME).a
-.PHONY: .installed-$(PLATFORM)
+.PHONY: .installed-native
-all: .installed-$(PLATFORM) $(PREFIX)/lib/lib$(LIBNAME).a
-$(PREFIX)/lib/lib$(LIBNAME).a:
- @make .installed-$(PLATFORM)
+all: .installed-$(PLATFORM)
$(TARBALLS_LOCATION)/$(ARCHIVE):
cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
diff --git a/tools/depends/target/dbus/Makefile b/tools/depends/target/dbus/Makefile
index 517252c51a..2fab9f49a1 100644
--- a/tools/depends/target/dbus/Makefile
+++ b/tools/depends/target/dbus/Makefile
@@ -11,7 +11,7 @@ ARCHIVE=$(SOURCE).tar.gz
CONFIGURE=./configure --prefix=$(PREFIX) \
--without-x --disable-xml-docs --disable-doxygen-docs
-LIBDYLIB=$(PLATFORM)/$(LIBNAME)/.libs/$(LIBNAME).so
+LIBDYLIB=$(PLATFORM)/$(LIBNAME)/.libs/lib$(LIBNAME)-1.so
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
diff --git a/tools/depends/target/expat/Makefile b/tools/depends/target/expat/Makefile
index 7e38b16c9f..7af2cca97a 100644
--- a/tools/depends/target/expat/Makefile
+++ b/tools/depends/target/expat/Makefile
@@ -10,7 +10,7 @@ ARCHIVE=$(SOURCE).tar.bz2
# configuration settings
CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) ./conftools; ./configure --prefix=$(PREFIX) --disable-shared
-LIBDYLIB=$(PLATFORM)/.libs/lib$(LIBNAME).a
+LIBDYLIB=$(PLATFORM)/lib/.libs/lib$(LIBNAME).a
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
diff --git a/tools/depends/target/ffmpeg/Makefile b/tools/depends/target/ffmpeg/Makefile
index 651abfcd98..b20c82689e 100644
--- a/tools/depends/target/ffmpeg/Makefile
+++ b/tools/depends/target/ffmpeg/Makefile
@@ -85,10 +85,11 @@ ifeq ($(OS), ios)
cd $(PLATFORM); sed -i -- 's/HAVE_CLOCK_GETTIME 1/HAVE_CLOCK_GETTIME 0/g' config.h
endif
-build: $(PLATFORM)
+.build-$(PLATFORM): $(PLATFORM)
$(MAKE) -C $(PLATFORM)
+ touch $@
-.installed-$(PLATFORM): build
+.installed-$(PLATFORM): .build-$(PLATFORM)
$(MAKE) -C $(PLATFORM) install
touch $@
diff --git a/tools/depends/target/gnutls/Makefile b/tools/depends/target/gnutls/Makefile
index 6d4e4b7e8e..7662b491ca 100644
--- a/tools/depends/target/gnutls/Makefile
+++ b/tools/depends/target/gnutls/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile size-max.patch
# lib name, version
LIBNAME=gnutls
diff --git a/tools/depends/target/libbluray/Makefile b/tools/depends/target/libbluray/Makefile
index 86b3be4e80..11793a7769 100644
--- a/tools/depends/target/libbluray/Makefile
+++ b/tools/depends/target/libbluray/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile tvos.patch
# lib name, version
LIBNAME=libbluray
@@ -12,7 +12,7 @@ CONFIGURE=./configure --prefix=$(PREFIX) --exec-prefix=$(PREFIX) \
--disable-examples --disable-doxygen-doc \
--disable-bdjava-jar --without-libxml2 --without-freetype
-LIBDYLIB=$(PLATFORM)/src/.libs/libbluray.la
+LIBDYLIB=$(PLATFORM)/.libs/libbluray.la
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/libcdio-gplv3/Makefile b/tools/depends/target/libcdio-gplv3/Makefile
index f905adaa8e..5cd6c206da 100644
--- a/tools/depends/target/libcdio-gplv3/Makefile
+++ b/tools/depends/target/libcdio-gplv3/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile osx.patch
+DEPS= ../../Makefile.include Makefile osx.patch osx2.patch
# lib name, version
LIBNAME=libcdio
diff --git a/tools/depends/target/libcdio/Makefile b/tools/depends/target/libcdio/Makefile
index c56e2c715a..72a9082df6 100644
--- a/tools/depends/target/libcdio/Makefile
+++ b/tools/depends/target/libcdio/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include configure.patch Makefile
+DEPS= ../../Makefile.include Makefile configure.patch cross.patch
# lib name, version
LIBNAME=libcdio
diff --git a/tools/depends/target/libcec/Makefile b/tools/depends/target/libcec/Makefile
index 5d8bdaf4ff..181180d868 100644
--- a/tools/depends/target/libcec/Makefile
+++ b/tools/depends/target/libcec/Makefile
@@ -11,7 +11,10 @@ VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.gz
-LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME).la
+LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME)/$(LIBNAME).so
+ifeq (darwin, $(findstring darwin, $(HOST)))
+ LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME)/$(LIBNAME).dylib
+endif
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/libfmt/Makefile b/tools/depends/target/libfmt/Makefile
index 9c59b948b2..4c27f23e83 100644
--- a/tools/depends/target/libfmt/Makefile
+++ b/tools/depends/target/libfmt/Makefile
@@ -30,11 +30,9 @@ endif
LIBDYLIB=$(PLATFORM)/build/$(LIBNAME)/libfmt.a
-.PHONY: .installed-$(PLATFORM)
+.PHONY: .installed-native
all: .installed-$(PLATFORM)
-$(PREFIX)/lib/lib$(LIBNAME).a:
- @make .installed-$(PLATFORM)
$(TARBALLS_LOCATION)/$(ARCHIVE):
cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
diff --git a/tools/depends/target/libgcrypt/Makefile b/tools/depends/target/libgcrypt/Makefile
index 0faa6ba846..05b9a7ad14 100644
--- a/tools/depends/target/libgcrypt/Makefile
+++ b/tools/depends/target/libgcrypt/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include 01-gcrypt-android-select.patch 02-fix-armv7-neon.patch 03-remove-cipher-gcm-armv8.patch 04-fix-o-flag-munging.patch Makefile
+DEPS= ../../Makefile.include Makefile 01-gcrypt-android-select.patch 02-fix-armv7-neon.patch 03-remove-cipher-gcm-armv8.patch 04-fix-o-flag-munging.patch
# lib name, version
LIBNAME=libgcrypt
diff --git a/tools/depends/target/libmicrohttpd/Makefile b/tools/depends/target/libmicrohttpd/Makefile
index 31e0996343..69c5e98fc0 100644
--- a/tools/depends/target/libmicrohttpd/Makefile
+++ b/tools/depends/target/libmicrohttpd/Makefile
@@ -13,14 +13,7 @@ CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
--disable-doc --disable-examples --disable-curl \
--disable-spdy
-# internal memmem sym collides with internal gnutils memmem
-# when built on 10.6.8, strip it.
-ifeq ($(OS), osx)
-STRIP_MEMMEM=-$(AR) d $(PLATFORM)/src/daemon/.libs/libmicrohttpd.a memmem.o
-endif
-
-
-LIBDYLIB=$(PLATFORM)/src/daemon/.libs/$(LIBNAME).a
+LIBDYLIB=$(PLATFORM)/src/microhttpd/.libs/$(LIBNAME).a
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
@@ -37,7 +30,6 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
$(LIBDYLIB): $(PLATFORM)
$(MAKE) -C $(PLATFORM)/src/microhttpd
$(MAKE) -C $(PLATFORM)/src/include install
- $(STRIP_MEMMEM)
.installed-$(PLATFORM): $(LIBDYLIB)
rm -f $(PREFIX)/lib/libmicrohttpd.so $(PREFIX)/lib/libmicrohttpd.so.5 $(PREFIX)/lib/libmicrohttpd.so.5.2.1
diff --git a/tools/depends/target/libnfs/Makefile b/tools/depends/target/libnfs/Makefile
index 48b91a88bd..e7de59dc64 100644
--- a/tools/depends/target/libnfs/Makefile
+++ b/tools/depends/target/libnfs/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile vfstat_redefine.patch
# lib name, version
LIBNAME=libnfs
diff --git a/tools/depends/target/libpng/Makefile b/tools/depends/target/libpng/Makefile
index 47781cff43..20a06bb39b 100644
--- a/tools/depends/target/libpng/Makefile
+++ b/tools/depends/target/libpng/Makefile
@@ -11,7 +11,7 @@ ARCHIVE=$(SOURCE).tar.gz
CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
./configure --prefix=$(PREFIX) --disable-shared
-LIBDYLIB=$(PLATFORM)/.libs/$(LIBNAME)15.a
+LIBDYLIB=$(PLATFORM)/.libs/$(LIBNAME)16.a
CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
diff --git a/tools/depends/target/libsdl/Makefile b/tools/depends/target/libsdl/Makefile
index 47c5fa2ac6..530a10c5a9 100644
--- a/tools/depends/target/libsdl/Makefile
+++ b/tools/depends/target/libsdl/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include 01-SDL_SetWidthHeight.patch 02-OSX_interpretKeyEvents.patch 03-mavericks-compile.patch 05-x11-xdata32.patch Makefile
+DEPS= ../../Makefile.include Makefile 01-SDL_SetWidthHeight.patch 02-OSX_interpretKeyEvents.patch 03-mavericks-compile.patch 04-fix_external_screen_crash.patch 05-x11-xdata32.patch
# lib name, version
LIBNAME=SDL
diff --git a/tools/depends/target/libshairplay/Makefile b/tools/depends/target/libshairplay/Makefile
index 72b7eaaed9..ecfffc5302 100644
--- a/tools/depends/target/libshairplay/Makefile
+++ b/tools/depends/target/libshairplay/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include
+DEPS= ../../Makefile.include Makefile
# lib name, version
LIBNAME=shairplay
diff --git a/tools/depends/target/libssh/Makefile b/tools/depends/target/libssh/Makefile
index a8ce90481c..819f208e0e 100644
--- a/tools/depends/target/libssh/Makefile
+++ b/tools/depends/target/libssh/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile removelegacy.patch android.patch ntohl.patch md5.patch pkg-config.patch
+DEPS= ../../Makefile.include Makefile removelegacy.patch android.patch darwin.patch darwin-no-fork.patch fix-gcc-5-compile.patch ntohl.patch md5.patch pkg-config.patch
# lib name, version
LIBNAME=libssh
diff --git a/tools/depends/target/libusb/Makefile b/tools/depends/target/libusb/Makefile
index 7cffa4a56e..f7101340ba 100644
--- a/tools/depends/target/libusb/Makefile
+++ b/tools/depends/target/libusb/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile no-Werror.patch
# lib name, version
LIBNAME=libusb
diff --git a/tools/depends/target/libxslt/Makefile b/tools/depends/target/libxslt/Makefile
index 3b51da45a1..021f551ceb 100644
--- a/tools/depends/target/libxslt/Makefile
+++ b/tools/depends/target/libxslt/Makefile
@@ -30,6 +30,7 @@ $(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
$(LIBDYLIB): $(PLATFORM)
$(MAKE) -C $(PLATFORM)
+ touch $@
.installed-$(PLATFORM): $(LIBDYLIB)
$(MAKE) -C $(PLATFORM) install
diff --git a/tools/depends/target/mysql/Makefile b/tools/depends/target/mysql/Makefile
index f1159308b3..89a7a0452c 100644
--- a/tools/depends/target/mysql/Makefile
+++ b/tools/depends/target/mysql/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include 01-mysqlclient-cross-compile.patch 02-mysqlclient-ios.patch 03-mysqlclient-android.patch 04-strnlen.patch 05-mysqlclient-ios64.patch Makefile
+DEPS= ../../Makefile.include Makefile 01-mysqlclient-cross-compile.patch 02-mysqlclient-ios.patch 03-mysqlclient-android.patch 04-strnlen.patch 05-mysqlclient-ios64.patch 06-fixsslcheck.patch 07-no-endpwent.patch
# lib name, version
LIBNAME=mysql
diff --git a/tools/depends/target/nettle/Makefile b/tools/depends/target/nettle/Makefile
index 96916ba62b..08c31d2723 100644
--- a/tools/depends/target/nettle/Makefile
+++ b/tools/depends/target/nettle/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile 01-disable_testsuite.patch
# lib name, version
LIBNAME=nettle
diff --git a/tools/depends/target/p8-platform/Makefile b/tools/depends/target/p8-platform/Makefile
index d5918d7ac5..257f7e0561 100644
--- a/tools/depends/target/p8-platform/Makefile
+++ b/tools/depends/target/p8-platform/Makefile
@@ -7,7 +7,7 @@ VERSION=2.1.0.1
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.gz
-LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME).a
+LIBDYLIB=$(PLATFORM)/build/lib$(LIBNAME).a
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/pcre/Makefile b/tools/depends/target/pcre/Makefile
index ff5aa49a82..f0182675f7 100644
--- a/tools/depends/target/pcre/Makefile
+++ b/tools/depends/target/pcre/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile tvos-bitcode-fix.patch
+DEPS= ../../Makefile.include Makefile tvos-bitcode-fix.patch jit_aarch64.patch
# lib name, version
LIBNAME=pcre
diff --git a/tools/depends/target/platform/Makefile b/tools/depends/target/platform/Makefile
index f51588cafb..8dd310665f 100644
--- a/tools/depends/target/platform/Makefile
+++ b/tools/depends/target/platform/Makefile
@@ -7,7 +7,7 @@ VERSION=1.0.10
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.gz
-LIBDYLIB=$(PLATFORM)/build/src/$(LIBNAME).a
+LIBDYLIB=$(PLATFORM)/build/lib$(LIBNAME).a
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/pythonmodule-pil/Makefile b/tools/depends/target/pythonmodule-pil/Makefile
index 9a83544201..addd67498c 100644
--- a/tools/depends/target/pythonmodule-pil/Makefile
+++ b/tools/depends/target/pythonmodule-pil/Makefile
@@ -25,9 +25,11 @@ LDSHARED:=$(CC) -bundle -undefined dynamic_lookup $(LDFLAGS)
CROSSFLAGS=PYTHONXCPREFIX="$(PREFIX)" CC="$(CC) $(CFLAGS)" CCSHARED="$(CC) $(CFLAGS) $(PYTHON_O)" LDFLAGS="$(LDFLAGS)" PYTHONPATH="$(PREFIX)/lib/python2.7/site-packages/" LDSHARED="$(LDSHARED)"
endif
-LIBDYLIB=$(PLATFORM)/dist/PIL-$(VERSION)-py2.7-$(OS)-$(CPU).egg
+LIBDYLIB=$(PLATFORM)/dist/Pillow-$(VERSION)-py2.7-$(OS)-$(CPU).egg
ifeq ($(OS),android)
LIBDYLIB=$(PREFIX)/share/$(APP_NAME)/addons/script.module.pil/lib/PIL/_imaging.so
+else ifeq (darwin, $(findstring darwin, $(HOST)))
+LIBDYLIB=$(PLATFORM)/dist/Pillow-$(VERSION)-py2.7-macosx-10.4-x86_64.egg
endif
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/pythonmodule-pycryptodome/Makefile b/tools/depends/target/pythonmodule-pycryptodome/Makefile
index ef22a260c6..2c53295eb4 100644
--- a/tools/depends/target/pythonmodule-pycryptodome/Makefile
+++ b/tools/depends/target/pythonmodule-pycryptodome/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile #pillow-crosscompile.patch
+DEPS= ../../Makefile.include Makefile 01-nosetuptool.patch 02-android-dlopen.patch 03-obey-crosscompileflags.patch
VERSION.TXT := $(CMAKE_SOURCE_DIR)/version.txt
APP_NAME=$(shell awk '/APP_NAME/ {print tolower($$2)}' $(VERSION.TXT))
@@ -24,7 +24,10 @@ LDSHARED:=$(CC) -bundle -undefined dynamic_lookup $(LDFLAGS)
CROSSFLAGS=PYTHONXCPREFIX="$(PREFIX)" CC="$(CC) $(CFLAGS)" CCSHARED="$(CC) $(CFLAGS) $(PYTHON_O)" LDFLAGS="$(LDFLAGS)" PYTHONPATH="$(PREFIX)/lib/python2.7/site-packages/" LDSHARED="$(LDSHARED)"
endif
-LIBDYLIB=$(PLATFORM)/dist/$(LIBNAME)-$(VERSION)-py2.7.egg
+LIBDYLIB=$(PLATFORM)/build/lib.$(OS)-$(CPU)-2.7/Cryptodome
+ifeq ($(NATIVE_OS), osx)
+ LIBDYLIB=$(PLATFORM)/build/lib.macosx-10.4-x86_64-2.7/Cryptodome
+endif
all: .installed-$(PLATFORM)
diff --git a/tools/depends/target/pythonmodule-setuptools/Makefile b/tools/depends/target/pythonmodule-setuptools/Makefile
index f4b29d5559..69dba4c7b9 100644
--- a/tools/depends/target/pythonmodule-setuptools/Makefile
+++ b/tools/depends/target/pythonmodule-setuptools/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile #pillow-crosscompile.patch
+DEPS= ../../Makefile.include Makefile
VERSION.TXT := $(CMAKE_SOURCE_DIR)/version.txt
APP_NAME=$(shell awk '/APP_NAME/ {print tolower($$2)}' $(VERSION.TXT))
diff --git a/tools/depends/target/sqlite3/Makefile b/tools/depends/target/sqlite3/Makefile
index d1b49593af..2fb924b365 100644
--- a/tools/depends/target/sqlite3/Makefile
+++ b/tools/depends/target/sqlite3/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile
+DEPS= ../../Makefile.include Makefile fix-32bits-on-64bits.patch sqlite3.c.patch
# lib name, version
LIBNAME=sqlite
diff --git a/tools/depends/target/taglib/Makefile b/tools/depends/target/taglib/Makefile
index 8a0a4d6b03..9f8b09edab 100644
--- a/tools/depends/target/taglib/Makefile
+++ b/tools/depends/target/taglib/Makefile
@@ -1,5 +1,5 @@
include ../../Makefile.include
-DEPS= ../../Makefile.include Makefile ID3v2Lookup.patch
+DEPS= ../../Makefile.include Makefile ID3v2Lookup.patch remove-boost.patch
LIBNAME=taglib
VERSION=1.11.1