libre.patch 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. --- a/config.def.h
  2. +++ b/config.def.h
  3. @@ -1121,98 +1121,98 @@ static const bool enable_device_vibration = false;
  4. #endif
  5. #if defined(HAKCHI)
  6. -#define DEFAULT_BUILDBOT_SERVER_URL "http://hakchicloud.com/Libretro_Cores/"
  7. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  8. #elif defined(ANDROID)
  9. #if defined(ANDROID_ARM_V7)
  10. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/android/latest/armeabi-v7a/"
  11. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  12. #elif defined(ANDROID_ARM)
  13. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/android/latest/armeabi/"
  14. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  15. #elif defined(ANDROID_AARCH64)
  16. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/android/latest/arm64-v8a/"
  17. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  18. #elif defined(ANDROID_X86)
  19. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/android/latest/x86/"
  20. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  21. #elif defined(ANDROID_X64)
  22. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/android/latest/x86_64/"
  23. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  24. #else
  25. #define DEFAULT_BUILDBOT_SERVER_URL ""
  26. #endif
  27. #elif defined(__QNX__)
  28. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/blackberry/latest/"
  29. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  30. #elif defined(IOS)
  31. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/ios/latest/"
  32. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  33. #elif defined(OSX)
  34. #if defined(__x86_64__)
  35. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/"
  36. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  37. #elif defined(__i386__) || defined(__i486__) || defined(__i686__)
  38. -#define DEFAULT_BUILDBOT_SERVER_URL "http://bot.libretro.com/nightly/apple/osx/x86/latest/"
  39. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  40. #else
  41. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/"
  42. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  43. #endif
  44. #elif defined(_WIN32) && !defined(_XBOX)
  45. #if _MSC_VER >= 1910
  46. #ifndef __WINRT__
  47. #if defined(__x86_64__) || defined(_M_X64)
  48. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/x64/latest/"
  49. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  50. #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
  51. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/x86/latest/"
  52. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  53. #elif defined(__arm__) || defined(_M_ARM)
  54. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/arm/latest/"
  55. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  56. #elif defined(__aarch64__) || defined(_M_ARM64)
  57. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-desktop/arm64/latest/"
  58. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  59. #endif
  60. #else
  61. #if defined(__x86_64__) || defined(_M_X64)
  62. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/x64/latest/"
  63. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  64. #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
  65. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/x86/latest/"
  66. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  67. #elif defined(__arm__) || defined(_M_ARM)
  68. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/arm/latest/"
  69. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  70. #elif defined(__aarch64__) || defined(_M_ARM64)
  71. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2017-uwp/arm64/latest/"
  72. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  73. #endif
  74. #endif
  75. #elif _MSC_VER == 1600
  76. #if defined(__x86_64__) || defined(_M_X64)
  77. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2010/x86_64/latest/"
  78. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  79. #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
  80. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2010/x86/latest/"
  81. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  82. #endif
  83. #elif _MSC_VER == 1400
  84. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2005/x86/latest/"
  85. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  86. #elif _MSC_VER == 1310
  87. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows-msvc2003/x86/latest/"
  88. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  89. #else
  90. #if defined(__x86_64__) || defined(_M_X64)
  91. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows/x86_64/latest/"
  92. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  93. #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64)
  94. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/windows/x86/latest/"
  95. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  96. #endif
  97. #endif
  98. #elif defined(__linux__)
  99. #if defined(__x86_64__)
  100. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/linux/x86_64/latest/"
  101. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  102. #elif defined(__i386__) || defined(__i486__) || defined(__i686__)
  103. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/linux/x86/latest/"
  104. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  105. #elif defined(__arm__) && __ARM_ARCH == 7 && defined(__ARM_PCS_VFP)
  106. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/linux/armhf/latest/"
  107. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  108. #else
  109. #define DEFAULT_BUILDBOT_SERVER_URL ""
  110. #endif
  111. #elif defined(WIIU)
  112. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/nintendo/wiiu/latest/"
  113. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  114. #elif defined(HAVE_LIBNX)
  115. -#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/nintendo/switch/libnx/latest/"
  116. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  117. #elif defined(__CELLOS_LV2__) && defined(DEX_BUILD)
  118. -#define DEFAULT_BUILDBOT_SERVER_URL "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/dex-ps3/"
  119. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  120. #elif defined(__CELLOS_LV2__) && defined(CEX_BUILD)
  121. -#define DEFAULT_BUILDBOT_SERVER_URL "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/cex-ps3/"
  122. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  123. #elif defined(__CELLOS_LV2__) && defined(ODE_BUILD)
  124. -#define DEFAULT_BUILDBOT_SERVER_URL "http://libretro.xbins.org/libretro/nightly/playstation/ps3/latest/ode-ps3/"
  125. +#define DEFAULT_BUILDBOT_SERVER_URL ""
  126. #else
  127. #define DEFAULT_BUILDBOT_SERVER_URL ""
  128. #endif
  129. -#define DEFAULT_BUILDBOT_ASSETS_SERVER_URL "http://buildbot.libretro.com/assets/"
  130. +#define DEFAULT_BUILDBOT_ASSETS_SERVER_URL ""
  131. #define DEFAULT_DISCORD_APP_ID "475456035851599874"
  132. --- a/frontend/drivers/platform_darwin.m
  133. +++ b/frontend/drivers/platform_darwin.m
  134. @@ -459,7 +459,7 @@ static void frontend_darwin_get_environment_settings(int *argc, char *argv[],
  135. char assets_zip_path[PATH_MAX_LENGTH];
  136. #if TARGET_OS_IOS
  137. if (major > 8)
  138. - strlcpy(g_defaults.path.buildbot_server_url, "http://buildbot.libretro.com/nightly/apple/ios9/latest/", sizeof(g_defaults.path.buildbot_server_url));
  139. + strlcpy(g_defaults.path.buildbot_server_url, "", sizeof(g_defaults.path.buildbot_server_url));
  140. #endif
  141. fill_pathname_join(assets_zip_path, bundle_path_buf, "assets.zip", sizeof(assets_zip_path));
  142. --- a/libretro-common/samples/net/net_http_test.c
  143. +++ b/libretro-common/samples/net/net_http_test.c
  144. @@ -37,7 +37,7 @@ int main(void)
  145. if (!network_init())
  146. return -1;
  147. - http1 = net_http_new("http://buildbot.libretro.com/nightly/windows/x86_64/latest/mednafen_psx_libretro.dll.zip");
  148. + http1 = net_http_new("");
  149. while (!net_http_update(http1, &pos, &tot))
  150. printf("%.9lu / %.9lu \r",pos,tot);
  151. --- a/retroarch.cfg
  152. +++ b/retroarch.cfg
  153. @@ -721,13 +721,13 @@
  154. #### Core Updater
  155. # URL to core update directory on buildbot.
  156. -# core_updater_buildbot_url = "http://buildbot.libretro.com"
  157. +core_updater_buildbot_url = ""
  158. # URL to assets update directory on buildbot.
  159. -# core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
  160. +core_updater_buildbot_assets_url = ""
  161. # After downloading, automatically extract archives that the downloads are contained inside.
  162. -# core_updater_auto_extract_archive = true
  163. +core_updater_auto_extract_archive = false
  164. #### Network