diff --git a/projects/WeTek_Play/patches/kodi/0002-aml-Reorder-libraries-in-configure-script-to-prevent.patch b/projects/WeTek_Play/patches/kodi/0002-aml-Reorder-libraries-in-configure-script-to-prevent.patch deleted file mode 100644 index 7961307046..0000000000 --- a/projects/WeTek_Play/patches/kodi/0002-aml-Reorder-libraries-in-configure-script-to-prevent.patch +++ /dev/null @@ -1,30 +0,0 @@ -From a1f4a5a74bb8e9fd48ec3d45bc908861dddb0296 Mon Sep 17 00:00:00 2001 -From: Alex Deryskyba -Date: Mon, 8 Sep 2014 23:29:40 +0300 -Subject: [PATCH 02/10] [aml] Reorder libraries in configure script to prevent - linker errors when linking with libsmbclient - -Place libsmbclient before all other libraries to prevent linker errors when linking -with libsmbclient if the libc that is currently used doesn't contain some functions -such as dn_expand (which are often included in libc), but are actually included in -libresolv. ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 5b8c04b..7869041 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1305,7 +1305,7 @@ fi - # samba - if test "x$use_samba" != "xno"; then - PKG_CHECK_MODULES([SAMBA], [smbclient], -- [INCLUDES="$INCLUDES $SAMBA_CFLAGS"; LIBS="$LIBS $SAMBA_LIBS"], -+ [INCLUDES="$INCLUDES $SAMBA_CFLAGS"; LIBS="$SAMBA_LIBS $LIBS"], - [AC_CHECK_LIB([smbclient], [main],, - use_samba=no;AC_MSG_ERROR($missing_library)) - USE_LIBSMBCLIENT=0 --- -1.7.10.4 -