-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from phunkyfish/upgrade-deps
Add-on dependency updates with SSL 3 for Widows
- Loading branch information
Showing
65 changed files
with
1,961 additions
and
1,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
File renamed without changes.
Empty file.
17 changes: 17 additions & 0 deletions
17
depends/common/gnutls/0001-android-hackfix-fpending_c.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- a/src/gl/fpending.c | ||
+++ b/src/gl/fpending.c | ||
@@ -40,8 +40,14 @@ __fpending (FILE *fp) | ||
/* GNU libc, BeOS, Haiku, Linux libc5 */ | ||
return fp->_IO_write_ptr - fp->_IO_write_base; | ||
#elif defined __sferror || defined __DragonFly__ || defined __ANDROID__ | ||
+#if defined ANDROID && __ANDROID_API__ < 23 | ||
+ /* Hack fix for Kodi as it still use Android API 21 */ | ||
+ #warning "ANDROID API to low, no __fpending usable" | ||
+ return 1; | ||
+#else | ||
/* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin < 1.7.34, Minix 3, Android */ | ||
return fp->_p - fp->_bf._base; | ||
+#endif | ||
#elif defined __EMX__ /* emx+gcc */ | ||
return fp->_ptr - fp->_buffer; | ||
#elif defined __minix /* Minix */ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1b79b381ac283d8b054368b335c408fedcb9b7144e0c07f531e3537d4328f3b3 | ||
0ea0d11a1660a1e63f960f157b197abe6d0c8cb3255be24e1fb3815930b9bdc5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
gnutls http://mirrors.kodi.tv/build-deps/sources/gnutls-3.6.16.tar.xz | ||
gnutls https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.0.tar.xz |
Oops, something went wrong.