From f66d214b5c64b2cd405b7a36ae4660afc732c179 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Sun, 3 Nov 2024 18:59:15 -0500 Subject: [PATCH] macOS: default to https URLs for cores (#17159) --- config.def.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.def.h b/config.def.h index 423f6c05fa..0eea764ee3 100644 --- a/config.def.h +++ b/config.def.h @@ -1756,11 +1756,19 @@ #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/ios/latest/" #elif defined(OSX) #if defined(__x86_64__) +#if defined(HAVE_SSL) +#define DEFAULT_BUILDBOT_SERVER_URL "https://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/" +#else #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/" +#endif #elif defined(__i386__) || defined(__i486__) || defined(__i686__) #define DEFAULT_BUILDBOT_SERVER_URL "http://bot.libretro.com/nightly/apple/osx/x86/latest/" #elif defined(__aarch64__) +#if defined(HAVE_SSL) +#define DEFAULT_BUILDBOT_SERVER_URL "https://buildbot.libretro.com/nightly/apple/osx/arm64/latest/" +#else #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/arm64/latest/" +#endif #else #define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/" #endif