mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Get rid of obsoleted XP_MAC checks. [p=reed r+a1.9=stuart]
This commit is contained in:
parent
205f1397a0
commit
bf90a20b98
@ -74,13 +74,6 @@
|
||||
*/
|
||||
#undef RIGHT_SHIFT_IS_UNSIGNED
|
||||
|
||||
#ifdef XP_MAC /* Macintosh */
|
||||
|
||||
#define ALIGN_TYPE long /* for sane memory alignment */
|
||||
#define NO_GETENV /* we do have the function, but it's dead */
|
||||
|
||||
#endif /* XP_MAC */
|
||||
|
||||
#endif /* JPEG_INTERNALS */
|
||||
|
||||
|
||||
|
@ -473,9 +473,9 @@ static int sse2supportGCC()
|
||||
/* Mac Intel started with Core Duo chips which have SSE2 Support */
|
||||
|
||||
#if defined(__GNUC__) && defined(__i386__)
|
||||
#if defined(XP_MAC) || defined(XP_MACOSX)
|
||||
#if defined(XP_MACOSX)
|
||||
return 1;
|
||||
#endif ! XP_MAC || XP_MACOSX
|
||||
#endif ! XP_MACOSX
|
||||
#endif ! GNUC && i386
|
||||
|
||||
/* Add checking for SSE2 support for other platforms here */
|
||||
|
@ -116,9 +116,9 @@ typedef short JCOEF;
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__) && defined(__i386__)
|
||||
#if defined(XP_MAC) || defined(XP_MACOSX)
|
||||
#if defined(XP_MACOSX)
|
||||
#define HAVE_SSE2_INTRINSICS
|
||||
#endif ! XP_MAC || XP_MACOSX
|
||||
#endif ! XP_MACOSX
|
||||
#endif ! GNUC && i386
|
||||
|
||||
/* Add support for other platforms here */
|
||||
|
Loading…
Reference in New Issue
Block a user