mirror of
https://github.com/libretro/RetroArch
synced 2025-01-14 09:43:27 +00:00
4e24fb3d01
* Fix old osx condition Current code assumes that osx < 10.12 is equivalent to ppc osx. It's not true as Leopard x86 is still < 10.12 but not ppc. As xcode compiles fat binaries it includes osx x86 and compilation fails. * Disable crtswitchres when no c++11 is available Crtswitchres altually needs c++11. Since it's not that important to make it compatible with lower c++, just disable if no c++11 is available * Don't use firstObject on old Mac OS X. It was introduced in 10.6, so on old ones just implement it ourselves * Compile osx-ppc frontend * osx-ppc: Build a fat binary On 10.6 i386 xcode apparently refuses to build a pure ppc. Settle for a fat binary.
77 lines
3.6 KiB
C
77 lines
3.6 KiB
C
/* Copyright (C) 2010-2021 The RetroArch team
|
|
*
|
|
* ---------------------------------------------------------------------------------------
|
|
* The following license statement only applies to this file (cocoa_defines.h).
|
|
* ---------------------------------------------------------------------------------------
|
|
*
|
|
* Permission is hereby granted, free of charge,
|
|
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef __COCOA_COMMON_DEFINES_H
|
|
#define __COCOA_COMMON_DEFINES_H
|
|
|
|
#include <AvailabilityMacros.h>
|
|
|
|
#ifndef MAC_OS_X_VERSION_10_12
|
|
#define MAC_OS_X_VERSION_10_12 101200
|
|
#endif
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12
|
|
#define HAS_MACOSX_10_12 0
|
|
#define NSEventModifierFlagCommand NSCommandKeyMask
|
|
#define NSEventModifierFlagControl NSControlKeyMask
|
|
#define NSEventModifierFlagHelp NSHelpKeyMask
|
|
#define NSEventModifierFlagNumericPad NSNumericPadKeyMask
|
|
#define NSEventModifierFlagOption NSAlternateKeyMask
|
|
#define NSEventModifierFlagShift NSShiftKeyMask
|
|
#define NSCompositingOperationSourceOver NSCompositeSourceOver
|
|
#define NSEventMaskApplicationDefined NSApplicationDefinedMask
|
|
#define NSEventTypeApplicationDefined NSApplicationDefined
|
|
#define NSEventTypeCursorUpdate NSCursorUpdate
|
|
#define NSEventTypeMouseMoved NSMouseMoved
|
|
#define NSEventTypeMouseEntered NSMouseEntered
|
|
#define NSEventTypeMouseExited NSMouseExited
|
|
#define NSEventTypeLeftMouseDown NSLeftMouseDown
|
|
#define NSEventTypeRightMouseDown NSRightMouseDown
|
|
#define NSEventTypeOtherMouseDown NSOtherMouseDown
|
|
#define NSEventTypeLeftMouseUp NSLeftMouseUp
|
|
#define NSEventTypeRightMouseUp NSRightMouseUp
|
|
#define NSEventTypeOtherMouseUp NSOtherMouseUp
|
|
#define NSEventTypeLeftMouseDragged NSLeftMouseDragged
|
|
#define NSEventTypeRightMouseDragged NSRightMouseDragged
|
|
#define NSEventTypeOtherMouseDragged NSOtherMouseDragged
|
|
#define NSEventTypeScrollWheel NSScrollWheel
|
|
#define NSEventTypeKeyDown NSKeyDown
|
|
#define NSEventTypeKeyUp NSKeyUp
|
|
#define NSEventTypeFlagsChanged NSFlagsChanged
|
|
#define NSEventMaskAny NSAnyEventMask
|
|
#define NSWindowStyleMaskBorderless NSBorderlessWindowMask
|
|
#define NSWindowStyleMaskClosable NSClosableWindowMask
|
|
#define NSWindowStyleMaskFullScreen NSFullScreenWindowMask
|
|
#define NSWindowStyleMaskMiniaturizable NSMiniaturizableWindowMask
|
|
#define NSWindowStyleMaskResizable NSResizableWindowMask
|
|
#define NSWindowStyleMaskTitled NSTitledWindowMask
|
|
#define NSAlertStyleCritical NSCriticalAlertStyle
|
|
#define NSAlertStyleInformational NSInformationalAlertStyle
|
|
#define NSAlertStyleWarning NSWarningAlertStyle
|
|
#define NSEventModifierFlagCapsLock NSAlphaShiftKeyMask
|
|
#define NSControlSizeRegular NSRegularControlSize
|
|
#else
|
|
#define HAS_MACOSX_10_12 1
|
|
#endif
|
|
|
|
#endif
|