mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 12:40:03 +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/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/ios/latest/"
|
||||||
#elif defined(OSX)
|
#elif defined(OSX)
|
||||||
#if defined(__x86_64__)
|
#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/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/"
|
||||||
|
#endif
|
||||||
#elif defined(__i386__) || defined(__i486__) || defined(__i686__)
|
#elif defined(__i386__) || defined(__i486__) || defined(__i686__)
|
||||||
#define DEFAULT_BUILDBOT_SERVER_URL "http://bot.libretro.com/nightly/apple/osx/x86/latest/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://bot.libretro.com/nightly/apple/osx/x86/latest/"
|
||||||
#elif defined(__aarch64__)
|
#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/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/arm64/latest/"
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/"
|
#define DEFAULT_BUILDBOT_SERVER_URL "http://buildbot.libretro.com/nightly/apple/osx/ppc/latest/"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user