From 64dd1562a62739f8b404f422178287d5a208057e Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 6 Mar 2015 02:47:00 +0100 Subject: [PATCH] (Linux x86_64) Set up default buildbot updater URL --- config.def.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.def.h b/config.def.h index 966d1759e5..44a1edf58f 100644 --- a/config.def.h +++ b/config.def.h @@ -667,6 +667,12 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/win-x8 #elif defined(__i386__) || defined(__i486__) || defined(__i686__) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/win-x86/latest/"; #endif +#elif defined(__linux__) +#if defined(__x86_64__) +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/linux/x86_64/latest/"; +#else +static char buildbot_server_url[] = ""; +#endif #else static char buildbot_server_url[] = ""; #endif