mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-22 23:49:50 +00:00
macOS: default to https URLs for cores (#17159)
This commit is contained in:
parent
02716844fd
commit
f66d214b5c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user