summaryrefslogtreecommitdiff
path: root/libre/retroarch/disable-auto-update.patch
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2021-07-06 23:00:33 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2021-07-16 08:58:25 -0400
commitaab3a3c4f9bbd95a58939b6102833a1f72531b1c (patch)
treeb959d93b8da948c056f48cbbbaef27980de5dfe5 /libre/retroarch/disable-auto-update.patch
parent539930c4348e4cf4e0a92fbea5a4f1c43dfe0919 (diff)
downloadabslibre-aab3a3c4f9bbd95a58939b6102833a1f72531b1c.tar.gz
abslibre-aab3a3c4f9bbd95a58939b6102833a1f72531b1c.tar.bz2
abslibre-aab3a3c4f9bbd95a58939b6102833a1f72531b1c.zip
[retroarch]: wip upgrade to v1.9.6
Diffstat (limited to 'libre/retroarch/disable-auto-update.patch')
-rw-r--r--libre/retroarch/disable-auto-update.patch47
1 files changed, 47 insertions, 0 deletions
diff --git a/libre/retroarch/disable-auto-update.patch b/libre/retroarch/disable-auto-update.patch
new file mode 100644
index 000000000..82938faaf
--- /dev/null
+++ b/libre/retroarch/disable-auto-update.patch
@@ -0,0 +1,47 @@
+diff --git a/frontend/drivers/platform_darwin.m b/frontend/drivers/platform_darwin.m
+index a5b01fb67e..6a66752926 100644
+--- a/frontend/drivers/platform_darwin.m
++++ b/frontend/drivers/platform_darwin.m
+@@ -475,7 +475,7 @@ static void frontend_darwin_get_env(int *argc, char *argv[],
+ int major, minor;
+ get_ios_version(&major, &minor);
+ if (major > 8)
+- strcpy_literal(g_defaults.path_buildbot_server_url, "http://buildbot.libretro.com/nightly/apple/ios9/latest/");
++ strcpy_literal(g_defaults.path_buildbot_server_url, "");
+ }
+ #endif
+
+diff --git a/libretro-common/samples/net/net_http_test.c b/libretro-common/samples/net/net_http_test.c
+index 48e0354aa6..6dc8fc9702 100644
+--- a/libretro-common/samples/net/net_http_test.c
++++ b/libretro-common/samples/net/net_http_test.c
+@@ -37,7 +37,7 @@ int main(void)
+ if (!network_init())
+ return -1;
+
+- http1 = net_http_new("http://buildbot.libretro.com/nightly/windows/x86_64/latest/mednafen_psx_libretro.dll.zip");
++ http1 = net_http_new("");
+
+ while (!net_http_update(http1, &pos, &tot))
+ printf("%.9lu / %.9lu \r",pos,tot);
+diff --git a/retroarch.cfg b/retroarch.cfg
+index 21d91ab1ef..fa99900f4d 100644
+--- a/retroarch.cfg
++++ b/retroarch.cfg
+@@ -729,13 +729,13 @@ menu_show_core_updater = false
+ #### Core Updater
+
+ # URL to core update directory on buildbot.
+-# core_updater_buildbot_url = "http://buildbot.libretro.com"
++core_updater_buildbot_url = ""
+
+ # URL to assets update directory on buildbot.
+-# core_updater_buildbot_assets_url = "http://buildbot.libretro.com/assets/"
++core_updater_buildbot_assets_url = ""
+
+ # After downloading, automatically extract archives that the downloads are contained inside.
+-# core_updater_auto_extract_archive = true
++core_updater_auto_extract_archive = false
+
+ #### Network
+