disable-auto-update.patch 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m
  2. index a5b01fb67e..6a66752926 100644
  3. --- a/frontend/drivers/platform_darwin.m
  4. +++ b/frontend/drivers/platform_darwin.m
  5. @@ -475,7 +475,7 @@ static void frontend_darwin_get_env(int *argc, char *argv[],
  6. int major, minor;
  7. get_ios_version(&major, &minor);
  8. if (major > 8)
  9. - strcpy_literal(g_defaults.path_buildbot_server_url, "http://buildbot.libretro.com/nightly/apple/ios9/latest/");
  10. + strcpy_literal(g_defaults.path_buildbot_server_url, "");
  11. }
  12. #endif
  13. diff --git a/libretro-common/samples/net/net_http_test.c b/libretro-common/samples/net/net_http_test.c
  14. index 48e0354aa6..6dc8fc9702 100644
  15. --- a/libretro-common/samples/net/net_http_test.c
  16. +++ b/libretro-common/samples/net/net_http_test.c
  17. @@ -37,7 +37,7 @@ int main(void)
  18. if (!network_init())
  19. return -1;
  20. - http1 = net_http_new("http://buildbot.libretro.com/nightly/windows/x86_64/latest/mednafen_psx_libretro.dll.zip");
  21. + http1 = net_http_new("");
  22. while (!net_http_update(http1, &pos, &tot))
  23. printf("%.9lu / %.9lu \r",pos,tot);
  24. diff --git a/retroarch.cfg b/retroarch.cfg
  25. index 21d91ab1ef..fa99900f4d 100644
  26. --- a/retroarch.cfg
  27. +++ b/retroarch.cfg
  28. @@ -729,13 +729,13 @@ menu_show_core_updater = false
  29. #### Core Updater
  30. # URL to core update directory on buildbot.
  31. -# core_updater_buildbot_url = "http://buildbot.libretro.com"
  32. +core_updater_buildbot_url = ""
  33. # URL to assets update directory on buildbot.
  34. -# core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
  35. +core_updater_buildbot_assets_url = ""
  36. # After downloading, automatically extract archives that the downloads are contained inside.
  37. -# core_updater_auto_extract_archive = true
  38. +core_updater_auto_extract_archive = false
  39. #### Network